# Final Project-HTU API Documentation
## Overview
This collection provides comprehensive API testing coverage for a demo e-commerce platform (DummyJSON API). It includes endpoints for authentication, product management, shopping cart operations, user management, and social features like posts and comments.
The collection is organized into four main sections covering different API domains, with both positive and negative test cases to ensure robust API validation.
## Base URL
The API base URL is configured using the environment variable:
- **Variable**: `{{baseURL}}`
- **Default Value**: `https://dummyjson.com`
## Authentication
This API uses **Bearer Token** authentication for protected endpoints.
### Authentication Flow
1. **Login** to obtain an access token
2. The token is automatically stored in the `{{accessToken}}` environment variable
3. Use the token in subsequent requests via the Authorization header
### Authentication Variables
- `{{accessToken}}` - JWT token obtained after successful login
- Automatically set after login and used for authenticated requests
---
## API Sections
### 1. Authentication (Auth - Docs)
Handles user authentication and session management.
#### **Login User** - `POST {{baseURL}}/auth/login`
Authenticates a user and returns an access token.
**Request Body** (JSON):
```json
{
"username": "emilys",
"password": "emilyspass"
}
```
**Response**: Returns user details and access token
- Status: `200 OK`
- The access token is automatically saved to `{{accessToken}}`
**Tests**:
- Validates status code is 200
- Checks access token exists in response
- Stores token in environment variable
---
#### **Get auth User** - `GET {{baseURL}}/auth/me`
Retrieves the currently authenticated user's information.
**Authentication**: Requires Bearer token
**Response**: Returns authenticated user's profile
- Status: `200 OK`
---
#### **Refresh auth Session** - `POST {{baseURL}}/auth/refresh`
Refreshes the authentication session and obtains a new access token.
**Authentication**: Requires valid refresh token
**Response**: Returns new access token
- Status: `200 OK`
---
### 2. Products (Products - Docs)
Comprehensive product catalog management with search, filtering, and CRUD operations.
#### **Get all Product** - `GET {{baseURL}}/products`
Retrieves a list of all products in the catalog.
**Response**: Array of product objects
- Status: `200 OK`
---
#### **Get a Single Product** - `GET {{baseURL}}/products/1`
Fetches details of a specific product by ID.
**Path Parameters**:
- `id` - Product ID (e.g., 1)
**Response**: Single product object
- Status: `200 OK`
---
#### **Search Product** - `GET {{baseURL}}/products/search?q=phone`
Searches for products matching the query string.
**Query Parameters**:
- `q` - Search query (e.g., "phone")
**Response**: Array of matching products
- Status: `200 OK`
---
#### **Negative-Limit and Skip Product** - `GET {{baseURL}}/products?limit=-10&skip=abc&select=title,price`
**Negative test case** - Tests API behavior with invalid pagination parameters.
**Query Parameters**:
- `limit=-10` - Invalid negative limit
- `skip=abc` - Invalid non-numeric skip value
- `select=title,price` - Fields to return
**Expected**: Should handle invalid parameters gracefully
- Tests error handling and validation
---
#### **Sort Product** - `GET {{baseURL}}/products?sortBy=title&order=asc`
Retrieves products sorted by specified field and order.
**Query Parameters**:
- `sortBy=title` - Field to sort by
- `order=asc` - Sort order (asc/desc)
**Response**: Sorted array of products
- Status: `200 OK`
---
#### **Get all Product Categories** - `GET {{baseURL}}/products/categories`
Retrieves all available product categories.
**Response**: Array of category objects
- Status: `200 OK`
---
#### **Get Product Category list** - `GET {{baseURL}}/products/category-list`
Retrieves a simple list of category names.
**Response**: Array of category names
- Status: `200 OK`
---
#### **Get Products By a Category** - `GET {{baseURL}}/products/category/smartphones`
Fetches all products belonging to a specific category.
**Path Parameters**:
- `category` - Category name (e.g., "smartphones")
**Response**: Array of products in the category
- Status: `200 OK`
---
#### **Add a New Product** - `POST {{baseURL}}/products/add`
Creates a new product in the catalog.
**Request Body** (JSON):
```json
{
"title": "Product Name"
}
```
**Response**: Created product object with ID
- Status: `201 Created`
**Tests**:
- Validates status code is 201
- Confirms product has an ID
- Verifies title exists
---
#### **Negative-Update a Product** - `PUT {{baseURL}}/products/-1`
**Negative test case** - Attempts to update a product with invalid ID.
**Path Parameters**:
- `id=-1` - Invalid product ID
**Expected**: Should return error for non-existent product
- Tests error handling for invalid resources
---
#### **Delete a Product** - `DELETE {{baseURL}}/products/1`
Deletes a product from the catalog.
**Path Parameters**:
- `id` - Product ID to delete
**Response**: Confirmation of deletion
- Status: `200 OK`
---
### 3. Shopping Carts (Carts - Docs)
Manage shopping cart operations including viewing, creating, updating, and deleting carts.
#### **Get all Carts** - `GET {{baseURL}}/carts`
Retrieves all shopping carts in the system.
**Response**: Array of cart objects
- Status: `200 OK`
---
#### **Get a Single Cart** - `GET {{baseURL}}/carts/1`
Fetches details of a specific cart by ID.
**Path Parameters**:
- `id` - Cart ID (e.g., 1)
**Response**: Single cart object with products
- Status: `200 OK`
---
#### **Get Carts by a User** - `GET {{baseURL}}/carts/user/5`
Retrieves all carts belonging to a specific user.
**Path Parameters**:
- `userId` - User ID (e.g., 5)
**Response**: Array of user's carts
- Status: `200 OK`
---
#### **Negative-Add a Cart** - `POST {{baseURL}}/carts/add`
**Negative test case** - Attempts to create a cart with empty products array.
**Request Body** (JSON):
```json
{
"userId": 1,
"products": []
}
```
**Expected**: Should return validation error
- Status: `400 Bad Request`
**Tests**:
- Validates cart is not created with empty products
---
#### **Update a Cart** - `PUT {{baseURL}}/carts/1`
Updates an existing cart with new products or quantities.
**Path Parameters**:
- `id` - Cart ID to update
**Request Body** (JSON):
```json
{
"merge": true,
"products": [
{ "id": 1, "quantity": 1 }
]
}
```
**Response**: Updated cart object
- Status: `200 OK`
**Tests**:
- Validates status code is 200
---
#### **Negative-Delete a Cart** - `DELETE {{baseURL}}/carts/abcd`
**Negative test case** - Attempts to delete a cart with invalid ID format.
**Path Parameters**:
- `id=abcd` - Invalid non-numeric cart ID
**Expected**: Should return error for invalid ID format
- Tests error handling for malformed requests
---
### 4. Users & Posts (Users - Docs)
User management, search, filtering, and social features including posts and comments.
#### **Get all Users** - `GET {{baseURL}}/users`
Retrieves a list of all users.
**Response**: Array of user objects
- Status: `200 OK`
---
#### **Negative-Login User** - `POST {{baseURL}}/user/login`
**Negative test case** - Tests login with incorrect endpoint path.
**Note**: Correct endpoint is `/auth/login`, this tests wrong path handling
**Expected**: Should return error for invalid endpoint
- Tests API routing and error responses
---
#### **Negative-Get Current auth User** - `GET {{baseURL}}/user/me`
**Negative test case** - Tests getting current user with incorrect endpoint.
**Note**: Correct endpoint is `/auth/me`, this tests wrong path handling
**Expected**: Should return error for invalid endpoint
---
#### **Negative-Get a Single User** - `GET {{baseURL}}/users/9999`
**Negative test case** - Attempts to fetch a non-existent user.
**Path Parameters**:
- `id=9999` - Non-existent user ID
**Expected**: Should return error for user not found
- Status: `404 Not Found`
---
#### **Search Users** - `GET {{baseURL}}/users/search?q=John`
Searches for users matching the query string.
**Query Parameters**:
- `q` - Search query (e.g., "John")
**Response**: Array of matching users
- Status: `200 OK`
---
#### **Filter Users** - `GET {{baseURL}}/users/filter?key=hair.color&value=Brown`
Filters users by specific attributes.
**Query Parameters**:
- `key` - Attribute path (e.g., "hair.color")
- `value` - Filter value (e.g., "Brown")
**Response**: Array of filtered users
- Status: `200 OK`
---
#### **Limit and skip Users** - `GET {{baseURL}}/users?limit=5&skip=10&select=firstName,age`
Retrieves users with pagination and field selection.
**Query Parameters**:
- `limit=5` - Number of results to return
- `skip=10` - Number of results to skip
- `select=firstName,age` - Specific fields to return
**Response**: Paginated array of users with selected fields
- Status: `200 OK`
---
#### **Sort and order Users** - `GET {{baseURL}}/users?sortBy=firstName&order=asc`
Retrieves users sorted by specified field.
**Query Parameters**:
- `sortBy=firstName` - Field to sort by
- `order=asc` - Sort order (asc/desc)
**Response**: Sorted array of users
- Status: `200 OK`
---
#### **Get all Posts Tags** - `GET {{baseURL}}/posts/tags`
Retrieves all available post tags.
**Response**: Array of tag objects
- Status: `200 OK`
---
#### **Get Posts Tag List** - `GET {{baseURL}}/posts/tag-list`
Retrieves a simple list of tag names.
**Response**: Array of tag names
- Status: `200 OK`
---
#### **Get all Posts By UserID** - `GET {{baseURL}}/posts/user/5`
Fetches all posts created by a specific user.
**Path Parameters**:
- `userId` - User ID (e.g., 5)
**Response**: Array of user's posts
- Status: `200 OK`
---
#### **Get Posts Comments** - `GET {{baseURL}}/posts/1/comments`
Retrieves all comments for a specific post.
**Path Parameters**:
- `postId` - Post ID (e.g., 1)
**Response**: Array of comment objects
- Status: `200 OK`
---
#### **Add a New Post** - `POST {{baseURL}}/posts/add`
Creates a new post.
**Request Body** (JSON):
```json
{
"title": "Post title",
"userId": 5
}
```
**Response**: Created post object
- Status: `200 OK`
**Tests**:
- Validates status code is 200
---
#### **Update a Post** - `PUT {{baseURL}}/posts/1`
Updates an existing post.
**Path Parameters**:
- `id` - Post ID to update
**Request Body** (JSON):
```json
{
"title": "Updated title"
}
```
**Response**: Updated post object
- Status: `200 OK`
---
#### **Delete a Post** - `DELETE {{baseURL}}/posts/1`
Deletes a post.
**Path Parameters**:
- `id` - Post ID to delete
**Response**: Confirmation of deletion
- Status: `200 OK`
---
## Environment Variables
This collection uses the following environment variables:
| Variable | Description | Example Value |
|----------|-------------|---------------|
| `baseURL` | API base URL | `https://dummyjson.com` |
| `accessToken` | JWT authentication token | Auto-set after login |
| `author` | Global variable for author info | (Global variable) |
## Collection Variables
- **baseURL**: Base URL for all API requests (can be overridden by environment)
## Testing Strategy
This collection includes comprehensive test coverage:
### Positive Test Cases
- Standard CRUD operations (Create, Read, Update, Delete)
- Search and filtering functionality
- Pagination and sorting
- Authentication flows
### Negative Test Cases
- Invalid IDs (non-existent, negative, malformed)
- Empty or invalid request bodies
- Wrong endpoint paths
- Invalid query parameters
### Automated Tests
Many requests include automated test scripts that:
- Validate HTTP status codes
- Check response structure
- Verify data integrity
- Store tokens and variables for subsequent requests
## Usage Examples
### Example Workflow 1: User Authentication & Product Browsing
1. **Login** - `POST /auth/login` to get access token
2. **Get Products** - `GET /products` to browse catalog
3. **Search Products** - `GET /products/search?q=phone` to find specific items
4. **Get Product Details** - `GET /products/1` for detailed information
### Example Workflow 2: Shopping Cart Management
1. **Login** - Authenticate first
2. **Get User's Carts** - `GET /carts/user/5` to view existing carts
3. **Update Cart** - `PUT /carts/1` to add/modify products
4. **Get Cart Details** - `GET /carts/1` to verify changes
### Example Workflow 3: User & Social Features
1. **Get Users** - `GET /users` to browse users
2. **Search Users** - `GET /users/search?q=John` to find specific users
3. **Get User's Posts** - `GET /posts/user/5` to view their content
4. **Get Post Comments** - `GET /posts/1/comments` to read discussions
## Running the Collection
### Using Postman Collection Runner
1. Select the collection or specific folder
2. Choose the appropriate environment (`anood env`)
3. Click "Run" to execute all requests in sequence
4. Review test results and response data
### Using Postman CLI
```bash
postman collection run 51082963-7e7fceed-20b4-4cc4-81c7-9e02d03dfcbc -e 51082963-a8d28911-05c8-4913-b9d5-f08f32010cca
```
## API Response Format
All endpoints return JSON responses with consistent structure:
**Success Response**:
```json
{
"id": 1,
"data": { ... },
"status": "success"
}
```
**Error Response**:
```json
{
"message": "Error description",
"status": "error"
}
```
## Notes
- This collection uses the DummyJSON API (https://dummyjson.com) for testing purposes
- All data is simulated and resets periodically
- Negative test cases are prefixed with "Negative-" for easy identification
- Bearer token authentication is used for protected endpoints
- Test scripts automatically validate responses and manage environment variables
## Support & Resources
- **API Documentation**: https://dummyjson.com/docs
- **Collection Maintainer**: anood Naimat
- **Workspace**: anood Naimat's Workspace
---
*Last Updated: 2024*
*Collection Version: 1.0*
| Summary Item | Total | Failed |
|---|---|---|
| Requests | 225 | 0 |
| Prerequest Scripts | 320 | 0 |
| Test Scripts | 450 | 0 |
| Assertions | 570 | 2 |
| Skipped Tests | 0 | - |
expected response to have status code 400 but got 201
expected response to have status code 400 but got 201
# Login User and Get Tokens
## Overview
This endpoint authenticates users with the DummyJSON API and returns access tokens for subsequent authenticated requests. Upon successful authentication, the user receives both an access token and refresh token, along with their profile information.
---
## Request Details
### Endpoint
- **URL**: `https://dummyjson.com/auth/login`
- **Method**: `POST`
- **Content-Type**: `application/json`
### Required Body Parameters
| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `username` | string | Yes | The user's username for authentication |
| `password` | string | Yes | The user's password for authentication |
### Example Request Body
```json
{
"username": "emilys",
"password": "emilyspass"
}
```
---
## Response Structure
### Success Response (200 OK)
The API returns a JSON object containing authentication tokens and user profile information:
| Field | Type | Description |
|-------|------|-------------|
| `accessToken` | string | JWT token used for authenticating subsequent API requests |
| `refreshToken` | string | Token used to refresh the access token when it expires |
| `id` | number | Unique identifier for the authenticated user |
| `username` | string | The user's username |
| `email` | string | The user's email address |
| `firstName` | string | The user's first name |
| `lastName` | string | The user's last name |
| `gender` | string | The user's gender |
| `image` | string | URL to the user's profile image |
### Example Response
```json
{
"accessToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
"refreshToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
"id": 1,
"username": "emilys",
"email": "emily.johnson@x.dummyjson.com",
"firstName": "Emily",
"lastName": "Johnson",
"gender": "female",
"image": "https://dummyjson.com/icon/emilys/128"
}
```
---
## Authentication Flow
1. **Send Login Request**: Submit username and password to the `/auth/login` endpoint
2. **Receive Tokens**: Upon successful authentication, receive `accessToken` and `refreshToken`
3. **Automatic Storage**: The `accessToken` is automatically extracted from the response and stored in the `eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjA4NDcsImV4cCI6MTc2OTk2NDQ0N30.Mr1vJqphxJdk5lt1Cvbh3iZl5iR4PeatmzAIRYwmrEc` environment variable via the post-response script
4. **Use Token**: The stored token is then available for use in subsequent authenticated requests via the `eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjA4NDcsImV4cCI6MTc2OTk2NDQ0N30.Mr1vJqphxJdk5lt1Cvbh3iZl5iR4PeatmzAIRYwmrEc` variable
5. **Token Usage**: Include the access token in the `Authorization` header as `Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjA4NDcsImV4cCI6MTc2OTk2NDQ0N30.Mr1vJqphxJdk5lt1Cvbh3iZl5iR4PeatmzAIRYwmrEc` for protected endpoints
---
## Automated Tests
This request includes comprehensive automated tests that validate the response:
### Test Suite
1. **Status Code Validation**
- Verifies the response status code is `200 OK`
- Ensures successful authentication
2. **Access Token Validation**
- Checks that the `accessToken` field exists in the response
- Confirms the token is returned for authentication
3. **Required Fields Validation**
- Validates presence of essential fields: `id`, `username`, `accessToken`
- Ensures complete user data is returned
4. **Response Time Check**
- Verifies the API responds within 2000ms (2 seconds)
- Monitors performance and ensures acceptable response times
All tests run automatically after the request is sent, providing immediate feedback on the authentication process.
---
## Integration with Authentication Workflow
This endpoint is the **entry point** for the authentication workflow in this collection:
1. **First Step**: This is typically the first request to execute when working with authenticated endpoints
2. **Token Generation**: Generates the access token required for protected resources
3. **Environment Setup**: Automatically configures the environment with the necessary authentication credentials
4. **Subsequent Requests**: Other requests in the collection (like "Get Current auth User", "Refresh auth Session") depend on the token generated here
5. **Session Management**: The refresh token can be used with the "Refresh auth Session" endpoint to obtain a new access token without re-authenticating
---
## Notes
- **Test Credentials**: The example uses test credentials (`emilys` / `emilyspass`) from the DummyJSON demo API
- **Token Expiration**: Access tokens may expire after a certain period; use the refresh token to obtain a new one
- **Security**: In production environments, always use HTTPS and never hardcode credentials
- **Environment Variables**: Ensure the `https://dummyjson.com` variable is set to `https://dummyjson.com` in your active environment
| Header Name | Header Value |
|---|---|
| Content-Type | application/json |
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjA4NDcsImV4cCI6MTc2OTk2NDQ0N30.Mr1vJqphxJdk5lt1Cvbh3iZl5iR4PeatmzAIRYwmrEc |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 6db02605-1453-40ef-b96f-794e63697250 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 69 |
{
"username": "emilys",
"password": "emilyspass"
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:52:47 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 99 |
| x-ratelimit-reset | 1769961173 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| Set-Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjcsImV4cCI6MTc2OTk2NDc2N30.GZCUVvd0dz0StrtG1qYL4I5ptF4oYmGzmo6UUvIzx7o; Max-Age=3600; Path=/; Expires=Sun, 01 Feb 2026 16:52:47 GMT; HttpOnly; Secure |
| Set-Cookie | refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjcsImV4cCI6MTc3MjU1MzE2N30.-5MMVprg-jGGW64wzNvt-b7vZG9V2RwpH727fa7l0Ls; Max-Age=3600; Path=/; Expires=Sun, 01 Feb 2026 16:52:47 GMT; HttpOnly; Secure |
| etag | W/"3a2-0uqfMkriPCnXIks0LkZxxPUkwbo" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=TCAIjwO9P%2BPhHV9OFRC8VYdm62A1JXjajh9fND%2BnkrJ9Taq%2FGZFvV3EFgbviIY8miBNShWmWkq13%2FUrZOZgNLmMPTdg%2BDGcmvxVA9d4%3D"}]} |
| Content-Encoding | br |
| CF-RAY | 9c729e2fedb22891-AMM |
{"accessToken":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjcsImV4cCI6MTc2OTk2NDc2N30.GZCUVvd0dz0StrtG1qYL4I5ptF4oYmGzmo6UUvIzx7o","refreshToken":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjcsImV4cCI6MTc3MjU1MzE2N30.-5MMVprg-jGGW64wzNvt-b7vZG9V2RwpH727fa7l0Ls","id":1,"username":"emilys","email":"emily.johnson@x.dummyjson.com","firstName":"Emily","lastName":"Johnson","gender":"female","image":"https://dummyjson.com/icon/emilys/128"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Access token exists | 1 | 0 | 0 |
| Required fields exist | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 4 | 0 | 0 |
| Test Name | Assertion Error |
|---|
# Get Authenticated User
## Description
This endpoint retrieves the complete profile information of the currently authenticated user. It returns detailed user data including personal information, contact details, address, company information, and account metadata.
## Authentication
**Required**: Bearer Token
This endpoint requires authentication via a Bearer token in the Authorization header. The token must be obtained first by logging in through the `/auth/login` endpoint.
```
Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjcsImV4cCI6MTc2OTk2NDc2N30.GZCUVvd0dz0StrtG1qYL4I5ptF4oYmGzmo6UUvIzx7o
```
## Request
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/auth/me`
- **Headers**:
- `Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjcsImV4cCI6MTc2OTk2NDc2N30.GZCUVvd0dz0StrtG1qYL4I5ptF4oYmGzmo6UUvIzx7o`
## Response
### Success Response (200 OK)
Returns a JSON object containing the authenticated user's complete profile:
```json
{
"id": 1,
"firstName": "Emily",
"lastName": "Johnson",
"maidenName": "Smith",
"age": 29,
"gender": "female",
"email": "emily.johnson@x.dummyjson.com",
"phone": "+81 965-431-3024",
"username": "emilys",
"birthDate": "1996-5-30",
"image": "https://dummyjson.com/icon/emilys/128",
"bloodGroup": "O-",
"height": 193.24,
"weight": 63.16,
"eyeColor": "Green",
"hair": {
"color": "Brown",
"type": "Curly"
},
"address": {
"address": "626 Main Street",
"city": "Phoenix",
"state": "Mississippi",
"stateCode": "MS",
"postalCode": "29112",
"coordinates": {
"lat": -77.16213,
"lng": -92.084824
},
"country": "United States"
},
"company": {
"department": "Engineering",
"name": "Dooley, Kozey and Cronin",
"title": "Sales Manager",
"address": { ... }
},
"bank": {
"cardExpire": "05/28",
"cardNumber": "3693233511855044",
"cardType": "Diners Club International",
"currency": "GBP",
"iban": "GB74MH2UZLR9TRPHYNU8F8"
},
"role": "admin"
}
```
### Response Fields
| Field | Type | Description |
|-------|------|-------------|
| `id` | integer | Unique user identifier |
| `username` | string | User's login username |
| `firstName` | string | User's first name |
| `lastName` | string | User's last name |
| `email` | string | User's email address |
| `phone` | string | User's phone number |
| `age` | integer | User's age |
| `gender` | string | User's gender |
| `birthDate` | string | User's date of birth |
| `image` | string | URL to user's profile image |
| `address` | object | User's address information including coordinates |
| `company` | object | User's company and employment details |
| `bank` | object | User's banking information |
| `role` | string | User's role/permission level |
## Use Cases
1. **Profile Display**: Fetch user data to display on a profile page or dashboard
2. **Session Validation**: Verify that the current authentication token is valid and retrieve associated user
3. **Personalization**: Get user preferences and information to customize the application experience
4. **Authorization Checks**: Retrieve user role and permissions for access control
5. **User Context**: Obtain user details for logging, analytics, or audit trails
## Example Usage
### JavaScript (Fetch API)
```javascript
const response = await fetch('https://dummyjson.com/auth/me', {
method: 'GET',
headers: {
'Authorization': `Bearer ${accessToken}`,
'Content-Type': 'application/json'
}
});
const userData = await response.json();
console.log(`Welcome, ${userData.firstName}!`);
```
### cURL
```bash
curl -X GET 'https://dummyjson.com/auth/me' \
-H 'Authorization: Bearer YOUR_ACCESS_TOKEN'
```
## Notes
- **Token Expiration**: If the Bearer token has expired, this endpoint will return an authentication error. Use the `/auth/refresh` endpoint to obtain a new token.
- **Sensitive Data**: The response includes sensitive information like banking details. Ensure proper security measures when handling this data.
- **Response Time**: Expected response time is under 2 seconds (validated by automated tests).
- **Required Fields**: The response always includes `id` and `username` fields (validated by automated tests).
- **No Parameters**: This endpoint does not accept any query parameters or request body.
## Error Responses
### 401 Unauthorized
Returned when the Bearer token is missing, invalid, or expired.
```json
{
"message": "Authentication required"
}
```
### 403 Forbidden
Returned when the token is valid but lacks necessary permissions.
## Related Endpoints
- `POST /auth/login` - Obtain access token
- `POST /auth/refresh` - Refresh expired token
- `PUT /users/{userId}` - Update user information
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjcsImV4cCI6MTc2OTk2NDc2N30.GZCUVvd0dz0StrtG1qYL4I5ptF4oYmGzmo6UUvIzx7o |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | a76054f9-761f-4342-85db-533d0de2e31e |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjcsImV4cCI6MTc2OTk2NDc2N30.GZCUVvd0dz0StrtG1qYL4I5ptF4oYmGzmo6UUvIzx7o; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjcsImV4cCI6MTc3MjU1MzE2N30.-5MMVprg-jGGW64wzNvt-b7vZG9V2RwpH727fa7l0Ls |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:52:48 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 99 |
| x-ratelimit-reset | 1769961177 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"58f-CoL/KoXlW3x1PtqQr3wqPsXj6DE" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=MJeoBEV0NuHo23Anv14pEE%2FeDvVIue3epP1QGnUoGjLXmE5CRAum6jlm7K4RdJ2EwqaUrJJ3LdZubOKVAXVXXOGt9Mndgfdb5tTH%2BeI%3D"}]} |
| CF-RAY | 9c729e341ac22891-AMM |
{"id":1,"firstName":"Emily","lastName":"Johnson","maidenName":"Smith","age":29,"gender":"female","email":"emily.johnson@x.dummyjson.com","phone":"+81 965-431-3024","username":"emilys","password":"emilyspass","birthDate":"1996-5-30","image":"https://dummyjson.com/icon/emilys/128","bloodGroup":"O-","height":193.24,"weight":63.16,"eyeColor":"Green","hair":{"color":"Brown","type":"Curly"},"ip":"42.48.100.32","address":{"address":"626 Main Street","city":"Phoenix","state":"Mississippi","stateCode":"MS","postalCode":"29112","coordinates":{"lat":-77.16213,"lng":-92.084824},"country":"United States"},"macAddress":"47:fa:41:18:ec:eb","university":"University of Wisconsin--Madison","bank":{"cardExpire":"05/28","cardNumber":"3693233511855044","cardType":"Diners Club International","currency":"GBP","iban":"GB74MH2UZLR9TRPHYNU8F8"},"company":{"department":"Engineering","name":"Dooley, Kozey and Cronin","title":"Sales Manager","address":{"address":"263 Tenth Street","city":"San Francisco","state":"Wisconsin","stateCode":"WI","postalCode":"37657","coordinates":{"lat":71.814525,"lng":-161.150263},"country":"United States"}},"ein":"977-175","ssn":"900-590-289","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"admin"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| User content is correct | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 3 | 0 | 0 |
| Test Name | Assertion Error |
|---|
# Refresh Authentication Session
## Overview
This endpoint refreshes an existing authentication session by generating a new access token and refresh token pair. Use this endpoint when your current access token is about to expire or has expired, allowing you to maintain an authenticated session without requiring the user to log in again.
---
## Endpoint Details
**Method:** `POST`
**Path:** `https://dummyjson.com/auth/refresh`
---
## Request Body
The request requires a JSON payload with the following parameters:
| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `refreshToken` | string | Yes | The current valid refresh token (or access token) used to generate new tokens |
| `expiresInMins` | integer | Yes | The desired expiration time for the new access token in minutes (e.g., 30) |
### Example Request Body
```json
{
"refreshToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjcsImV4cCI6MTc2OTk2NDc2N30.GZCUVvd0dz0StrtG1qYL4I5ptF4oYmGzmo6UUvIzx7o",
"expiresInMins": 30
}
```
---
## Response Format
### Success Response (200 OK)
Returns a JSON object containing new authentication tokens:
```json
{
"accessToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
"refreshToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."
}
```
| Field | Type | Description |
|-------|------|-------------|
| `accessToken` | string | New JWT access token for authenticated requests |
| `refreshToken` | string | New refresh token for future token refresh operations |
---
## Authentication Requirements
- Requires a valid refresh token (or access token) in the request body
- No additional authentication headers required for this endpoint
- The provided token must not be expired or invalid
---
## Use Cases
### When to Use This Endpoint
1. **Token Expiration Prevention**: Proactively refresh tokens before they expire to maintain uninterrupted access
2. **Expired Token Recovery**: Obtain new tokens when your access token has expired
3. **Session Extension**: Extend user sessions without requiring re-authentication
4. **Security Best Practices**: Regularly rotate tokens to minimize security risks
### Typical Workflow
```
1. User logs in → Receives accessToken and refreshToken
2. User makes authenticated requests using accessToken
3. Before accessToken expires → Call /auth/refresh
4. Receive new accessToken and refreshToken
5. Update stored tokens and continue making requests
```
---
## Important Notes
### Token Expiration
- Access tokens have a limited lifespan defined by `expiresInMins`
- The default expiration is typically 30 minutes
- Refresh tokens generally have a longer lifespan than access tokens
- Always store the new tokens returned from this endpoint
### Best Practices
- **Automatic Refresh**: Implement automatic token refresh logic in your application
- **Token Storage**: Securely store both access and refresh tokens (use environment variables in Postman)
- **Error Handling**: If refresh fails, redirect users to login again
- **Token Rotation**: Update both tokens after each refresh for enhanced security
### Error Scenarios
If the refresh token is invalid or expired, you will receive an error response and must authenticate again using the `/auth/login` endpoint.
---
## Related Endpoints
- **Login**: `POST https://dummyjson.com/auth/login` - Initial authentication to obtain tokens
- **Get Current User**: `GET https://dummyjson.com/auth/me` - Verify token validity and get user info
| Header Name | Header Value |
|---|---|
| Content-Type | application/json |
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjcsImV4cCI6MTc2OTk2NDc2N30.GZCUVvd0dz0StrtG1qYL4I5ptF4oYmGzmo6UUvIzx7o |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | f4d7469e-565f-4b14-bf1c-39207b384eac |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 414 |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjcsImV4cCI6MTc2OTk2NDc2N30.GZCUVvd0dz0StrtG1qYL4I5ptF4oYmGzmo6UUvIzx7o; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjcsImV4cCI6MTc3MjU1MzE2N30.-5MMVprg-jGGW64wzNvt-b7vZG9V2RwpH727fa7l0Ls |
{
"refreshToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjcsImV4cCI6MTc2OTk2NDc2N30.GZCUVvd0dz0StrtG1qYL4I5ptF4oYmGzmo6UUvIzx7o",
"expiresInMins": 30
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:52:48 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 99 |
| x-ratelimit-reset | 1769961169 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| Set-Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjgsImV4cCI6MTc2OTk2Mjk2OH0.YBAfjxIdnj23YvRfMfsLLiM8QD-KCpxm5JeX6g5iot0; Max-Age=1800; Path=/; Expires=Sun, 01 Feb 2026 16:22:48 GMT; HttpOnly; Secure |
| Set-Cookie | refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjgsImV4cCI6MTc3MjU1MzE2OH0.e3x6QVuCW25JTOT-scFLoJaHoODcx4UpJLxL9xGB_zc; Max-Age=1800; Path=/; Expires=Sun, 01 Feb 2026 16:22:48 GMT; HttpOnly; Secure |
| etag | W/"2f4-4yRdSGZ9APLHeZ782fjLAqbWrBg" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=35oc1cFg4FnYhmJuSF5u7TN2fhc1Ibzfustz1HQrIzqA0X25vt335sJ0lsfRBNG94Nj5YFfiJAWLZlVDpG3xVnQl0M0dbd38KJDt4EA%3D"}]} |
| Content-Encoding | br |
| CF-RAY | 9c729e35fcd52891-AMM |
{"accessToken":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjgsImV4cCI6MTc2OTk2Mjk2OH0.YBAfjxIdnj23YvRfMfsLLiM8QD-KCpxm5JeX6g5iot0","refreshToken":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjgsImV4cCI6MTc3MjU1MzE2OH0.e3x6QVuCW25JTOT-scFLoJaHoODcx4UpJLxL9xGB_zc"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Access token is present | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 3 | 0 | 0 |
| Test Name | Assertion Error |
|---|
# Negative Test: Refresh Authentication Session with Invalid Token
## Overview
This is a **negative test case** designed to validate the API's error handling when attempting to refresh an authentication session using an invalid or expired refresh token.
## Purpose
Tests the authentication refresh endpoint's ability to properly reject and handle invalid refresh token requests, ensuring the API maintains security standards by not allowing unauthorized session refreshes.
## Expected Behavior
- **Status Code**: `401 Unauthorized` or `403 Forbidden`
- **Response Body**: Should contain an error message indicating the token is invalid
- **Security**: The API must reject the request and not generate a new access token
## Request Details
### Endpoint
`POST https://dummyjson.com/auth/refresh`
### Request Body Parameters
| Parameter | Type | Value | Description |
|-----------|------|-------|-------------|
| `refreshToken` | string | `"expired_invalid_token_xyz"` | An intentionally invalid/expired refresh token |
| `expiresInMins` | integer | `30` | Requested token expiration time in minutes |
### Test Scenario
This request deliberately sends an invalid refresh token (`expired_invalid_token_xyz`) to verify the API properly rejects unauthorized refresh attempts.
## Test Validations
The following automated tests are executed on the response:
1. **Status Code Validation**: Verifies the response status code is either `401` or `403`
2. **Error Message Validation**: Confirms the response contains an error message field that is a string
## Use Case & Importance
### Security Validation
This negative test is critical for API security because it:
- **Prevents Token Forgery**: Ensures attackers cannot use fabricated tokens to gain unauthorized access
- **Validates Token Expiration**: Confirms expired tokens are properly rejected
- **Error Handling**: Verifies appropriate error messages are returned to clients
- **Session Security**: Protects against session hijacking attempts
### Real-World Scenarios
This test simulates situations where:
- A user's refresh token has expired
- An attacker attempts to use a stolen or guessed token
- A client application has cached an old/invalid token
- Network issues caused token corruption
By validating proper rejection of invalid tokens, this test ensures the authentication system maintains its security integrity and provides clear feedback for troubleshooting legitimate authentication issues.
| Header Name | Header Value |
|---|---|
| Content-Type | application/json |
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjcsImV4cCI6MTc2OTk2NDc2N30.GZCUVvd0dz0StrtG1qYL4I5ptF4oYmGzmo6UUvIzx7o |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 7c84d853-a1f2-4de1-8836-1b92a79c1ddd |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 81 |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjgsImV4cCI6MTc2OTk2Mjk2OH0.YBAfjxIdnj23YvRfMfsLLiM8QD-KCpxm5JeX6g5iot0; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjgsImV4cCI6MTc3MjU1MzE2OH0.e3x6QVuCW25JTOT-scFLoJaHoODcx4UpJLxL9xGB_zc |
{
"refreshToken": "expired_invalid_token_xyz",
"expiresInMins": 30
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:52:48 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 99 |
| x-ratelimit-reset | 1769961179 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"23-pPrdIf6OEYUEvqJKlUDSyBAT260" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=ecOf2qqMlQN410HcYtuvtDDYDbFFOE1%2B9T%2F1hD44irunrq3HtWnIV2SMYnSERZ2jRL82jM6b24MjFfQFMY%2F2FgZcPTr8tHqkNa2mI0w%3D"}]} |
| Content-Encoding | br |
| CF-RAY | 9c729e378efc2891-AMM |
{"message":"Invalid refresh token"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 401 or 403 | 1 | 0 | 0 |
| Response has error message | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
# Get All Products
## Overview
This endpoint retrieves a complete list of all products available in the e-commerce catalog. It returns comprehensive product information including pricing, inventory, specifications, and customer reviews.
## Request Details
**Method:** `GET`
**URL:** `https://dummyjson.com/products`
**Authentication:** Not required
**Query Parameters:** None (base endpoint)
### Optional Query Parameters
While the base endpoint returns all products, you can use the following query parameters to customize the response:
- `limit` - Limit the number of products returned (e.g., `?limit=10`)
- `skip` - Skip a number of products for pagination (e.g., `?skip=10`)
- `select` - Select specific fields to return (e.g., `?select=title,price`)
- `sortBy` - Sort products by a specific field (e.g., `?sortBy=price`)
- `order` - Sort order: `asc` or `desc` (e.g., `?order=asc`)
## Response Structure
The endpoint returns a JSON object with the following structure:
```json
{
"products": [
{
"id": 1,
"title": "Product Name",
"description": "Product description",
"category": "Category name",
"price": 99.99,
"discountPercentage": 10.5,
"rating": 4.5,
"stock": 100,
"tags": ["tag1", "tag2"],
"brand": "Brand Name",
"sku": "SKU-CODE",
"weight": 5,
"dimensions": {
"width": 10.5,
"height": 15.2,
"depth": 8.3
},
"warrantyInformation": "1 year warranty",
"shippingInformation": "Ships in 1-2 business days",
"availabilityStatus": "In Stock",
"reviews": [
{
"rating": 5,
"comment": "Great product!",
"date": "2025-04-30T09:41:02.053Z",
"reviewerName": "John Doe",
"reviewerEmail": "john.doe@example.com"
}
],
"returnPolicy": "30 days return policy",
"minimumOrderQuantity": 1,
"meta": {
"createdAt": "2025-04-30T09:41:02.053Z",
"updatedAt": "2025-04-30T09:41:02.053Z",
"barcode": "1234567890123",
"qrCode": "https://example.com/qr-code.png"
},
"images": ["https://example.com/image1.jpg"],
"thumbnail": "https://example.com/thumbnail.jpg"
}
],
"total": 100,
"skip": 0,
"limit": 30
}
```
### Response Fields
- **products** (array): Array of product objects
- **total** (number): Total number of products available
- **skip** (number): Number of products skipped (for pagination)
- **limit** (number): Maximum number of products returned
### Product Object Fields
- **id**: Unique product identifier
- **title**: Product name
- **description**: Detailed product description
- **category**: Product category
- **price**: Product price in USD
- **discountPercentage**: Current discount percentage
- **rating**: Average customer rating (0-5)
- **stock**: Available inventory quantity
- **tags**: Array of product tags for categorization
- **brand**: Product brand name
- **sku**: Stock Keeping Unit identifier
- **weight**: Product weight
- **dimensions**: Physical dimensions (width, height, depth)
- **warrantyInformation**: Warranty details
- **shippingInformation**: Shipping time and details
- **availabilityStatus**: Current availability status
- **reviews**: Array of customer reviews with ratings and comments
- **returnPolicy**: Return policy information
- **minimumOrderQuantity**: Minimum quantity required for purchase
- **meta**: Metadata including creation date, barcode, and QR code
- **images**: Array of product image URLs
- **thumbnail**: Main product thumbnail URL
## Example Use Cases
### 1. Display Product Catalog
Retrieve all products to display in a product listing page or catalog view.
### 2. Inventory Management
Fetch complete product list to check stock levels and availability across all items.
### 3. Data Analysis
Pull all product data for analytics, reporting, or business intelligence purposes.
### 4. Search Index Building
Retrieve all products to build or update a search index for the e-commerce platform.
### 5. Product Comparison
Get complete product information to enable comparison features across multiple products.
## Response Validation
This endpoint includes automated tests that verify:
- ✅ Status code is 200 (OK)
- ✅ Response contains a `products` property
- ✅ `products` is an array
- ✅ Response time is under 2000ms
## Notes
- **Performance**: This endpoint returns all products by default. For large catalogs, consider using pagination parameters (`limit` and `skip`) to improve performance.
- **No Authentication Required**: This is a public endpoint that doesn't require authentication.
- **Rate Limiting**: Be mindful of API rate limits when making frequent requests.
- **Caching**: Consider implementing client-side caching for product data to reduce API calls.
- **Related Endpoints**:
- Use `/products/{id}` to get a single product by ID
- Use `/products/search?q={query}` to search for specific products
- Use `/products/category/{category}` to filter by category
- Use `/products/categories` to get all available categories
## Status Codes
- **200 OK**: Successfully retrieved products
- **500 Internal Server Error**: Server error occurred
## Example Request
```bash
GET https://dummyjson.com/products
```
## Example Response (Truncated)
```json
{
"products": [
{
"id": 1,
"title": "Essence Mascara Lash Princess",
"category": "beauty",
"price": 9.99,
"rating": 2.56,
"stock": 99
},
{
"id": 2,
"title": "Eyeshadow Palette with Mirror",
"category": "beauty",
"price": 19.99,
"rating": 2.86,
"stock": 34
}
],
"total": 194,
"skip": 0,
"limit": 30
}
```
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjcsImV4cCI6MTc2OTk2NDc2N30.GZCUVvd0dz0StrtG1qYL4I5ptF4oYmGzmo6UUvIzx7o |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | aff3528a-34c8-4522-9f14-7ad74b60fcc5 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjgsImV4cCI6MTc2OTk2Mjk2OH0.YBAfjxIdnj23YvRfMfsLLiM8QD-KCpxm5JeX6g5iot0; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjgsImV4cCI6MTc3MjU1MzE2OH0.e3x6QVuCW25JTOT-scFLoJaHoODcx4UpJLxL9xGB_zc |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:52:48 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 99 |
| x-ratelimit-reset | 1769448742 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"ac3a-uk0FDUI0X0lS5liyUbIxqA7L7F4" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| Age | 512436 |
| Cache-Control | no-store |
| cf-cache-status | HIT |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=j2%2BGj137F9zDGrLkvZZkasaI53mEsZs0xZfY4%2BBja3Rz7VvK%2B9bztjOErwT4pWBqMfvEoaHOnTLmpDhzYQ4S65guYhwj2EG1LZFRnwc%3D"}]} |
| CF-RAY | 9c729e3978e12891-AMM |
{"products":[{"id":1,"title":"Essence Mascara Lash Princess","description":"The Essence Mascara Lash Princess is a popular mascara known for its volumizing and lengthening effects. Achieve dramatic lashes with this long-lasting and cruelty-free formula.","category":"beauty","price":9.99,"discountPercentage":10.48,"rating":2.56,"stock":99,"tags":["beauty","mascara"],"brand":"Essence","sku":"BEA-ESS-ESS-001","weight":4,"dimensions":{"width":15.14,"height":13.08,"depth":22.99},"warrantyInformation":"1 week warranty","shippingInformation":"Ships in 3-5 business days","availabilityStatus":"In Stock","reviews":[{"rating":3,"comment":"Would not recommend!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Eleanor Collins","reviewerEmail":"eleanor.collins@x.dummyjson.com"},{"rating":4,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Lucas Gordon","reviewerEmail":"lucas.gordon@x.dummyjson.com"},{"rating":5,"comment":"Highly impressed!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Eleanor Collins","reviewerEmail":"eleanor.collins@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":48,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"5784719087687","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/beauty/essence-mascara-lash-princess/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/beauty/essence-mascara-lash-princess/thumbnail.webp"},{"id":2,"title":"Eyeshadow Palette with Mirror","description":"The Eyeshadow Palette with Mirror offers a versatile range of eyeshadow shades for creating stunning eye looks. With a built-in mirror, it's convenient for on-the-go makeup application.","category":"beauty","price":19.99,"discountPercentage":18.19,"rating":2.86,"stock":34,"tags":["beauty","eyeshadow"],"brand":"Glamour Beauty","sku":"BEA-GLA-EYE-002","weight":9,"dimensions":{"width":9.26,"height":22.47,"depth":27.67},"warrantyInformation":"1 year warranty","shippingInformation":"Ships in 2 weeks","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Great product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Savannah Gomez","reviewerEmail":"savannah.gomez@x.dummyjson.com"},{"rating":4,"comment":"Awesome product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Christian Perez","reviewerEmail":"christian.perez@x.dummyjson.com"},{"rating":1,"comment":"Poor quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Nicholas Bailey","reviewerEmail":"nicholas.bailey@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":20,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"9170275171413","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/beauty/eyeshadow-palette-with-mirror/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/beauty/eyeshadow-palette-with-mirror/thumbnail.webp"},{"id":3,"title":"Powder Canister","description":"The Powder Canister is a finely milled setting powder designed to set makeup and control shine. With a lightweight and translucent formula, it provides a smooth and matte finish.","category":"beauty","price":14.99,"discountPercentage":9.84,"rating":4.64,"stock":89,"tags":["beauty","face powder"],"brand":"Velvet Touch","sku":"BEA-VEL-POW-003","weight":8,"dimensions":{"width":29.27,"height":27.93,"depth":20.59},"warrantyInformation":"3 months warranty","shippingInformation":"Ships in 1-2 business days","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Would buy again!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Alexander Jones","reviewerEmail":"alexander.jones@x.dummyjson.com"},{"rating":5,"comment":"Highly impressed!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Elijah Cruz","reviewerEmail":"elijah.cruz@x.dummyjson.com"},{"rating":1,"comment":"Very dissatisfied!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Avery Perez","reviewerEmail":"avery.perez@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":22,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"8418883906837","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/beauty/powder-canister/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/beauty/powder-canister/thumbnail.webp"},{"id":4,"title":"Red Lipstick","description":"The Red Lipstick is a classic and bold choice for adding a pop of color to your lips. With a creamy and pigmented formula, it provides a vibrant and long-lasting finish.","category":"beauty","price":12.99,"discountPercentage":12.16,"rating":4.36,"stock":91,"tags":["beauty","lipstick"],"brand":"Chic Cosmetics","sku":"BEA-CHI-LIP-004","weight":1,"dimensions":{"width":18.11,"height":28.38,"depth":22.17},"warrantyInformation":"3 year warranty","shippingInformation":"Ships in 1 week","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Great product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Liam Garcia","reviewerEmail":"liam.garcia@x.dummyjson.com"},{"rating":5,"comment":"Great product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Ruby Andrews","reviewerEmail":"ruby.andrews@x.dummyjson.com"},{"rating":5,"comment":"Would buy again!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Clara Berry","reviewerEmail":"clara.berry@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":40,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"9467746727219","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/beauty/red-lipstick/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/beauty/red-lipstick/thumbnail.webp"},{"id":5,"title":"Red Nail Polish","description":"The Red Nail Polish offers a rich and glossy red hue for vibrant and polished nails. With a quick-drying formula, it provides a salon-quality finish at home.","category":"beauty","price":8.99,"discountPercentage":11.44,"rating":4.32,"stock":79,"tags":["beauty","nail polish"],"brand":"Nail Couture","sku":"BEA-NAI-NAI-005","weight":8,"dimensions":{"width":21.63,"height":16.48,"depth":29.84},"warrantyInformation":"1 month warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":2,"comment":"Poor quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Benjamin Wilson","reviewerEmail":"benjamin.wilson@x.dummyjson.com"},{"rating":5,"comment":"Great product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Liam Smith","reviewerEmail":"liam.smith@x.dummyjson.com"},{"rating":1,"comment":"Very unhappy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Clara Berry","reviewerEmail":"clara.berry@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":22,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"4063010628104","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/beauty/red-nail-polish/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/beauty/red-nail-polish/thumbnail.webp"},{"id":6,"title":"Calvin Klein CK One","description":"CK One by Calvin Klein is a classic unisex fragrance, known for its fresh and clean scent. It's a versatile fragrance suitable for everyday wear.","category":"fragrances","price":49.99,"discountPercentage":1.89,"rating":4.37,"stock":29,"tags":["fragrances","perfumes"],"brand":"Calvin Klein","sku":"FRA-CAL-CAL-006","weight":7,"dimensions":{"width":29.36,"height":27.76,"depth":20.72},"warrantyInformation":"1 week warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":2,"comment":"Very disappointed!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Layla Young","reviewerEmail":"layla.young@x.dummyjson.com"},{"rating":4,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Daniel Cook","reviewerEmail":"daniel.cook@x.dummyjson.com"},{"rating":3,"comment":"Not as described!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Jacob Cooper","reviewerEmail":"jacob.cooper@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":9,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"2451534060749","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/fragrances/calvin-klein-ck-one/1.webp","https://cdn.dummyjson.com/product-images/fragrances/calvin-klein-ck-one/2.webp","https://cdn.dummyjson.com/product-images/fragrances/calvin-klein-ck-one/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/fragrances/calvin-klein-ck-one/thumbnail.webp"},{"id":7,"title":"Chanel Coco Noir Eau De","description":"Coco Noir by Chanel is an elegant and mysterious fragrance, featuring notes of grapefruit, rose, and sandalwood. Perfect for evening occasions.","category":"fragrances","price":129.99,"discountPercentage":16.51,"rating":4.26,"stock":58,"tags":["fragrances","perfumes"],"brand":"Chanel","sku":"FRA-CHA-CHA-007","weight":7,"dimensions":{"width":24.5,"height":25.7,"depth":25.98},"warrantyInformation":"3 year warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Highly impressed!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Ruby Andrews","reviewerEmail":"ruby.andrews@x.dummyjson.com"},{"rating":5,"comment":"Awesome product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Leah Henderson","reviewerEmail":"leah.henderson@x.dummyjson.com"},{"rating":5,"comment":"Very happy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Xavier Wright","reviewerEmail":"xavier.wright@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"4091737746820","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/fragrances/chanel-coco-noir-eau-de/1.webp","https://cdn.dummyjson.com/product-images/fragrances/chanel-coco-noir-eau-de/2.webp","https://cdn.dummyjson.com/product-images/fragrances/chanel-coco-noir-eau-de/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/fragrances/chanel-coco-noir-eau-de/thumbnail.webp"},{"id":8,"title":"Dior J'adore","description":"J'adore by Dior is a luxurious and floral fragrance, known for its blend of ylang-ylang, rose, and jasmine. It embodies femininity and sophistication.","category":"fragrances","price":89.99,"discountPercentage":14.72,"rating":3.8,"stock":98,"tags":["fragrances","perfumes"],"brand":"Dior","sku":"FRA-DIO-DIO-008","weight":4,"dimensions":{"width":27.67,"height":28.28,"depth":11.83},"warrantyInformation":"1 week warranty","shippingInformation":"Ships in 2 weeks","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Great value for money!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Nicholas Bailey","reviewerEmail":"nicholas.bailey@x.dummyjson.com"},{"rating":4,"comment":"Great value for money!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Penelope Harper","reviewerEmail":"penelope.harper@x.dummyjson.com"},{"rating":4,"comment":"Great product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Emma Miller","reviewerEmail":"emma.miller@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":10,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"1445086097250","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/fragrances/dior-j'adore/1.webp","https://cdn.dummyjson.com/product-images/fragrances/dior-j'adore/2.webp","https://cdn.dummyjson.com/product-images/fragrances/dior-j'adore/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/fragrances/dior-j'adore/thumbnail.webp"},{"id":9,"title":"Dolce Shine Eau de","description":"Dolce Shine by Dolce & Gabbana is a vibrant and fruity fragrance, featuring notes of mango, jasmine, and blonde woods. It's a joyful and youthful scent.","category":"fragrances","price":69.99,"discountPercentage":0.62,"rating":3.96,"stock":4,"tags":["fragrances","perfumes"],"brand":"Dolce & Gabbana","sku":"FRA-DOL-DOL-009","weight":6,"dimensions":{"width":27.28,"height":29.88,"depth":18.3},"warrantyInformation":"3 year warranty","shippingInformation":"Ships in 1 month","availabilityStatus":"Low Stock","reviews":[{"rating":4,"comment":"Would buy again!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Mateo Bennett","reviewerEmail":"mateo.bennett@x.dummyjson.com"},{"rating":4,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Nolan Gonzalez","reviewerEmail":"nolan.gonzalez@x.dummyjson.com"},{"rating":5,"comment":"Very happy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Aurora Lawson","reviewerEmail":"aurora.lawson@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":2,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"3023868210708","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/fragrances/dolce-shine-eau-de/1.webp","https://cdn.dummyjson.com/product-images/fragrances/dolce-shine-eau-de/2.webp","https://cdn.dummyjson.com/product-images/fragrances/dolce-shine-eau-de/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/fragrances/dolce-shine-eau-de/thumbnail.webp"},{"id":10,"title":"Gucci Bloom Eau de","description":"Gucci Bloom by Gucci is a floral and captivating fragrance, with notes of tuberose, jasmine, and Rangoon creeper. It's a modern and romantic scent.","category":"fragrances","price":79.99,"discountPercentage":14.39,"rating":2.74,"stock":91,"tags":["fragrances","perfumes"],"brand":"Gucci","sku":"FRA-GUC-GUC-010","weight":7,"dimensions":{"width":20.92,"height":21.68,"depth":11.2},"warrantyInformation":"6 months warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":1,"comment":"Very dissatisfied!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Cameron Perez","reviewerEmail":"cameron.perez@x.dummyjson.com"},{"rating":5,"comment":"Very happy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Daniel Cook","reviewerEmail":"daniel.cook@x.dummyjson.com"},{"rating":4,"comment":"Highly impressed!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Addison Wright","reviewerEmail":"addison.wright@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":2,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"3170832177880","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/fragrances/gucci-bloom-eau-de/1.webp","https://cdn.dummyjson.com/product-images/fragrances/gucci-bloom-eau-de/2.webp","https://cdn.dummyjson.com/product-images/fragrances/gucci-bloom-eau-de/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/fragrances/gucci-bloom-eau-de/thumbnail.webp"},{"id":11,"title":"Annibale Colombo Bed","description":"The Annibale Colombo Bed is a luxurious and elegant bed frame, crafted with high-quality materials for a comfortable and stylish bedroom.","category":"furniture","price":1899.99,"discountPercentage":8.57,"rating":4.77,"stock":88,"tags":["furniture","beds"],"brand":"Annibale Colombo","sku":"FUR-ANN-ANN-011","weight":10,"dimensions":{"width":28.16,"height":25.36,"depth":17.28},"warrantyInformation":"1 year warranty","shippingInformation":"Ships in 1 month","availabilityStatus":"In Stock","reviews":[{"rating":2,"comment":"Would not recommend!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Christopher West","reviewerEmail":"christopher.west@x.dummyjson.com"},{"rating":4,"comment":"Highly impressed!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Vivian Carter","reviewerEmail":"vivian.carter@x.dummyjson.com"},{"rating":1,"comment":"Poor quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Mason Wright","reviewerEmail":"mason.wright@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"3610757456581","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/furniture/annibale-colombo-bed/1.webp","https://cdn.dummyjson.com/product-images/furniture/annibale-colombo-bed/2.webp","https://cdn.dummyjson.com/product-images/furniture/annibale-colombo-bed/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/furniture/annibale-colombo-bed/thumbnail.webp"},{"id":12,"title":"Annibale Colombo Sofa","description":"The Annibale Colombo Sofa is a sophisticated and comfortable seating option, featuring exquisite design and premium upholstery for your living room.","category":"furniture","price":2499.99,"discountPercentage":14.4,"rating":3.92,"stock":60,"tags":["furniture","sofas"],"brand":"Annibale Colombo","sku":"FUR-ANN-ANN-012","weight":6,"dimensions":{"width":12.75,"height":20.55,"depth":19.06},"warrantyInformation":"Lifetime warranty","shippingInformation":"Ships in 1 week","availabilityStatus":"In Stock","reviews":[{"rating":3,"comment":"Very unhappy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Christian Perez","reviewerEmail":"christian.perez@x.dummyjson.com"},{"rating":5,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Lillian Bishop","reviewerEmail":"lillian.bishop@x.dummyjson.com"},{"rating":1,"comment":"Poor quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Lillian Simmons","reviewerEmail":"lillian.simmons@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"1777662847736","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/furniture/annibale-colombo-sofa/1.webp","https://cdn.dummyjson.com/product-images/furniture/annibale-colombo-sofa/2.webp","https://cdn.dummyjson.com/product-images/furniture/annibale-colombo-sofa/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/furniture/annibale-colombo-sofa/thumbnail.webp"},{"id":13,"title":"Bedside Table African Cherry","description":"The Bedside Table in African Cherry is a stylish and functional addition to your bedroom, providing convenient storage space and a touch of elegance.","category":"furniture","price":299.99,"discountPercentage":19.09,"rating":2.87,"stock":64,"tags":["furniture","bedside tables"],"brand":"Furniture Co.","sku":"FUR-FUR-BED-013","weight":2,"dimensions":{"width":13.47,"height":24.99,"depth":27.35},"warrantyInformation":"5 year warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Aaliyah Hanson","reviewerEmail":"aaliyah.hanson@x.dummyjson.com"},{"rating":4,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Liam Smith","reviewerEmail":"liam.smith@x.dummyjson.com"},{"rating":4,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Avery Barnes","reviewerEmail":"avery.barnes@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":3,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"6441287925979","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/furniture/bedside-table-african-cherry/1.webp","https://cdn.dummyjson.com/product-images/furniture/bedside-table-african-cherry/2.webp","https://cdn.dummyjson.com/product-images/furniture/bedside-table-african-cherry/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/furniture/bedside-table-african-cherry/thumbnail.webp"},{"id":14,"title":"Knoll Saarinen Executive Conference Chair","description":"The Knoll Saarinen Executive Conference Chair is a modern and ergonomic chair, perfect for your office or conference room with its timeless design.","category":"furniture","price":499.99,"discountPercentage":2.01,"rating":4.88,"stock":26,"tags":["furniture","office chairs"],"brand":"Knoll","sku":"FUR-KNO-KNO-014","weight":10,"dimensions":{"width":13.81,"height":7.5,"depth":5.62},"warrantyInformation":"2 year warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":2,"comment":"Waste of money!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Ella Cook","reviewerEmail":"ella.cook@x.dummyjson.com"},{"rating":2,"comment":"Very dissatisfied!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Clara Berry","reviewerEmail":"clara.berry@x.dummyjson.com"},{"rating":5,"comment":"Would buy again!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Elena Long","reviewerEmail":"elena.long@x.dummyjson.com"}],"returnPolicy":"60 days return policy","minimumOrderQuantity":5,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"8919386859966","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/furniture/knoll-saarinen-executive-conference-chair/1.webp","https://cdn.dummyjson.com/product-images/furniture/knoll-saarinen-executive-conference-chair/2.webp","https://cdn.dummyjson.com/product-images/furniture/knoll-saarinen-executive-conference-chair/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/furniture/knoll-saarinen-executive-conference-chair/thumbnail.webp"},{"id":15,"title":"Wooden Bathroom Sink With Mirror","description":"The Wooden Bathroom Sink with Mirror is a unique and stylish addition to your bathroom, featuring a wooden sink countertop and a matching mirror.","category":"furniture","price":799.99,"discountPercentage":8.8,"rating":3.59,"stock":7,"tags":["furniture","bathroom"],"brand":"Bath Trends","sku":"FUR-BAT-WOO-015","weight":10,"dimensions":{"width":7.98,"height":8.88,"depth":28.46},"warrantyInformation":"3 year warranty","shippingInformation":"Ships in 3-5 business days","availabilityStatus":"Low Stock","reviews":[{"rating":4,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Logan Torres","reviewerEmail":"logan.torres@x.dummyjson.com"},{"rating":5,"comment":"Very pleased!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Aria Parker","reviewerEmail":"aria.parker@x.dummyjson.com"},{"rating":3,"comment":"Poor quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Dylan Wells","reviewerEmail":"dylan.wells@x.dummyjson.com"}],"returnPolicy":"60 days return policy","minimumOrderQuantity":2,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"1958104402873","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/furniture/wooden-bathroom-sink-with-mirror/1.webp","https://cdn.dummyjson.com/product-images/furniture/wooden-bathroom-sink-with-mirror/2.webp","https://cdn.dummyjson.com/product-images/furniture/wooden-bathroom-sink-with-mirror/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/furniture/wooden-bathroom-sink-with-mirror/thumbnail.webp"},{"id":16,"title":"Apple","description":"Fresh and crisp apples, perfect for snacking or incorporating into various recipes.","category":"groceries","price":1.99,"discountPercentage":12.62,"rating":4.19,"stock":8,"tags":["fruits"],"sku":"GRO-BRD-APP-016","weight":9,"dimensions":{"width":13.66,"height":11.01,"depth":9.73},"warrantyInformation":"3 year warranty","shippingInformation":"Ships in 2 weeks","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Sophia Brown","reviewerEmail":"sophia.brown@x.dummyjson.com"},{"rating":1,"comment":"Very dissatisfied!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Scarlett Bowman","reviewerEmail":"scarlett.bowman@x.dummyjson.com"},{"rating":3,"comment":"Very unhappy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"William Gonzalez","reviewerEmail":"william.gonzalez@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":7,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"7962803553314","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/apple/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/apple/thumbnail.webp"},{"id":17,"title":"Beef Steak","description":"High-quality beef steak, great for grilling or cooking to your preferred level of doneness.","category":"groceries","price":12.99,"discountPercentage":9.61,"rating":4.47,"stock":86,"tags":["meat"],"sku":"GRO-BRD-BEE-017","weight":10,"dimensions":{"width":18.9,"height":5.77,"depth":18.57},"warrantyInformation":"3 year warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":3,"comment":"Would not recommend!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Eleanor Tyler","reviewerEmail":"eleanor.tyler@x.dummyjson.com"},{"rating":4,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Alexander Jones","reviewerEmail":"alexander.jones@x.dummyjson.com"},{"rating":5,"comment":"Great value for money!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Natalie Harris","reviewerEmail":"natalie.harris@x.dummyjson.com"}],"returnPolicy":"60 days return policy","minimumOrderQuantity":43,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"5640063409695","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/beef-steak/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/beef-steak/thumbnail.webp"},{"id":18,"title":"Cat Food","description":"Nutritious cat food formulated to meet the dietary needs of your feline friend.","category":"groceries","price":8.99,"discountPercentage":9.58,"rating":3.13,"stock":46,"tags":["pet supplies","cat food"],"sku":"GRO-BRD-FOO-018","weight":10,"dimensions":{"width":18.08,"height":9.26,"depth":21.86},"warrantyInformation":"1 year warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":3,"comment":"Would not recommend!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Noah Lewis","reviewerEmail":"noah.lewis@x.dummyjson.com"},{"rating":3,"comment":"Very unhappy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Ruby Andrews","reviewerEmail":"ruby.andrews@x.dummyjson.com"},{"rating":2,"comment":"Very disappointed!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Ethan Thompson","reviewerEmail":"ethan.thompson@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":18,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"1483991328610","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/cat-food/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/cat-food/thumbnail.webp"},{"id":19,"title":"Chicken Meat","description":"Fresh and tender chicken meat, suitable for various culinary preparations.","category":"groceries","price":9.99,"discountPercentage":13.7,"rating":3.19,"stock":97,"tags":["meat"],"sku":"GRO-BRD-CHI-019","weight":1,"dimensions":{"width":11.03,"height":22.11,"depth":16.01},"warrantyInformation":"1 year warranty","shippingInformation":"Ships in 1 month","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Great product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Mateo Bennett","reviewerEmail":"mateo.bennett@x.dummyjson.com"},{"rating":4,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Jackson Evans","reviewerEmail":"jackson.evans@x.dummyjson.com"},{"rating":3,"comment":"Not worth the price!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Sadie Morales","reviewerEmail":"sadie.morales@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":22,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"8829514594521","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/chicken-meat/1.webp","https://cdn.dummyjson.com/product-images/groceries/chicken-meat/2.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/chicken-meat/thumbnail.webp"},{"id":20,"title":"Cooking Oil","description":"Versatile cooking oil suitable for frying, sautéing, and various culinary applications.","category":"groceries","price":4.99,"discountPercentage":9.33,"rating":4.8,"stock":10,"tags":["cooking essentials"],"sku":"GRO-BRD-COO-020","weight":5,"dimensions":{"width":19.95,"height":27.54,"depth":24.86},"warrantyInformation":"Lifetime warranty","shippingInformation":"Ships in 1-2 business days","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Very happy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Victoria McDonald","reviewerEmail":"victoria.mcdonald@x.dummyjson.com"},{"rating":2,"comment":"Would not recommend!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Hazel Evans","reviewerEmail":"hazel.evans@x.dummyjson.com"},{"rating":5,"comment":"Would buy again!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Zoe Bennett","reviewerEmail":"zoe.bennett@x.dummyjson.com"}],"returnPolicy":"30 days return policy","minimumOrderQuantity":46,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"4874727824518","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/cooking-oil/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/cooking-oil/thumbnail.webp"},{"id":21,"title":"Cucumber","description":"Crisp and hydrating cucumbers, ideal for salads, snacks, or as a refreshing side.","category":"groceries","price":1.49,"discountPercentage":0.16,"rating":4.07,"stock":84,"tags":["vegetables"],"sku":"GRO-BRD-CUC-021","weight":4,"dimensions":{"width":12.8,"height":28.38,"depth":21.34},"warrantyInformation":"2 year warranty","shippingInformation":"Ships in 1-2 business days","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Great product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Lincoln Kelly","reviewerEmail":"lincoln.kelly@x.dummyjson.com"},{"rating":4,"comment":"Great value for money!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Savannah Gomez","reviewerEmail":"savannah.gomez@x.dummyjson.com"},{"rating":2,"comment":"Poor quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"James Davis","reviewerEmail":"james.davis@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":2,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"5300066378225","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/cucumber/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/cucumber/thumbnail.webp"},{"id":22,"title":"Dog Food","description":"Specially formulated dog food designed to provide essential nutrients for your canine companion.","category":"groceries","price":10.99,"discountPercentage":10.27,"rating":4.55,"stock":71,"tags":["pet supplies","dog food"],"sku":"GRO-BRD-FOO-022","weight":10,"dimensions":{"width":16.93,"height":27.15,"depth":9.29},"warrantyInformation":"No warranty","shippingInformation":"Ships in 1-2 business days","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Nicholas Edwards","reviewerEmail":"nicholas.edwards@x.dummyjson.com"},{"rating":5,"comment":"Awesome product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Zachary Lee","reviewerEmail":"zachary.lee@x.dummyjson.com"},{"rating":4,"comment":"Great product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Nova Cooper","reviewerEmail":"nova.cooper@x.dummyjson.com"}],"returnPolicy":"60 days return policy","minimumOrderQuantity":43,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"5906686116469","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/dog-food/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/dog-food/thumbnail.webp"},{"id":23,"title":"Eggs","description":"Fresh eggs, a versatile ingredient for baking, cooking, or breakfast.","category":"groceries","price":2.99,"discountPercentage":11.05,"rating":2.53,"stock":9,"tags":["dairy"],"sku":"GRO-BRD-EGG-023","weight":2,"dimensions":{"width":11.42,"height":7.44,"depth":16.95},"warrantyInformation":"1 week warranty","shippingInformation":"Ships in 1 week","availabilityStatus":"In Stock","reviews":[{"rating":3,"comment":"Disappointing product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Penelope King","reviewerEmail":"penelope.king@x.dummyjson.com"},{"rating":3,"comment":"Poor quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Eleanor Tyler","reviewerEmail":"eleanor.tyler@x.dummyjson.com"},{"rating":4,"comment":"Very pleased!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Benjamin Foster","reviewerEmail":"benjamin.foster@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":32,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"3478638588469","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/eggs/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/eggs/thumbnail.webp"},{"id":24,"title":"Fish Steak","description":"Quality fish steak, suitable for grilling, baking, or pan-searing.","category":"groceries","price":14.99,"discountPercentage":4.23,"rating":3.78,"stock":74,"tags":["seafood"],"sku":"GRO-BRD-FIS-024","weight":6,"dimensions":{"width":14.95,"height":26.31,"depth":11.27},"warrantyInformation":"1 month warranty","shippingInformation":"Ships in 3-5 business days","availabilityStatus":"In Stock","reviews":[{"rating":2,"comment":"Would not buy again!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Caleb Perkins","reviewerEmail":"caleb.perkins@x.dummyjson.com"},{"rating":5,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Isabella Jackson","reviewerEmail":"isabella.jackson@x.dummyjson.com"},{"rating":4,"comment":"Great value for money!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Nathan Dixon","reviewerEmail":"nathan.dixon@x.dummyjson.com"}],"returnPolicy":"60 days return policy","minimumOrderQuantity":50,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"9595036192098","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/fish-steak/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/fish-steak/thumbnail.webp"},{"id":25,"title":"Green Bell Pepper","description":"Fresh and vibrant green bell pepper, perfect for adding color and flavor to your dishes.","category":"groceries","price":1.29,"discountPercentage":0.16,"rating":3.25,"stock":33,"tags":["vegetables"],"sku":"GRO-BRD-GRE-025","weight":2,"dimensions":{"width":15.33,"height":26.65,"depth":14.44},"warrantyInformation":"1 month warranty","shippingInformation":"Ships in 1 week","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Avery Carter","reviewerEmail":"avery.carter@x.dummyjson.com"},{"rating":3,"comment":"Would not recommend!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Henry Hill","reviewerEmail":"henry.hill@x.dummyjson.com"},{"rating":5,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Addison Wright","reviewerEmail":"addison.wright@x.dummyjson.com"}],"returnPolicy":"30 days return policy","minimumOrderQuantity":12,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"2365227493323","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/green-bell-pepper/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/green-bell-pepper/thumbnail.webp"},{"id":26,"title":"Green Chili Pepper","description":"Spicy green chili pepper, ideal for adding heat to your favorite recipes.","category":"groceries","price":0.99,"discountPercentage":1,"rating":3.66,"stock":3,"tags":["vegetables"],"sku":"GRO-BRD-GRE-026","weight":7,"dimensions":{"width":15.38,"height":18.12,"depth":19.92},"warrantyInformation":"2 year warranty","shippingInformation":"Ships in 1 week","availabilityStatus":"Low Stock","reviews":[{"rating":4,"comment":"Great product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Luna Russell","reviewerEmail":"luna.russell@x.dummyjson.com"},{"rating":1,"comment":"Waste of money!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Noah Lewis","reviewerEmail":"noah.lewis@x.dummyjson.com"},{"rating":3,"comment":"Very disappointed!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Clara Berry","reviewerEmail":"clara.berry@x.dummyjson.com"}],"returnPolicy":"30 days return policy","minimumOrderQuantity":39,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"9335000538563","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/green-chili-pepper/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/green-chili-pepper/thumbnail.webp"},{"id":27,"title":"Honey Jar","description":"Pure and natural honey in a convenient jar, perfect for sweetening beverages or drizzling over food.","category":"groceries","price":6.99,"discountPercentage":14.4,"rating":3.97,"stock":34,"tags":["condiments"],"sku":"GRO-BRD-HON-027","weight":2,"dimensions":{"width":9.28,"height":21.72,"depth":17.74},"warrantyInformation":"1 month warranty","shippingInformation":"Ships in 1-2 business days","availabilityStatus":"In Stock","reviews":[{"rating":1,"comment":"Very disappointed!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Autumn Gomez","reviewerEmail":"autumn.gomez@x.dummyjson.com"},{"rating":4,"comment":"Highly impressed!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Benjamin Wilson","reviewerEmail":"benjamin.wilson@x.dummyjson.com"},{"rating":2,"comment":"Very disappointed!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Nicholas Edwards","reviewerEmail":"nicholas.edwards@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":47,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"6354306346329","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/honey-jar/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/honey-jar/thumbnail.webp"},{"id":28,"title":"Ice Cream","description":"Creamy and delicious ice cream, available in various flavors for a delightful treat.","category":"groceries","price":5.49,"discountPercentage":8.69,"rating":3.39,"stock":27,"tags":["desserts"],"sku":"GRO-BRD-CRE-028","weight":1,"dimensions":{"width":14.83,"height":15.07,"depth":24.2},"warrantyInformation":"1 month warranty","shippingInformation":"Ships in 2 weeks","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Very pleased!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Elijah Cruz","reviewerEmail":"elijah.cruz@x.dummyjson.com"},{"rating":4,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Jace Smith","reviewerEmail":"jace.smith@x.dummyjson.com"},{"rating":5,"comment":"Highly impressed!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Sadie Morales","reviewerEmail":"sadie.morales@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":42,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"0788954559076","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/ice-cream/1.webp","https://cdn.dummyjson.com/product-images/groceries/ice-cream/2.webp","https://cdn.dummyjson.com/product-images/groceries/ice-cream/3.webp","https://cdn.dummyjson.com/product-images/groceries/ice-cream/4.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/ice-cream/thumbnail.webp"},{"id":29,"title":"Juice","description":"Refreshing fruit juice, packed with vitamins and great for staying hydrated.","category":"groceries","price":3.99,"discountPercentage":12.06,"rating":3.94,"stock":50,"tags":["beverages"],"sku":"GRO-BRD-JUI-029","weight":1,"dimensions":{"width":18.56,"height":21.46,"depth":28.02},"warrantyInformation":"6 months warranty","shippingInformation":"Ships in 1 week","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Nolan Gonzalez","reviewerEmail":"nolan.gonzalez@x.dummyjson.com"},{"rating":4,"comment":"Would buy again!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Bella Grant","reviewerEmail":"bella.grant@x.dummyjson.com"},{"rating":5,"comment":"Awesome product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Aria Flores","reviewerEmail":"aria.flores@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":25,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"6936112580956","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/juice/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/juice/thumbnail.webp"},{"id":30,"title":"Kiwi","description":"Nutrient-rich kiwi, perfect for snacking or adding a tropical twist to your dishes.","category":"groceries","price":2.49,"discountPercentage":15.22,"rating":4.93,"stock":99,"tags":["fruits"],"sku":"GRO-BRD-KIW-030","weight":5,"dimensions":{"width":19.4,"height":18.67,"depth":17.13},"warrantyInformation":"6 months warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Emily Brown","reviewerEmail":"emily.brown@x.dummyjson.com"},{"rating":2,"comment":"Would not buy again!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Jackson Morales","reviewerEmail":"jackson.morales@x.dummyjson.com"},{"rating":4,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Nora Russell","reviewerEmail":"nora.russell@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":30,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"2530169917252","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/kiwi/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/kiwi/thumbnail.webp"}],"total":194,"skip":0,"limit":30}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Products content is correct | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 3 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Retrieves detailed information about a specific product by its unique identifier.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/products/20`
## Authentication
- **Required**: No
- This is a public endpoint that doesn't require authentication
## Parameters
### Path Variables
- `productId` (required) - The unique identifier of the product to retrieve
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
{
"id": 1,
"title": "Product Name",
"description": "Product description",
"price": 549,
"discountPercentage": 12.96,
"rating": 4.69,
"stock": 94,
"brand": "Brand Name",
"category": "Category Name",
"thumbnail": "image_url",
"images": ["image1_url", "image2_url"]
}
```
## Tests Included
- Validates response status code is 200
- Verifies product object structure and required fields
- Checks data types for numeric and string fields
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjcsImV4cCI6MTc2OTk2NDc2N30.GZCUVvd0dz0StrtG1qYL4I5ptF4oYmGzmo6UUvIzx7o |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | c0f69da0-e512-4ddb-8d09-c4d8becc9e6d |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjgsImV4cCI6MTc2OTk2Mjk2OH0.YBAfjxIdnj23YvRfMfsLLiM8QD-KCpxm5JeX6g5iot0; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjgsImV4cCI6MTc3MjU1MzE2OH0.e3x6QVuCW25JTOT-scFLoJaHoODcx4UpJLxL9xGB_zc |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:52:49 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 98 |
| x-ratelimit-reset | 1769961179 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"55c-epT06uXY62/BP4rliBoJwBxhmRc" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=ofl86vAhW3NPGDNO%2FYgUay3ld9Kx4qELUZvnQ1xt2aLkxBKiPFSKbyIfEZ9HVTAGbV7cpiCwxAyCV2qPCiJzuC0qOuVbtQkHgxB0Pxo%3D"}]} |
| CF-RAY | 9c729e3abad42891-AMM |
{"id":20,"title":"Cooking Oil","description":"Versatile cooking oil suitable for frying, sautéing, and various culinary applications.","category":"groceries","price":4.99,"discountPercentage":9.33,"rating":4.8,"stock":10,"tags":["cooking essentials"],"sku":"GRO-BRD-COO-020","weight":5,"dimensions":{"width":19.95,"height":27.54,"depth":24.86},"warrantyInformation":"Lifetime warranty","shippingInformation":"Ships in 1-2 business days","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Very happy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Victoria McDonald","reviewerEmail":"victoria.mcdonald@x.dummyjson.com"},{"rating":2,"comment":"Would not recommend!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Hazel Evans","reviewerEmail":"hazel.evans@x.dummyjson.com"},{"rating":5,"comment":"Would buy again!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Zoe Bennett","reviewerEmail":"zoe.bennett@x.dummyjson.com"}],"returnPolicy":"30 days return policy","minimumOrderQuantity":46,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"4874727824518","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/cooking-oil/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/cooking-oil/thumbnail.webp"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Searches for products based on a query string, returning all products that match the search criteria.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/products/search?q=phone`
## Authentication
- **Required**: No
- This is a public endpoint that doesn't require authentication
## Parameters
### Query Parameters
- `q` (required) - The search query string to find matching products
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
{
"products": [
{
"id": 1,
"title": "Product Name",
"description": "Product description",
"price": 549,
"category": "Category Name",
...
}
],
"total": 4,
"skip": 0,
"limit": 30
}
```
## Tests Included
- Validates response status code is 200
- Verifies products array exists
- Checks pagination metadata (total, skip, limit)
- Confirms search results match query criteria
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjcsImV4cCI6MTc2OTk2NDc2N30.GZCUVvd0dz0StrtG1qYL4I5ptF4oYmGzmo6UUvIzx7o |
| Content-Type | text/plain |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | ac91048a-91ae-4046-8508-2b3922770758 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 61 |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjgsImV4cCI6MTc2OTk2Mjk2OH0.YBAfjxIdnj23YvRfMfsLLiM8QD-KCpxm5JeX6g5iot0; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjgsImV4cCI6MTc3MjU1MzE2OH0.e3x6QVuCW25JTOT-scFLoJaHoODcx4UpJLxL9xGB_zc |
{
"username": "emilys",
"password": "emilyspass"
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:52:49 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 98 |
| x-ratelimit-reset | 1769961173 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"91a2-RFRCC1oz+o2Uvyk0nOQo9Pf5Q2g" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=J0vuAB17LEX2u3%2BnpfZUjFrKhdOJgLyvipvt%2F2kWmsaT76%2FChKeic6rEcOMqnVajLlEHOZEd6fWTyvO%2FNBG2KGntehoT1MtlmfWT2bk%3D"}]} |
| CF-RAY | 9c729e3c4d072891-AMM |
{"products":[{"id":101,"title":"Apple AirPods Max Silver","description":"The Apple AirPods Max in Silver are premium over-ear headphones with high-fidelity audio, adaptive EQ, and active noise cancellation. Experience immersive sound in style.","category":"mobile-accessories","price":549.99,"discountPercentage":13.67,"rating":3.47,"stock":59,"tags":["electronics","over-ear headphones"],"brand":"Apple","sku":"MOB-APP-APP-101","weight":2,"dimensions":{"width":24.88,"height":14.9,"depth":27.54},"warrantyInformation":"No warranty","shippingInformation":"Ships in 2 weeks","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Henry Adams","reviewerEmail":"henry.adams@x.dummyjson.com"},{"rating":4,"comment":"Very happy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Elijah Cruz","reviewerEmail":"elijah.cruz@x.dummyjson.com"},{"rating":4,"comment":"Would buy again!","date":"2025-04-30T09:41:02.053Z","reviewerName":"William Lopez","reviewerEmail":"william.lopez@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"4062176053732","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/mobile-accessories/apple-airpods-max-silver/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/mobile-accessories/apple-airpods-max-silver/thumbnail.webp"},{"id":104,"title":"Apple iPhone Charger","description":"The Apple iPhone Charger is a high-quality charger designed for fast and efficient charging of your iPhone. Ensure your device stays powered up and ready to go.","category":"mobile-accessories","price":19.99,"discountPercentage":18.52,"rating":4.15,"stock":31,"tags":["electronics","chargers"],"brand":"Apple","sku":"MOB-APP-APP-104","weight":1,"dimensions":{"width":13.63,"height":26.25,"depth":5.95},"warrantyInformation":"1 year warranty","shippingInformation":"Ships in 2 weeks","availabilityStatus":"In Stock","reviews":[{"rating":1,"comment":"Very disappointed!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Sadie Morales","reviewerEmail":"sadie.morales@x.dummyjson.com"},{"rating":5,"comment":"Great product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Lily Torres","reviewerEmail":"lily.torres@x.dummyjson.com"},{"rating":2,"comment":"Waste of money!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Luke Cooper","reviewerEmail":"luke.cooper@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":14,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"0879776541417","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/mobile-accessories/apple-iphone-charger/1.webp","https://cdn.dummyjson.com/product-images/mobile-accessories/apple-iphone-charger/2.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/mobile-accessories/apple-iphone-charger/thumbnail.webp"},{"id":105,"title":"Apple MagSafe Battery Pack","description":"The Apple MagSafe Battery Pack is a portable and convenient way to add extra battery life to your MagSafe-compatible iPhone. Attach it magnetically for a secure connection.","category":"mobile-accessories","price":99.99,"discountPercentage":17.17,"rating":3.62,"stock":1,"tags":["electronics","power banks"],"brand":"Apple","sku":"MOB-APP-APP-105","weight":6,"dimensions":{"width":15.4,"height":11.89,"depth":19.67},"warrantyInformation":"2 year warranty","shippingInformation":"Ships overnight","availabilityStatus":"Low Stock","reviews":[{"rating":2,"comment":"Would not recommend!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Stella Morris","reviewerEmail":"stella.morris@x.dummyjson.com"},{"rating":2,"comment":"Not as described!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Henry Adams","reviewerEmail":"henry.adams@x.dummyjson.com"},{"rating":5,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Cameron Burke","reviewerEmail":"cameron.burke@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":4,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"5157424897794","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/mobile-accessories/apple-magsafe-battery-pack/1.webp","https://cdn.dummyjson.com/product-images/mobile-accessories/apple-magsafe-battery-pack/2.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/mobile-accessories/apple-magsafe-battery-pack/thumbnail.webp"},{"id":107,"title":"Beats Flex Wireless Earphones","description":"The Beats Flex Wireless Earphones offer a comfortable and versatile audio experience. With magnetic earbuds and up to 12 hours of battery life, they are ideal for everyday use.","category":"mobile-accessories","price":49.99,"discountPercentage":5.73,"rating":4.24,"stock":50,"tags":["electronics","wireless earphones"],"brand":"Beats","sku":"MOB-BEA-BEA-107","weight":8,"dimensions":{"width":17.86,"height":25.74,"depth":23.09},"warrantyInformation":"1 year warranty","shippingInformation":"Ships in 1-2 business days","availabilityStatus":"In Stock","reviews":[{"rating":2,"comment":"Disappointing product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"William Gonzalez","reviewerEmail":"william.gonzalez@x.dummyjson.com"},{"rating":5,"comment":"Very pleased!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Gabriel Mitchell","reviewerEmail":"gabriel.mitchell@x.dummyjson.com"},{"rating":2,"comment":"Not worth the price!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Gabriel Adams","reviewerEmail":"gabriel.adams@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":17,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"1741271692174","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/mobile-accessories/beats-flex-wireless-earphones/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/mobile-accessories/beats-flex-wireless-earphones/thumbnail.webp"},{"id":108,"title":"iPhone 12 Silicone Case with MagSafe Plum","description":"The iPhone 12 Silicone Case with MagSafe in Plum is a stylish and protective case designed for the iPhone 12. It features MagSafe technology for easy attachment of accessories.","category":"mobile-accessories","price":29.99,"discountPercentage":13.85,"rating":3.62,"stock":69,"tags":["electronics","phone accessories"],"brand":"Apple","sku":"MOB-APP-IPH-108","weight":7,"dimensions":{"width":12.49,"height":11.29,"depth":23.52},"warrantyInformation":"3 months warranty","shippingInformation":"Ships in 3-5 business days","availabilityStatus":"In Stock","reviews":[{"rating":2,"comment":"Would not buy again!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Penelope King","reviewerEmail":"penelope.king@x.dummyjson.com"},{"rating":5,"comment":"Great value for money!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Isabella Anderson","reviewerEmail":"isabella.anderson@x.dummyjson.com"},{"rating":5,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Claire Foster","reviewerEmail":"claire.foster@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":4,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"8156838251449","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/mobile-accessories/iphone-12-silicone-case-with-magsafe-plum/1.webp","https://cdn.dummyjson.com/product-images/mobile-accessories/iphone-12-silicone-case-with-magsafe-plum/2.webp","https://cdn.dummyjson.com/product-images/mobile-accessories/iphone-12-silicone-case-with-magsafe-plum/3.webp","https://cdn.dummyjson.com/product-images/mobile-accessories/iphone-12-silicone-case-with-magsafe-plum/4.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/mobile-accessories/iphone-12-silicone-case-with-magsafe-plum/thumbnail.webp"},{"id":110,"title":"Selfie Lamp with iPhone","description":"The Selfie Lamp with iPhone is a portable and adjustable LED light designed to enhance your selfies and video calls. Attach it to your iPhone for well-lit photos.","category":"mobile-accessories","price":14.99,"discountPercentage":19.4,"rating":3.55,"stock":58,"tags":["electronics","selfie accessories"],"brand":"GadgetMaster","sku":"MOB-GAD-SEL-110","weight":10,"dimensions":{"width":5.26,"height":13.84,"depth":22.83},"warrantyInformation":"Lifetime warranty","shippingInformation":"Ships in 2 weeks","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Luke Cooper","reviewerEmail":"luke.cooper@x.dummyjson.com"},{"rating":3,"comment":"Poor quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Caleb Perkins","reviewerEmail":"caleb.perkins@x.dummyjson.com"},{"rating":4,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Benjamin Wilson","reviewerEmail":"benjamin.wilson@x.dummyjson.com"}],"returnPolicy":"60 days return policy","minimumOrderQuantity":22,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"4372781189895","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/mobile-accessories/selfie-lamp-with-iphone/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/mobile-accessories/selfie-lamp-with-iphone/thumbnail.webp"},{"id":111,"title":"Selfie Stick Monopod","description":"The Selfie Stick Monopod is a extendable and foldable device for capturing the perfect selfie or group photo. Compatible with smartphones and cameras.","category":"mobile-accessories","price":12.99,"discountPercentage":19.12,"rating":3.88,"stock":11,"tags":["electronics","selfie accessories"],"brand":"SnapTech","sku":"MOB-SNA-SEL-111","weight":2,"dimensions":{"width":24.76,"height":26.38,"depth":21.39},"warrantyInformation":"3 year warranty","shippingInformation":"Ships in 1-2 business days","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Great product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Ryan Graham","reviewerEmail":"ryan.graham@x.dummyjson.com"},{"rating":4,"comment":"Great product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Nora Russell","reviewerEmail":"nora.russell@x.dummyjson.com"},{"rating":1,"comment":"Very dissatisfied!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Luna Perez","reviewerEmail":"luna.perez@x.dummyjson.com"}],"returnPolicy":"30 days return policy","minimumOrderQuantity":8,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"7063982050226","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/mobile-accessories/selfie-stick-monopod/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/mobile-accessories/selfie-stick-monopod/thumbnail.webp"},{"id":121,"title":"iPhone 5s","description":"The iPhone 5s is a classic smartphone known for its compact design and advanced features during its release. While it's an older model, it still provides a reliable user experience.","category":"smartphones","price":199.99,"discountPercentage":12.91,"rating":2.83,"stock":25,"tags":["smartphones","apple"],"brand":"Apple","sku":"SMA-APP-IPH-121","weight":2,"dimensions":{"width":5.29,"height":18.38,"depth":17.72},"warrantyInformation":"Lifetime warranty","shippingInformation":"Ships in 1 month","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Jace Smith","reviewerEmail":"jace.smith@x.dummyjson.com"},{"rating":1,"comment":"Not as described!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Logan Torres","reviewerEmail":"logan.torres@x.dummyjson.com"},{"rating":5,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Harper Kelly","reviewerEmail":"harper.kelly@x.dummyjson.com"}],"returnPolicy":"60 days return policy","minimumOrderQuantity":3,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"8814683940853","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/iphone-5s/1.webp","https://cdn.dummyjson.com/product-images/smartphones/iphone-5s/2.webp","https://cdn.dummyjson.com/product-images/smartphones/iphone-5s/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/iphone-5s/thumbnail.webp"},{"id":122,"title":"iPhone 6","description":"The iPhone 6 is a stylish and capable smartphone with a larger display and improved performance. It introduced new features and design elements, making it a popular choice in its time.","category":"smartphones","price":299.99,"discountPercentage":6.69,"rating":3.41,"stock":60,"tags":["smartphones","apple"],"brand":"Apple","sku":"SMA-APP-IPH-122","weight":7,"dimensions":{"width":11,"height":9.1,"depth":9.67},"warrantyInformation":"1 month warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":3,"comment":"Disappointing product!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Stella Morris","reviewerEmail":"stella.morris@x.dummyjson.com"},{"rating":4,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Nolan Gonzalez","reviewerEmail":"nolan.gonzalez@x.dummyjson.com"},{"rating":5,"comment":"Great value for money!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Benjamin Foster","reviewerEmail":"benjamin.foster@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":5,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"9922357685013","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/iphone-6/1.webp","https://cdn.dummyjson.com/product-images/smartphones/iphone-6/2.webp","https://cdn.dummyjson.com/product-images/smartphones/iphone-6/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/iphone-6/thumbnail.webp"},{"id":123,"title":"iPhone 13 Pro","description":"The iPhone 13 Pro is a cutting-edge smartphone with a powerful camera system, high-performance chip, and stunning display. It offers advanced features for users who demand top-notch technology.","category":"smartphones","price":1099.99,"discountPercentage":9.37,"rating":4.12,"stock":56,"tags":["smartphones","apple"],"brand":"Apple","sku":"SMA-APP-IPH-123","weight":8,"dimensions":{"width":12.63,"height":5.28,"depth":14.29},"warrantyInformation":"3 year warranty","shippingInformation":"Ships in 2 weeks","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Would buy again!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Christian Perez","reviewerEmail":"christian.perez@x.dummyjson.com"},{"rating":3,"comment":"Not worth the price!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Liam Gonzalez","reviewerEmail":"liam.gonzalez@x.dummyjson.com"},{"rating":5,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Tristan Scott","reviewerEmail":"tristan.scott@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"4998438802308","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/iphone-13-pro/1.webp","https://cdn.dummyjson.com/product-images/smartphones/iphone-13-pro/2.webp","https://cdn.dummyjson.com/product-images/smartphones/iphone-13-pro/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/iphone-13-pro/thumbnail.webp"},{"id":124,"title":"iPhone X","description":"The iPhone X is a flagship smartphone featuring a bezel-less OLED display, facial recognition technology (Face ID), and impressive performance. It represents a milestone in iPhone design and innovation.","category":"smartphones","price":899.99,"discountPercentage":19.59,"rating":2.51,"stock":37,"tags":["smartphones","apple"],"brand":"Apple","sku":"SMA-APP-IPH-124","weight":1,"dimensions":{"width":21.88,"height":24.19,"depth":14.19},"warrantyInformation":"3 months warranty","shippingInformation":"Ships in 3-5 business days","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Tyler Davis","reviewerEmail":"tyler.davis@x.dummyjson.com"},{"rating":5,"comment":"Great product!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Aria Parker","reviewerEmail":"aria.parker@x.dummyjson.com"},{"rating":2,"comment":"Not as described!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Lily Torres","reviewerEmail":"lily.torres@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":2,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"3034949322264","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/iphone-x/1.webp","https://cdn.dummyjson.com/product-images/smartphones/iphone-x/2.webp","https://cdn.dummyjson.com/product-images/smartphones/iphone-x/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/iphone-x/thumbnail.webp"},{"id":125,"title":"Oppo A57","description":"The Oppo A57 is a mid-range smartphone known for its sleek design and capable features. It offers a balance of performance and affordability, making it a popular choice.","category":"smartphones","price":249.99,"discountPercentage":2.43,"rating":3.94,"stock":19,"tags":["smartphones","oppo"],"brand":"Oppo","sku":"SMA-OPP-OPP-125","weight":5,"dimensions":{"width":7.2,"height":10.74,"depth":23.68},"warrantyInformation":"Lifetime warranty","shippingInformation":"Ships in 3-5 business days","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Scarlett Wright","reviewerEmail":"scarlett.wright@x.dummyjson.com"},{"rating":5,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Jacob Cooper","reviewerEmail":"jacob.cooper@x.dummyjson.com"},{"rating":2,"comment":"Poor quality!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Zoe Nicholson","reviewerEmail":"zoe.nicholson@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":3,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"0651223722522","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/oppo-a57/1.webp","https://cdn.dummyjson.com/product-images/smartphones/oppo-a57/2.webp","https://cdn.dummyjson.com/product-images/smartphones/oppo-a57/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/oppo-a57/thumbnail.webp"},{"id":126,"title":"Oppo F19 Pro Plus","description":"The Oppo F19 Pro Plus is a feature-rich smartphone with a focus on camera capabilities. It boasts advanced photography features and a powerful performance for a premium user experience.","category":"smartphones","price":399.99,"discountPercentage":18.64,"rating":3.51,"stock":78,"tags":["smartphones","oppo"],"brand":"Oppo","sku":"SMA-OPP-OPP-126","weight":6,"dimensions":{"width":6.78,"height":25.17,"depth":8.4},"warrantyInformation":"3 year warranty","shippingInformation":"Ships in 1 week","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Very happy with my purchase!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Emily Johnson","reviewerEmail":"emily.johnson@x.dummyjson.com"},{"rating":5,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Jaxon Barnes","reviewerEmail":"jaxon.barnes@x.dummyjson.com"},{"rating":4,"comment":"Would buy again!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Nova Cooper","reviewerEmail":"nova.cooper@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"8576893968169","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/oppo-f19-pro-plus/1.webp","https://cdn.dummyjson.com/product-images/smartphones/oppo-f19-pro-plus/2.webp","https://cdn.dummyjson.com/product-images/smartphones/oppo-f19-pro-plus/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/oppo-f19-pro-plus/thumbnail.webp"},{"id":127,"title":"Oppo K1","description":"The Oppo K1 series offers a range of smartphones with various features and specifications. Known for their stylish design and reliable performance, the Oppo K1 series caters to diverse user preferences.","category":"smartphones","price":299.99,"discountPercentage":18.29,"rating":4.25,"stock":55,"tags":["smartphones","oppo"],"brand":"Oppo","sku":"SMA-OPP-OPP-127","weight":5,"dimensions":{"width":13.89,"height":10.63,"depth":16.6},"warrantyInformation":"1 month warranty","shippingInformation":"Ships in 1-2 business days","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Very pleased!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Christopher West","reviewerEmail":"christopher.west@x.dummyjson.com"},{"rating":4,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Mia Miller","reviewerEmail":"mia.miller@x.dummyjson.com"},{"rating":2,"comment":"Very dissatisfied!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Ella Adams","reviewerEmail":"ella.adams@x.dummyjson.com"}],"returnPolicy":"30 days return policy","minimumOrderQuantity":5,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"3106827888743","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/oppo-k1/1.webp","https://cdn.dummyjson.com/product-images/smartphones/oppo-k1/2.webp","https://cdn.dummyjson.com/product-images/smartphones/oppo-k1/3.webp","https://cdn.dummyjson.com/product-images/smartphones/oppo-k1/4.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/oppo-k1/thumbnail.webp"},{"id":128,"title":"Realme C35","description":"The Realme C35 is a budget-friendly smartphone with a focus on providing essential features for everyday use. It offers a reliable performance and user-friendly experience.","category":"smartphones","price":149.99,"discountPercentage":15.3,"rating":4.2,"stock":48,"tags":["smartphones","realme"],"brand":"Realme","sku":"SMA-REA-REA-128","weight":2,"dimensions":{"width":25.28,"height":8.14,"depth":29.53},"warrantyInformation":"3 year warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Great product!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Penelope King","reviewerEmail":"penelope.king@x.dummyjson.com"},{"rating":2,"comment":"Very unhappy with my purchase!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Asher Scott","reviewerEmail":"asher.scott@x.dummyjson.com"},{"rating":4,"comment":"Highly impressed!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Henry Adams","reviewerEmail":"henry.adams@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":3,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"7825844344364","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/realme-c35/1.webp","https://cdn.dummyjson.com/product-images/smartphones/realme-c35/2.webp","https://cdn.dummyjson.com/product-images/smartphones/realme-c35/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/realme-c35/thumbnail.webp"},{"id":129,"title":"Realme X","description":"The Realme X is a mid-range smartphone known for its sleek design and impressive display. It offers a good balance of performance and camera capabilities for users seeking a quality device.","category":"smartphones","price":299.99,"discountPercentage":6.95,"rating":3.7,"stock":12,"tags":["smartphones","realme"],"brand":"Realme","sku":"SMA-REA-REA-129","weight":4,"dimensions":{"width":25.59,"height":21.42,"depth":12.75},"warrantyInformation":"1 month warranty","shippingInformation":"Ships in 3-5 business days","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Would buy again!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Hazel Evans","reviewerEmail":"hazel.evans@x.dummyjson.com"},{"rating":5,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Brayden Fleming","reviewerEmail":"brayden.fleming@x.dummyjson.com"},{"rating":5,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Madison Stewart","reviewerEmail":"madison.stewart@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":3,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"4948452391831","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/realme-x/1.webp","https://cdn.dummyjson.com/product-images/smartphones/realme-x/2.webp","https://cdn.dummyjson.com/product-images/smartphones/realme-x/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/realme-x/thumbnail.webp"},{"id":130,"title":"Realme XT","description":"The Realme XT is a feature-rich smartphone with a focus on camera technology. It comes equipped with advanced camera sensors, delivering high-quality photos and videos for photography enthusiasts.","category":"smartphones","price":349.99,"discountPercentage":11.51,"rating":4.58,"stock":80,"tags":["smartphones","realme"],"brand":"Realme","sku":"SMA-REA-REA-130","weight":3,"dimensions":{"width":24.98,"height":26.73,"depth":6.5},"warrantyInformation":"3 year warranty","shippingInformation":"Ships in 1 month","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Emily Brown","reviewerEmail":"emily.brown@x.dummyjson.com"},{"rating":3,"comment":"Not as described!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Ella Cook","reviewerEmail":"ella.cook@x.dummyjson.com"},{"rating":5,"comment":"Would buy again!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Layla Sullivan","reviewerEmail":"layla.sullivan@x.dummyjson.com"}],"returnPolicy":"60 days return policy","minimumOrderQuantity":3,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"6151817227632","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/realme-xt/1.webp","https://cdn.dummyjson.com/product-images/smartphones/realme-xt/2.webp","https://cdn.dummyjson.com/product-images/smartphones/realme-xt/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/realme-xt/thumbnail.webp"},{"id":131,"title":"Samsung Galaxy S7","description":"The Samsung Galaxy S7 is a flagship smartphone known for its sleek design and advanced features. It features a high-resolution display, powerful camera, and robust performance.","category":"smartphones","price":299.99,"discountPercentage":19.55,"rating":3.3,"stock":67,"tags":["smartphones","samsung galaxy"],"brand":"Samsung","sku":"SMA-SAM-SAM-131","weight":10,"dimensions":{"width":13.55,"height":24.24,"depth":5.63},"warrantyInformation":"3 months warranty","shippingInformation":"Ships in 3-5 business days","availabilityStatus":"In Stock","reviews":[{"rating":1,"comment":"Not as described!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Julian James","reviewerEmail":"julian.james@x.dummyjson.com"},{"rating":4,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Lucas Gordon","reviewerEmail":"lucas.gordon@x.dummyjson.com"},{"rating":4,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Ava Taylor","reviewerEmail":"ava.taylor@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"7557912146622","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s7/1.webp","https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s7/2.webp","https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s7/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s7/thumbnail.webp"},{"id":132,"title":"Samsung Galaxy S8","description":"The Samsung Galaxy S8 is a premium smartphone with an Infinity Display, offering a stunning visual experience. It boasts advanced camera capabilities and cutting-edge technology.","category":"smartphones","price":499.99,"discountPercentage":19.45,"rating":4.4,"stock":0,"tags":["smartphones","samsung galaxy"],"brand":"Samsung","sku":"SMA-SAM-SAM-132","weight":6,"dimensions":{"width":23.05,"height":26.88,"depth":15.73},"warrantyInformation":"2 year warranty","shippingInformation":"Ships in 1 week","availabilityStatus":"Out of Stock","reviews":[{"rating":4,"comment":"Highly impressed!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Owen Fisher","reviewerEmail":"owen.fisher@x.dummyjson.com"},{"rating":4,"comment":"Highly impressed!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Clara Berry","reviewerEmail":"clara.berry@x.dummyjson.com"},{"rating":4,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Tyler Davis","reviewerEmail":"tyler.davis@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":4,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"5995499013336","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s8/1.webp","https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s8/2.webp","https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s8/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s8/thumbnail.webp"},{"id":133,"title":"Samsung Galaxy S10","description":"The Samsung Galaxy S10 is a flagship device featuring a dynamic AMOLED display, versatile camera system, and powerful performance. It represents innovation and excellence in smartphone technology.","category":"smartphones","price":699.99,"discountPercentage":5.59,"rating":3.06,"stock":19,"tags":["smartphones","samsung galaxy"],"brand":"Samsung","sku":"SMA-SAM-SAM-133","weight":9,"dimensions":{"width":27.41,"height":15.26,"depth":27.02},"warrantyInformation":"No warranty","shippingInformation":"Ships in 2 weeks","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Tristan Scott","reviewerEmail":"tristan.scott@x.dummyjson.com"},{"rating":5,"comment":"Would buy again!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Christopher West","reviewerEmail":"christopher.west@x.dummyjson.com"},{"rating":2,"comment":"Would not recommend!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Amelia Perez","reviewerEmail":"amelia.perez@x.dummyjson.com"}],"returnPolicy":"30 days return policy","minimumOrderQuantity":2,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"4676898229465","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s10/1.webp","https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s10/2.webp","https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s10/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s10/thumbnail.webp"},{"id":134,"title":"Vivo S1","description":"The Vivo S1 is a stylish and mid-range smartphone offering a blend of design and performance. It features a vibrant display, capable camera system, and reliable functionality.","category":"smartphones","price":249.99,"discountPercentage":10.17,"rating":3.5,"stock":50,"tags":["smartphones","vivo"],"brand":"Vivo","sku":"SMA-VIV-VIV-134","weight":4,"dimensions":{"width":14.06,"height":11.79,"depth":6.78},"warrantyInformation":"6 months warranty","shippingInformation":"Ships in 3-5 business days","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Samantha Martinez","reviewerEmail":"samantha.martinez@x.dummyjson.com"},{"rating":3,"comment":"Very disappointed!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Logan Lee","reviewerEmail":"logan.lee@x.dummyjson.com"},{"rating":4,"comment":"Would buy again!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Sophia Jones","reviewerEmail":"sophia.jones@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"8575699153333","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/vivo-s1/1.webp","https://cdn.dummyjson.com/product-images/smartphones/vivo-s1/2.webp","https://cdn.dummyjson.com/product-images/smartphones/vivo-s1/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/vivo-s1/thumbnail.webp"},{"id":135,"title":"Vivo V9","description":"The Vivo V9 is a smartphone known for its sleek design and emphasis on capturing high-quality selfies. It features a notch display, dual-camera setup, and a modern design.","category":"smartphones","price":299.99,"discountPercentage":17.67,"rating":3.6,"stock":82,"tags":["smartphones","vivo"],"brand":"Vivo","sku":"SMA-VIV-VIV-135","weight":4,"dimensions":{"width":19.85,"height":21.83,"depth":13.04},"warrantyInformation":"2 year warranty","shippingInformation":"Ships in 1 month","availabilityStatus":"In Stock","reviews":[{"rating":2,"comment":"Very unhappy with my purchase!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Logan Lawson","reviewerEmail":"logan.lawson@x.dummyjson.com"},{"rating":5,"comment":"Awesome product!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Layla Young","reviewerEmail":"layla.young@x.dummyjson.com"},{"rating":4,"comment":"Great value for money!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Asher Scott","reviewerEmail":"asher.scott@x.dummyjson.com"}],"returnPolicy":"60 days return policy","minimumOrderQuantity":2,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"4295398764784","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/vivo-v9/1.webp","https://cdn.dummyjson.com/product-images/smartphones/vivo-v9/2.webp","https://cdn.dummyjson.com/product-images/smartphones/vivo-v9/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/vivo-v9/thumbnail.webp"},{"id":136,"title":"Vivo X21","description":"The Vivo X21 is a premium smartphone with a focus on cutting-edge technology. It features an in-display fingerprint sensor, a high-resolution display, and advanced camera capabilities.","category":"smartphones","price":499.99,"discountPercentage":17.41,"rating":4.26,"stock":7,"tags":["smartphones","vivo"],"brand":"Vivo","sku":"SMA-VIV-VIV-136","weight":10,"dimensions":{"width":22.49,"height":21.62,"depth":27.88},"warrantyInformation":"1 year warranty","shippingInformation":"Ships in 1-2 business days","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Very pleased!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Liam Gonzalez","reviewerEmail":"liam.gonzalez@x.dummyjson.com"},{"rating":4,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Aurora Barnes","reviewerEmail":"aurora.barnes@x.dummyjson.com"},{"rating":2,"comment":"Not as described!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Evelyn Walker","reviewerEmail":"evelyn.walker@x.dummyjson.com"}],"returnPolicy":"60 days return policy","minimumOrderQuantity":3,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"9944308291810","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/vivo-x21/1.webp","https://cdn.dummyjson.com/product-images/smartphones/vivo-x21/2.webp","https://cdn.dummyjson.com/product-images/smartphones/vivo-x21/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/vivo-x21/thumbnail.webp"}],"total":23,"skip":0,"limit":23}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response has products array | 1 | 0 | 0 |
| Search result is not empty | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 4 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Retrieves a paginated list of products with specific fields selected, demonstrating pagination and field filtering capabilities.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/products?limit=10&skip=10&select=title,price`
## Authentication
- **Required**: No
- This is a public endpoint that doesn't require authentication
## Parameters
### Query Parameters
- `limit` (optional) - Number of products to return (default: 30)
- `skip` (optional) - Number of products to skip for pagination (default: 0)
- `select` (optional) - Comma-separated list of fields to include in response
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
{
"products": [
{
"id": 11,
"title": "Product Name",
"price": 549
}
],
"total": 194,
"skip": 10,
"limit": 10
}
```
## Tests Included
- Validates response status code is 200
- Verifies correct number of products returned (limit)
- Checks pagination offset (skip)
- Confirms only selected fields are present in response
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjcsImV4cCI6MTc2OTk2NDc2N30.GZCUVvd0dz0StrtG1qYL4I5ptF4oYmGzmo6UUvIzx7o |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | d82bf70b-3ca5-4f9f-9006-e29d5b10f064 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjgsImV4cCI6MTc2OTk2Mjk2OH0.YBAfjxIdnj23YvRfMfsLLiM8QD-KCpxm5JeX6g5iot0; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjgsImV4cCI6MTc3MjU1MzE2OH0.e3x6QVuCW25JTOT-scFLoJaHoODcx4UpJLxL9xGB_zc |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:52:49 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 97 |
| x-ratelimit-reset | 1769961173 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"24c-Ixzqnac0wdL7dYxmEYVxYgj0DEw" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=53w24Y35VZ1VViWZ9BtnLymXDJdnlHKKjh0Y8%2BzrUDu6mM0Ly4EAp8BN9HVReuxnygnnWzrV23nTo4hojRFCl4RRJ559l3jC4XYyaZs%3D"}]} |
| Content-Encoding | br |
| CF-RAY | 9c729e3e2f122891-AMM |
{"products":[{"id":11,"title":"Annibale Colombo Bed","price":1899.99},{"id":12,"title":"Annibale Colombo Sofa","price":2499.99},{"id":13,"title":"Bedside Table African Cherry","price":299.99},{"id":14,"title":"Knoll Saarinen Executive Conference Chair","price":499.99},{"id":15,"title":"Wooden Bathroom Sink With Mirror","price":799.99},{"id":16,"title":"Apple","price":1.99},{"id":17,"title":"Beef Steak","price":12.99},{"id":18,"title":"Cat Food","price":8.99},{"id":19,"title":"Chicken Meat","price":9.99},{"id":20,"title":"Cooking Oil","price":4.99}],"total":194,"skip":10,"limit":10}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjcsImV4cCI6MTc2OTk2NDc2N30.GZCUVvd0dz0StrtG1qYL4I5ptF4oYmGzmo6UUvIzx7o |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 99b8dbd5-7f4b-49c7-a931-be8af89568a9 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjgsImV4cCI6MTc2OTk2Mjk2OH0.YBAfjxIdnj23YvRfMfsLLiM8QD-KCpxm5JeX6g5iot0; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjgsImV4cCI6MTc3MjU1MzE2OH0.e3x6QVuCW25JTOT-scFLoJaHoODcx4UpJLxL9xGB_zc |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:52:50 GMT |
| Content-Type | application/json; charset=utf-8 |
| Content-Length | 47 |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 98 |
| x-ratelimit-reset | 1769961177 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"2f-Dm0cDEBeWcz70gE8IkcQnAojjLY" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=uAjf0uKxrT%2B5yT%2FnY4QHgB4VNLi2rElYEIoYQGEWeqyZHsq26%2Bzmu6k6ZzXmfmIkw9JQ2AHfT5KP4brqjbNWBtgeDsjdQa%2BUEJ4KFuU%3D"}]} |
| CF-RAY | 9c729e3ff8d52891-AMM |
{"message":"Invalid 'skip' - must be a number"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 400 for invalid limit or skip | 1 | 0 | 0 |
| Error message is returned | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Retrieves all products sorted by a specific field in ascending or descending order.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/products?sortBy=title&order=asc`
## Authentication
- **Required**: No
- This is a public endpoint that doesn't require authentication
## Parameters
### Query Parameters
- `sortBy` (optional) - Field name to sort by (e.g., title, price, rating)
- `order` (optional) - Sort order: `asc` (ascending) or `desc` (descending)
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
{
"products": [
{
"id": 1,
"title": "A Product Name",
"price": 549,
...
}
],
"total": 194,
"skip": 0,
"limit": 30
}
```
## Tests Included
- Validates response status code is 200
- Verifies products array is sorted correctly
- Checks sort order matches requested order (asc/desc)
- Confirms all product fields are present
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjcsImV4cCI6MTc2OTk2NDc2N30.GZCUVvd0dz0StrtG1qYL4I5ptF4oYmGzmo6UUvIzx7o |
| Content-Type | text/plain |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 1f8c3b2a-e46c-4f8c-a5e1-48866fffa872 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 61 |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjgsImV4cCI6MTc2OTk2Mjk2OH0.YBAfjxIdnj23YvRfMfsLLiM8QD-KCpxm5JeX6g5iot0; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjgsImV4cCI6MTc3MjU1MzE2OH0.e3x6QVuCW25JTOT-scFLoJaHoODcx4UpJLxL9xGB_zc |
{
"username": "emilys",
"password": "emilyspass"
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:52:50 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 97 |
| x-ratelimit-reset | 1769961177 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"bb19-WvfGDU1qnETYvaDH9O+xwBDBd50" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=qCTYpMCGAPDfbXig%2BH5YhW%2FBHNHDn4oCziny217yuUAqaj5cq4ZXt2WuHyy3qV3tChOnt%2FWFuGVcTwYj9EsjilS0q0Y3A6FuU2gcfXM%3D"}]} |
| CF-RAY | 9c729e418a542891-AMM |
{"products":[{"id":167,"title":"300 Touring","description":"The 300 Touring is a stylish and comfortable sedan, known for its luxurious features and smooth performance.","category":"vehicle","price":28999.99,"discountPercentage":3.98,"rating":4.05,"stock":54,"tags":["sedans","vehicles"],"brand":"Chrysler","sku":"VEH-CHR-TOU-167","weight":9,"dimensions":{"width":19.2,"height":26.17,"depth":17.28},"warrantyInformation":"3 year warranty","shippingInformation":"Ships in 2 weeks","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Very pleased!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Luna Russell","reviewerEmail":"luna.russell@x.dummyjson.com"},{"rating":5,"comment":"Great product!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Harper Garcia","reviewerEmail":"harper.garcia@x.dummyjson.com"},{"rating":2,"comment":"Not as described!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Harper Turner","reviewerEmail":"harper.turner@x.dummyjson.com"}],"returnPolicy":"30 days return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"6337799339397","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/vehicle/300-touring/1.webp","https://cdn.dummyjson.com/product-images/vehicle/300-touring/2.webp","https://cdn.dummyjson.com/product-images/vehicle/300-touring/3.webp","https://cdn.dummyjson.com/product-images/vehicle/300-touring/4.webp","https://cdn.dummyjson.com/product-images/vehicle/300-touring/5.webp","https://cdn.dummyjson.com/product-images/vehicle/300-touring/6.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/vehicle/300-touring/thumbnail.webp"},{"id":99,"title":"Amazon Echo Plus","description":"The Amazon Echo Plus is a smart speaker with built-in Alexa voice control. It features premium sound quality and serves as a hub for controlling smart home devices.","category":"mobile-accessories","price":99.99,"discountPercentage":12.07,"rating":4.99,"stock":61,"tags":["electronics","smart speakers"],"brand":"Amazon","sku":"MOB-AMA-AMA-099","weight":5,"dimensions":{"width":12.68,"height":15.24,"depth":27.46},"warrantyInformation":"6 months warranty","shippingInformation":"Ships in 1 week","availabilityStatus":"In Stock","reviews":[{"rating":2,"comment":"Would not recommend!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Chloe Morales","reviewerEmail":"chloe.morales@x.dummyjson.com"},{"rating":3,"comment":"Very disappointed!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Mateo Perez","reviewerEmail":"mateo.perez@x.dummyjson.com"},{"rating":4,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Evelyn Walker","reviewerEmail":"evelyn.walker@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":9,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"2256117192038","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/mobile-accessories/amazon-echo-plus/1.webp","https://cdn.dummyjson.com/product-images/mobile-accessories/amazon-echo-plus/2.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/mobile-accessories/amazon-echo-plus/thumbnail.webp"},{"id":137,"title":"American Football","description":"The American Football is a classic ball used in American football games. It is designed for throwing and catching, making it an essential piece of equipment for the sport.","category":"sports-accessories","price":19.99,"discountPercentage":4.93,"rating":4.91,"stock":53,"tags":["sports equipment","american football"],"sku":"SPO-BRD-AME-137","weight":2,"dimensions":{"width":6.88,"height":5.82,"depth":21.96},"warrantyInformation":"6 months warranty","shippingInformation":"Ships in 1 month","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Awesome product!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Scarlett Bowman","reviewerEmail":"scarlett.bowman@x.dummyjson.com"},{"rating":4,"comment":"Would buy again!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Tristan Scott","reviewerEmail":"tristan.scott@x.dummyjson.com"},{"rating":4,"comment":"Very pleased!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Eleanor Tyler","reviewerEmail":"eleanor.tyler@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"0984311727547","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/sports-accessories/american-football/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/sports-accessories/american-football/thumbnail.webp"},{"id":11,"title":"Annibale Colombo Bed","description":"The Annibale Colombo Bed is a luxurious and elegant bed frame, crafted with high-quality materials for a comfortable and stylish bedroom.","category":"furniture","price":1899.99,"discountPercentage":8.57,"rating":4.77,"stock":88,"tags":["furniture","beds"],"brand":"Annibale Colombo","sku":"FUR-ANN-ANN-011","weight":10,"dimensions":{"width":28.16,"height":25.36,"depth":17.28},"warrantyInformation":"1 year warranty","shippingInformation":"Ships in 1 month","availabilityStatus":"In Stock","reviews":[{"rating":2,"comment":"Would not recommend!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Christopher West","reviewerEmail":"christopher.west@x.dummyjson.com"},{"rating":4,"comment":"Highly impressed!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Vivian Carter","reviewerEmail":"vivian.carter@x.dummyjson.com"},{"rating":1,"comment":"Poor quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Mason Wright","reviewerEmail":"mason.wright@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"3610757456581","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/furniture/annibale-colombo-bed/1.webp","https://cdn.dummyjson.com/product-images/furniture/annibale-colombo-bed/2.webp","https://cdn.dummyjson.com/product-images/furniture/annibale-colombo-bed/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/furniture/annibale-colombo-bed/thumbnail.webp"},{"id":12,"title":"Annibale Colombo Sofa","description":"The Annibale Colombo Sofa is a sophisticated and comfortable seating option, featuring exquisite design and premium upholstery for your living room.","category":"furniture","price":2499.99,"discountPercentage":14.4,"rating":3.92,"stock":60,"tags":["furniture","sofas"],"brand":"Annibale Colombo","sku":"FUR-ANN-ANN-012","weight":6,"dimensions":{"width":12.75,"height":20.55,"depth":19.06},"warrantyInformation":"Lifetime warranty","shippingInformation":"Ships in 1 week","availabilityStatus":"In Stock","reviews":[{"rating":3,"comment":"Very unhappy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Christian Perez","reviewerEmail":"christian.perez@x.dummyjson.com"},{"rating":5,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Lillian Bishop","reviewerEmail":"lillian.bishop@x.dummyjson.com"},{"rating":1,"comment":"Poor quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Lillian Simmons","reviewerEmail":"lillian.simmons@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"1777662847736","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/furniture/annibale-colombo-sofa/1.webp","https://cdn.dummyjson.com/product-images/furniture/annibale-colombo-sofa/2.webp","https://cdn.dummyjson.com/product-images/furniture/annibale-colombo-sofa/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/furniture/annibale-colombo-sofa/thumbnail.webp"},{"id":16,"title":"Apple","description":"Fresh and crisp apples, perfect for snacking or incorporating into various recipes.","category":"groceries","price":1.99,"discountPercentage":12.62,"rating":4.19,"stock":8,"tags":["fruits"],"sku":"GRO-BRD-APP-016","weight":9,"dimensions":{"width":13.66,"height":11.01,"depth":9.73},"warrantyInformation":"3 year warranty","shippingInformation":"Ships in 2 weeks","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Sophia Brown","reviewerEmail":"sophia.brown@x.dummyjson.com"},{"rating":1,"comment":"Very dissatisfied!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Scarlett Bowman","reviewerEmail":"scarlett.bowman@x.dummyjson.com"},{"rating":3,"comment":"Very unhappy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"William Gonzalez","reviewerEmail":"william.gonzalez@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":7,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"7962803553314","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/apple/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/apple/thumbnail.webp"},{"id":101,"title":"Apple AirPods Max Silver","description":"The Apple AirPods Max in Silver are premium over-ear headphones with high-fidelity audio, adaptive EQ, and active noise cancellation. Experience immersive sound in style.","category":"mobile-accessories","price":549.99,"discountPercentage":13.67,"rating":3.47,"stock":59,"tags":["electronics","over-ear headphones"],"brand":"Apple","sku":"MOB-APP-APP-101","weight":2,"dimensions":{"width":24.88,"height":14.9,"depth":27.54},"warrantyInformation":"No warranty","shippingInformation":"Ships in 2 weeks","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Henry Adams","reviewerEmail":"henry.adams@x.dummyjson.com"},{"rating":4,"comment":"Very happy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Elijah Cruz","reviewerEmail":"elijah.cruz@x.dummyjson.com"},{"rating":4,"comment":"Would buy again!","date":"2025-04-30T09:41:02.053Z","reviewerName":"William Lopez","reviewerEmail":"william.lopez@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"4062176053732","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/mobile-accessories/apple-airpods-max-silver/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/mobile-accessories/apple-airpods-max-silver/thumbnail.webp"},{"id":100,"title":"Apple Airpods","description":"The Apple Airpods offer a seamless wireless audio experience. With easy pairing, high-quality sound, and Siri integration, they are perfect for on-the-go listening.","category":"mobile-accessories","price":129.99,"discountPercentage":15.54,"rating":4.15,"stock":67,"tags":["electronics","wireless earphones"],"brand":"Apple","sku":"MOB-APP-APP-100","weight":4,"dimensions":{"width":25.79,"height":18.38,"depth":11.53},"warrantyInformation":"3 year warranty","shippingInformation":"Ships in 3-5 business days","availabilityStatus":"In Stock","reviews":[{"rating":3,"comment":"Would not buy again!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Christopher West","reviewerEmail":"christopher.west@x.dummyjson.com"},{"rating":5,"comment":"Great product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Emma Wilson","reviewerEmail":"emma.wilson@x.dummyjson.com"},{"rating":4,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Xavier Wright","reviewerEmail":"xavier.wright@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":4,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"1104115683955","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/mobile-accessories/apple-airpods/1.webp","https://cdn.dummyjson.com/product-images/mobile-accessories/apple-airpods/2.webp","https://cdn.dummyjson.com/product-images/mobile-accessories/apple-airpods/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/mobile-accessories/apple-airpods/thumbnail.webp"},{"id":102,"title":"Apple Airpower Wireless Charger","description":"The Apple AirPower Wireless Charger provides a convenient way to charge your compatible Apple devices wirelessly. Simply place your devices on the charging mat for effortless charging.","category":"mobile-accessories","price":79.99,"discountPercentage":4.48,"rating":3.68,"stock":1,"tags":["electronics","wireless chargers"],"brand":"Apple","sku":"MOB-APP-APP-102","weight":5,"dimensions":{"width":25.25,"height":25.44,"depth":10.98},"warrantyInformation":"2 year warranty","shippingInformation":"Ships in 1 week","availabilityStatus":"Low Stock","reviews":[{"rating":5,"comment":"Would buy again!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Christian Perez","reviewerEmail":"christian.perez@x.dummyjson.com"},{"rating":4,"comment":"Awesome product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Ruby Andrews","reviewerEmail":"ruby.andrews@x.dummyjson.com"},{"rating":3,"comment":"Not worth the price!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Harper Turner","reviewerEmail":"harper.turner@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":7,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"3323662242939","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/mobile-accessories/apple-airpower-wireless-charger/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/mobile-accessories/apple-airpower-wireless-charger/thumbnail.webp"},{"id":103,"title":"Apple HomePod Mini Cosmic Grey","description":"The Apple HomePod Mini in Cosmic Grey is a compact smart speaker that delivers impressive audio and integrates seamlessly with the Apple ecosystem for a smart home experience.","category":"mobile-accessories","price":99.99,"discountPercentage":18.1,"rating":4.62,"stock":27,"tags":["electronics","smart speakers"],"brand":"Apple","sku":"MOB-APP-APP-103","weight":10,"dimensions":{"width":16.02,"height":29.2,"depth":19.81},"warrantyInformation":"3 months warranty","shippingInformation":"Ships in 1 month","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Great product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Max Russell","reviewerEmail":"max.russell@x.dummyjson.com"},{"rating":3,"comment":"Would not buy again!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Isaac Lawrence","reviewerEmail":"isaac.lawrence@x.dummyjson.com"},{"rating":4,"comment":"Very pleased!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Avery Carter","reviewerEmail":"avery.carter@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":8,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"6135642608024","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/mobile-accessories/apple-homepod-mini-cosmic-grey/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/mobile-accessories/apple-homepod-mini-cosmic-grey/thumbnail.webp"},{"id":78,"title":"Apple MacBook Pro 14 Inch Space Grey","description":"The MacBook Pro 14 Inch in Space Grey is a powerful and sleek laptop, featuring Apple's M1 Pro chip for exceptional performance and a stunning Retina display.","category":"laptops","price":1999.99,"discountPercentage":4.69,"rating":3.65,"stock":24,"tags":["laptops","apple"],"brand":"Apple","sku":"LAP-APP-APP-078","weight":9,"dimensions":{"width":20.03,"height":9.54,"depth":14.82},"warrantyInformation":"3 year warranty","shippingInformation":"Ships in 2 weeks","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Very happy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Hazel Evans","reviewerEmail":"hazel.evans@x.dummyjson.com"},{"rating":5,"comment":"Very happy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Christopher West","reviewerEmail":"christopher.west@x.dummyjson.com"},{"rating":4,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Aubrey Garcia","reviewerEmail":"aubrey.garcia@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"5275211560367","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/laptops/apple-macbook-pro-14-inch-space-grey/1.webp","https://cdn.dummyjson.com/product-images/laptops/apple-macbook-pro-14-inch-space-grey/2.webp","https://cdn.dummyjson.com/product-images/laptops/apple-macbook-pro-14-inch-space-grey/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/laptops/apple-macbook-pro-14-inch-space-grey/thumbnail.webp"},{"id":105,"title":"Apple MagSafe Battery Pack","description":"The Apple MagSafe Battery Pack is a portable and convenient way to add extra battery life to your MagSafe-compatible iPhone. Attach it magnetically for a secure connection.","category":"mobile-accessories","price":99.99,"discountPercentage":17.17,"rating":3.62,"stock":1,"tags":["electronics","power banks"],"brand":"Apple","sku":"MOB-APP-APP-105","weight":6,"dimensions":{"width":15.4,"height":11.89,"depth":19.67},"warrantyInformation":"2 year warranty","shippingInformation":"Ships overnight","availabilityStatus":"Low Stock","reviews":[{"rating":2,"comment":"Would not recommend!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Stella Morris","reviewerEmail":"stella.morris@x.dummyjson.com"},{"rating":2,"comment":"Not as described!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Henry Adams","reviewerEmail":"henry.adams@x.dummyjson.com"},{"rating":5,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Cameron Burke","reviewerEmail":"cameron.burke@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":4,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"5157424897794","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/mobile-accessories/apple-magsafe-battery-pack/1.webp","https://cdn.dummyjson.com/product-images/mobile-accessories/apple-magsafe-battery-pack/2.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/mobile-accessories/apple-magsafe-battery-pack/thumbnail.webp"},{"id":106,"title":"Apple Watch Series 4 Gold","description":"The Apple Watch Series 4 in Gold is a stylish and advanced smartwatch with features like heart rate monitoring, fitness tracking, and a beautiful Retina display.","category":"mobile-accessories","price":349.99,"discountPercentage":12.02,"rating":2.74,"stock":33,"tags":["electronics","smartwatches"],"brand":"Apple","sku":"MOB-APP-APP-106","weight":6,"dimensions":{"width":27.69,"height":28.03,"depth":7.11},"warrantyInformation":"6 months warranty","shippingInformation":"Ships in 1 month","availabilityStatus":"In Stock","reviews":[{"rating":3,"comment":"Very unhappy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Chloe Morales","reviewerEmail":"chloe.morales@x.dummyjson.com"},{"rating":4,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Ava Harrison","reviewerEmail":"ava.harrison@x.dummyjson.com"},{"rating":4,"comment":"Would buy again!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Nicholas Bailey","reviewerEmail":"nicholas.bailey@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":3,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"3921248718888","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/mobile-accessories/apple-watch-series-4-gold/1.webp","https://cdn.dummyjson.com/product-images/mobile-accessories/apple-watch-series-4-gold/2.webp","https://cdn.dummyjson.com/product-images/mobile-accessories/apple-watch-series-4-gold/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/mobile-accessories/apple-watch-series-4-gold/thumbnail.webp"},{"id":104,"title":"Apple iPhone Charger","description":"The Apple iPhone Charger is a high-quality charger designed for fast and efficient charging of your iPhone. Ensure your device stays powered up and ready to go.","category":"mobile-accessories","price":19.99,"discountPercentage":18.52,"rating":4.15,"stock":31,"tags":["electronics","chargers"],"brand":"Apple","sku":"MOB-APP-APP-104","weight":1,"dimensions":{"width":13.63,"height":26.25,"depth":5.95},"warrantyInformation":"1 year warranty","shippingInformation":"Ships in 2 weeks","availabilityStatus":"In Stock","reviews":[{"rating":1,"comment":"Very disappointed!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Sadie Morales","reviewerEmail":"sadie.morales@x.dummyjson.com"},{"rating":5,"comment":"Great product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Lily Torres","reviewerEmail":"lily.torres@x.dummyjson.com"},{"rating":2,"comment":"Waste of money!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Luke Cooper","reviewerEmail":"luke.cooper@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":14,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"0879776541417","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/mobile-accessories/apple-iphone-charger/1.webp","https://cdn.dummyjson.com/product-images/mobile-accessories/apple-iphone-charger/2.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/mobile-accessories/apple-iphone-charger/thumbnail.webp"},{"id":79,"title":"Asus Zenbook Pro Dual Screen Laptop","description":"The Asus Zenbook Pro Dual Screen Laptop is a high-performance device with dual screens, providing productivity and versatility for creative professionals.","category":"laptops","price":1799.99,"discountPercentage":11.14,"rating":3.95,"stock":45,"tags":["laptops"],"brand":"Asus","sku":"LAP-ASU-ASU-079","weight":9,"dimensions":{"width":16.6,"height":11.49,"depth":10.89},"warrantyInformation":"3 year warranty","shippingInformation":"Ships in 1 month","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Very happy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Michael Johnson","reviewerEmail":"michael.johnson@x.dummyjson.com"},{"rating":5,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Zoe Bennett","reviewerEmail":"zoe.bennett@x.dummyjson.com"},{"rating":4,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Mila Hernandez","reviewerEmail":"mila.hernandez@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"7392988535158","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/laptops/asus-zenbook-pro-dual-screen-laptop/1.webp","https://cdn.dummyjson.com/product-images/laptops/asus-zenbook-pro-dual-screen-laptop/2.webp","https://cdn.dummyjson.com/product-images/laptops/asus-zenbook-pro-dual-screen-laptop/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/laptops/asus-zenbook-pro-dual-screen-laptop/thumbnail.webp"},{"id":118,"title":"Attitude Super Leaves Hand Soap","description":"Attitude Super Leaves Hand Soap is a natural and nourishing hand soap enriched with the goodness of super leaves. It cleanses and moisturizes your hands, leaving them feeling fresh and soft.","category":"skin-care","price":8.99,"discountPercentage":18.49,"rating":3.19,"stock":94,"tags":["personal care","hand soap"],"brand":"Attitude","sku":"SKI-ATT-ATT-118","weight":1,"dimensions":{"width":14.05,"height":8.3,"depth":16.62},"warrantyInformation":"6 months warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Liam Garcia","reviewerEmail":"liam.garcia@x.dummyjson.com"},{"rating":4,"comment":"Great product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Victoria McDonald","reviewerEmail":"victoria.mcdonald@x.dummyjson.com"},{"rating":5,"comment":"Very happy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Hannah Robinson","reviewerEmail":"hannah.robinson@x.dummyjson.com"}],"returnPolicy":"60 days return policy","minimumOrderQuantity":41,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"3566048905322","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/skin-care/attitude-super-leaves-hand-soap/1.webp","https://cdn.dummyjson.com/product-images/skin-care/attitude-super-leaves-hand-soap/2.webp","https://cdn.dummyjson.com/product-images/skin-care/attitude-super-leaves-hand-soap/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/skin-care/attitude-super-leaves-hand-soap/thumbnail.webp"},{"id":48,"title":"Bamboo Spatula","description":"The Bamboo Spatula is a versatile kitchen tool made from eco-friendly bamboo. Ideal for flipping, stirring, and serving various dishes.","category":"kitchen-accessories","price":7.99,"discountPercentage":2.84,"rating":3.27,"stock":37,"tags":["kitchen tools","utensils"],"sku":"KIT-BRD-BAM-048","weight":3,"dimensions":{"width":21.32,"height":23.03,"depth":25.94},"warrantyInformation":"1 month warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Awesome product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Lucas Ramirez","reviewerEmail":"lucas.ramirez@x.dummyjson.com"},{"rating":5,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Caleb Perkins","reviewerEmail":"caleb.perkins@x.dummyjson.com"},{"rating":4,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Nolan Gonzalez","reviewerEmail":"nolan.gonzalez@x.dummyjson.com"}],"returnPolicy":"60 days return policy","minimumOrderQuantity":29,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"3988181417733","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/kitchen-accessories/bamboo-spatula/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/kitchen-accessories/bamboo-spatula/thumbnail.webp"},{"id":138,"title":"Baseball Ball","description":"The Baseball Ball is a standard baseball used in baseball games. It features a durable leather cover and is designed for pitching, hitting, and fielding in the game of baseball.","category":"sports-accessories","price":8.99,"discountPercentage":1.71,"rating":2.57,"stock":100,"tags":["sports equipment","baseball"],"sku":"SPO-BRD-BAS-138","weight":5,"dimensions":{"width":14.42,"height":22.65,"depth":15.89},"warrantyInformation":"6 months warranty","shippingInformation":"Ships in 1 week","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Scarlett Wright","reviewerEmail":"scarlett.wright@x.dummyjson.com"},{"rating":4,"comment":"Great value for money!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Carter Baker","reviewerEmail":"carter.baker@x.dummyjson.com"},{"rating":1,"comment":"Poor quality!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Aria Flores","reviewerEmail":"aria.flores@x.dummyjson.com"}],"returnPolicy":"30 days return policy","minimumOrderQuantity":11,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"8981184448425","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/sports-accessories/baseball-ball/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/sports-accessories/baseball-ball/thumbnail.webp"},{"id":139,"title":"Baseball Glove","description":"The Baseball Glove is a protective glove worn by baseball players. It is designed to catch and field the baseball, providing players with comfort and control during the game.","category":"sports-accessories","price":24.99,"discountPercentage":2.9,"rating":3.96,"stock":22,"tags":["sports equipment","baseball"],"sku":"SPO-BRD-BAS-139","weight":1,"dimensions":{"width":23.84,"height":11.12,"depth":5.85},"warrantyInformation":"Lifetime warranty","shippingInformation":"Ships in 2 weeks","availabilityStatus":"In Stock","reviews":[{"rating":1,"comment":"Very unhappy with my purchase!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Hazel Gardner","reviewerEmail":"hazel.gardner@x.dummyjson.com"},{"rating":4,"comment":"Great value for money!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Scarlett Wright","reviewerEmail":"scarlett.wright@x.dummyjson.com"},{"rating":3,"comment":"Would not recommend!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Nathan Reed","reviewerEmail":"nathan.reed@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":8,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"1607433635330","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/sports-accessories/baseball-glove/1.webp","https://cdn.dummyjson.com/product-images/sports-accessories/baseball-glove/2.webp","https://cdn.dummyjson.com/product-images/sports-accessories/baseball-glove/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/sports-accessories/baseball-glove/thumbnail.webp"},{"id":140,"title":"Basketball","description":"The Basketball is a standard ball used in basketball games. It is designed for dribbling, shooting, and passing in the game of basketball, suitable for both indoor and outdoor play.","category":"sports-accessories","price":14.99,"discountPercentage":7.44,"rating":4.66,"stock":75,"tags":["sports equipment","basketball"],"sku":"SPO-BRD-BAS-140","weight":7,"dimensions":{"width":27.86,"height":10.64,"depth":18.75},"warrantyInformation":"1 year warranty","shippingInformation":"Ships in 1 week","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Mia Rodriguez","reviewerEmail":"mia.rodriguez@x.dummyjson.com"},{"rating":2,"comment":"Would not buy again!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Ella Adams","reviewerEmail":"ella.adams@x.dummyjson.com"},{"rating":4,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Aubrey Garcia","reviewerEmail":"aubrey.garcia@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":11,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"3219724919696","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/sports-accessories/basketball/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/sports-accessories/basketball/thumbnail.webp"},{"id":141,"title":"Basketball Rim","description":"The Basketball Rim is a sturdy hoop and net assembly mounted on a basketball backboard. It provides a target for shooting and scoring in the game of basketball.","category":"sports-accessories","price":39.99,"discountPercentage":7.74,"rating":4.6,"stock":43,"tags":["sports equipment","basketball"],"sku":"SPO-BRD-BAS-141","weight":1,"dimensions":{"width":15.83,"height":20.87,"depth":7.27},"warrantyInformation":"3 months warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Mason Wright","reviewerEmail":"mason.wright@x.dummyjson.com"},{"rating":5,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Tristan Scott","reviewerEmail":"tristan.scott@x.dummyjson.com"},{"rating":1,"comment":"Would not buy again!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Max Parker","reviewerEmail":"max.parker@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":9,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"6916173283925","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/sports-accessories/basketball-rim/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/sports-accessories/basketball-rim/thumbnail.webp"},{"id":107,"title":"Beats Flex Wireless Earphones","description":"The Beats Flex Wireless Earphones offer a comfortable and versatile audio experience. With magnetic earbuds and up to 12 hours of battery life, they are ideal for everyday use.","category":"mobile-accessories","price":49.99,"discountPercentage":5.73,"rating":4.24,"stock":50,"tags":["electronics","wireless earphones"],"brand":"Beats","sku":"MOB-BEA-BEA-107","weight":8,"dimensions":{"width":17.86,"height":25.74,"depth":23.09},"warrantyInformation":"1 year warranty","shippingInformation":"Ships in 1-2 business days","availabilityStatus":"In Stock","reviews":[{"rating":2,"comment":"Disappointing product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"William Gonzalez","reviewerEmail":"william.gonzalez@x.dummyjson.com"},{"rating":5,"comment":"Very pleased!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Gabriel Mitchell","reviewerEmail":"gabriel.mitchell@x.dummyjson.com"},{"rating":2,"comment":"Not worth the price!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Gabriel Adams","reviewerEmail":"gabriel.adams@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":17,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"1741271692174","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/mobile-accessories/beats-flex-wireless-earphones/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/mobile-accessories/beats-flex-wireless-earphones/thumbnail.webp"},{"id":13,"title":"Bedside Table African Cherry","description":"The Bedside Table in African Cherry is a stylish and functional addition to your bedroom, providing convenient storage space and a touch of elegance.","category":"furniture","price":299.99,"discountPercentage":19.09,"rating":2.87,"stock":64,"tags":["furniture","bedside tables"],"brand":"Furniture Co.","sku":"FUR-FUR-BED-013","weight":2,"dimensions":{"width":13.47,"height":24.99,"depth":27.35},"warrantyInformation":"5 year warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Aaliyah Hanson","reviewerEmail":"aaliyah.hanson@x.dummyjson.com"},{"rating":4,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Liam Smith","reviewerEmail":"liam.smith@x.dummyjson.com"},{"rating":4,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Avery Barnes","reviewerEmail":"avery.barnes@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":3,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"6441287925979","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/furniture/bedside-table-african-cherry/1.webp","https://cdn.dummyjson.com/product-images/furniture/bedside-table-african-cherry/2.webp","https://cdn.dummyjson.com/product-images/furniture/bedside-table-african-cherry/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/furniture/bedside-table-african-cherry/thumbnail.webp"},{"id":17,"title":"Beef Steak","description":"High-quality beef steak, great for grilling or cooking to your preferred level of doneness.","category":"groceries","price":12.99,"discountPercentage":9.61,"rating":4.47,"stock":86,"tags":["meat"],"sku":"GRO-BRD-BEE-017","weight":10,"dimensions":{"width":18.9,"height":5.77,"depth":18.57},"warrantyInformation":"3 year warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":3,"comment":"Would not recommend!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Eleanor Tyler","reviewerEmail":"eleanor.tyler@x.dummyjson.com"},{"rating":4,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Alexander Jones","reviewerEmail":"alexander.jones@x.dummyjson.com"},{"rating":5,"comment":"Great value for money!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Natalie Harris","reviewerEmail":"natalie.harris@x.dummyjson.com"}],"returnPolicy":"60 days return policy","minimumOrderQuantity":43,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"5640063409695","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/beef-steak/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/beef-steak/thumbnail.webp"},{"id":185,"title":"Black & Brown Slipper","description":"The Black & Brown Slipper is a comfortable and stylish choice for casual wear. Featuring a blend of black and brown colors, it adds a touch of sophistication to your relaxation.","category":"womens-shoes","price":19.99,"discountPercentage":3.33,"rating":2.53,"stock":3,"tags":["footwear","slippers"],"brand":"Comfort Trends","sku":"WOM-COM-BLA-185","weight":5,"dimensions":{"width":21.35,"height":26.21,"depth":17},"warrantyInformation":"Lifetime warranty","shippingInformation":"Ships in 1 month","availabilityStatus":"Low Stock","reviews":[{"rating":5,"comment":"Highly impressed!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Isaac Lawrence","reviewerEmail":"isaac.lawrence@x.dummyjson.com"},{"rating":2,"comment":"Not worth the price!","date":"2025-04-30T09:41:02.054Z","reviewerName":"William Gonzalez","reviewerEmail":"william.gonzalez@x.dummyjson.com"},{"rating":4,"comment":"Very happy with my purchase!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Sophia Jones","reviewerEmail":"sophia.jones@x.dummyjson.com"}],"returnPolicy":"60 days return policy","minimumOrderQuantity":47,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"5732146194724","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/womens-shoes/black-&-brown-slipper/1.webp","https://cdn.dummyjson.com/product-images/womens-shoes/black-&-brown-slipper/2.webp","https://cdn.dummyjson.com/product-images/womens-shoes/black-&-brown-slipper/3.webp","https://cdn.dummyjson.com/product-images/womens-shoes/black-&-brown-slipper/4.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/womens-shoes/black-&-brown-slipper/thumbnail.webp"},{"id":49,"title":"Black Aluminium Cup","description":"The Black Aluminium Cup is a stylish and durable cup suitable for both hot and cold beverages. Its sleek black design adds a modern touch to your drinkware collection.","category":"kitchen-accessories","price":5.99,"discountPercentage":15.65,"rating":4.46,"stock":75,"tags":["drinkware","cups"],"sku":"KIT-BRD-BLA-049","weight":7,"dimensions":{"width":5.88,"height":5.11,"depth":10.03},"warrantyInformation":"1 year warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":3,"comment":"Very disappointed!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Alexander Hernandez","reviewerEmail":"alexander.hernandez@x.dummyjson.com"},{"rating":5,"comment":"Great value for money!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Aurora Rodriguez","reviewerEmail":"aurora.rodriguez@x.dummyjson.com"},{"rating":1,"comment":"Not worth the price!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Benjamin Foster","reviewerEmail":"benjamin.foster@x.dummyjson.com"}],"returnPolicy":"30 days return policy","minimumOrderQuantity":48,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"5606164195748","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/kitchen-accessories/black-aluminium-cup/1.webp","https://cdn.dummyjson.com/product-images/kitchen-accessories/black-aluminium-cup/2.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/kitchen-accessories/black-aluminium-cup/thumbnail.webp"},{"id":154,"title":"Black Sun Glasses","description":"The Black Sun Glasses are a classic and stylish choice, featuring a sleek black frame and tinted lenses. They provide both UV protection and a fashionable look.","category":"sunglasses","price":29.99,"discountPercentage":4.94,"rating":4.41,"stock":60,"tags":["eyewear","sunglasses"],"brand":"Fashion Shades","sku":"SUN-FAS-BLA-154","weight":1,"dimensions":{"width":18.51,"height":15.69,"depth":10.11},"warrantyInformation":"No warranty","shippingInformation":"Ships in 1-2 business days","availabilityStatus":"In Stock","reviews":[{"rating":3,"comment":"Would not recommend!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Jonathan Pierce","reviewerEmail":"jonathan.pierce@x.dummyjson.com"},{"rating":2,"comment":"Disappointing product!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Owen Fisher","reviewerEmail":"owen.fisher@x.dummyjson.com"},{"rating":4,"comment":"Very happy with my purchase!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Samantha Martinez","reviewerEmail":"samantha.martinez@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":17,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"1045032983803","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/sunglasses/black-sun-glasses/1.webp","https://cdn.dummyjson.com/product-images/sunglasses/black-sun-glasses/2.webp","https://cdn.dummyjson.com/product-images/sunglasses/black-sun-glasses/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/sunglasses/black-sun-glasses/thumbnail.webp"},{"id":50,"title":"Black Whisk","description":"The Black Whisk is a kitchen essential for whisking and beating ingredients. Its ergonomic handle and sleek design make it a practical and stylish tool.","category":"kitchen-accessories","price":9.99,"discountPercentage":10.24,"rating":3.9,"stock":73,"tags":["kitchen tools","utensils"],"sku":"KIT-BRD-BLA-050","weight":1,"dimensions":{"width":13.03,"height":5.99,"depth":20.64},"warrantyInformation":"3 months warranty","shippingInformation":"Ships in 1 month","availabilityStatus":"In Stock","reviews":[{"rating":3,"comment":"Not worth the price!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Cameron Perez","reviewerEmail":"cameron.perez@x.dummyjson.com"},{"rating":1,"comment":"Waste of money!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Benjamin Foster","reviewerEmail":"benjamin.foster@x.dummyjson.com"},{"rating":5,"comment":"Very pleased!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Paisley Bell","reviewerEmail":"paisley.bell@x.dummyjson.com"}],"returnPolicy":"30 days return policy","minimumOrderQuantity":40,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"3112495795209","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/kitchen-accessories/black-whisk/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/kitchen-accessories/black-whisk/thumbnail.webp"},{"id":177,"title":"Black Women's Gown","description":"The Black Women's Gown is an elegant and timeless evening gown. With a sleek black design, it's perfect for formal events and special occasions, exuding sophistication and style.","category":"womens-dresses","price":129.99,"discountPercentage":10.48,"rating":3.64,"stock":25,"tags":["clothing","gowns"],"sku":"WOM-BRD-BLA-177","weight":2,"dimensions":{"width":7.86,"height":9.02,"depth":25.82},"warrantyInformation":"Lifetime warranty","shippingInformation":"Ships in 1 week","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Great value for money!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Ethan Fletcher","reviewerEmail":"ethan.fletcher@x.dummyjson.com"},{"rating":3,"comment":"Very dissatisfied!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Julian Newton","reviewerEmail":"julian.newton@x.dummyjson.com"},{"rating":5,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Savannah Gomez","reviewerEmail":"savannah.gomez@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":5,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"0630346013554","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/womens-dresses/black-women's-gown/1.webp","https://cdn.dummyjson.com/product-images/womens-dresses/black-women's-gown/2.webp","https://cdn.dummyjson.com/product-images/womens-dresses/black-women's-gown/3.webp","https://cdn.dummyjson.com/product-images/womens-dresses/black-women's-gown/4.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/womens-dresses/black-women's-gown/thumbnail.webp"},{"id":83,"title":"Blue & Black Check Shirt","description":"The Blue & Black Check Shirt is a stylish and comfortable men's shirt featuring a classic check pattern. Made from high-quality fabric, it's suitable for both casual and semi-formal occasions.","category":"mens-shirts","price":29.99,"discountPercentage":15.35,"rating":3.64,"stock":38,"tags":["clothing","men's shirts"],"brand":"Fashion Trends","sku":"MEN-FAS-BLU-083","weight":4,"dimensions":{"width":27.49,"height":23.73,"depth":28.61},"warrantyInformation":"3 year warranty","shippingInformation":"Ships in 3-5 business days","availabilityStatus":"In Stock","reviews":[{"rating":1,"comment":"Waste of money!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Logan Lee","reviewerEmail":"logan.lee@x.dummyjson.com"},{"rating":5,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Zachary Lee","reviewerEmail":"zachary.lee@x.dummyjson.com"},{"rating":4,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Aurora Rodriguez","reviewerEmail":"aurora.rodriguez@x.dummyjson.com"}],"returnPolicy":"30 days return policy","minimumOrderQuantity":18,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"7148674604957","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/mens-shirts/blue-&-black-check-shirt/1.webp","https://cdn.dummyjson.com/product-images/mens-shirts/blue-&-black-check-shirt/2.webp","https://cdn.dummyjson.com/product-images/mens-shirts/blue-&-black-check-shirt/3.webp","https://cdn.dummyjson.com/product-images/mens-shirts/blue-&-black-check-shirt/4.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/mens-shirts/blue-&-black-check-shirt/thumbnail.webp"}],"total":194,"skip":0,"limit":30}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| undefined | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 3 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Retrieves a complete list of all available product categories in the system.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/products/categories`
## Authentication
- **Required**: No
- This is a public endpoint that doesn't require authentication
## Parameters
- No parameters required
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
[
{
"slug": "beauty",
"name": "Beauty",
"url": "https://dummyjson.com/products/category/beauty"
},
{
"slug": "fragrances",
"name": "Fragrances",
"url": "https://dummyjson.com/products/category/fragrances"
}
]
```
## Tests Included
- Validates response status code is 200
- Verifies response is an array
- Checks each category has required fields (slug, name, url)
- Confirms categories are not empty
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjcsImV4cCI6MTc2OTk2NDc2N30.GZCUVvd0dz0StrtG1qYL4I5ptF4oYmGzmo6UUvIzx7o |
| Content-Type | text/plain |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | f14b4b95-f7ae-4247-bdd0-73803cabcada |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 61 |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjgsImV4cCI6MTc2OTk2Mjk2OH0.YBAfjxIdnj23YvRfMfsLLiM8QD-KCpxm5JeX6g5iot0; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjgsImV4cCI6MTc3MjU1MzE2OH0.e3x6QVuCW25JTOT-scFLoJaHoODcx4UpJLxL9xGB_zc |
{
"username": "emilys",
"password": "emilyspass"
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:52:50 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 99 |
| x-ratelimit-reset | 1769961180 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"9d0-QmRzWSDU7v9xEumlsVypMgUm22A" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=PMkWyyb%2B3QM4HaJ2kq%2FaWAgZ2lEBslQimlsq56oQxgfRnxBQJRPL7QQQJkX3xzXenHytpp3S%2BbKUL%2B%2BwPQNSYtGsn75%2BT0zcVehCvqs%3D"}]} |
| CF-RAY | 9c729e433cac2891-AMM |
[{"slug":"beauty","name":"Beauty","url":"https://dummyjson.com/products/category/beauty"},{"slug":"fragrances","name":"Fragrances","url":"https://dummyjson.com/products/category/fragrances"},{"slug":"furniture","name":"Furniture","url":"https://dummyjson.com/products/category/furniture"},{"slug":"groceries","name":"Groceries","url":"https://dummyjson.com/products/category/groceries"},{"slug":"home-decoration","name":"Home Decoration","url":"https://dummyjson.com/products/category/home-decoration"},{"slug":"kitchen-accessories","name":"Kitchen Accessories","url":"https://dummyjson.com/products/category/kitchen-accessories"},{"slug":"laptops","name":"Laptops","url":"https://dummyjson.com/products/category/laptops"},{"slug":"mens-shirts","name":"Mens Shirts","url":"https://dummyjson.com/products/category/mens-shirts"},{"slug":"mens-shoes","name":"Mens Shoes","url":"https://dummyjson.com/products/category/mens-shoes"},{"slug":"mens-watches","name":"Mens Watches","url":"https://dummyjson.com/products/category/mens-watches"},{"slug":"mobile-accessories","name":"Mobile Accessories","url":"https://dummyjson.com/products/category/mobile-accessories"},{"slug":"motorcycle","name":"Motorcycle","url":"https://dummyjson.com/products/category/motorcycle"},{"slug":"skin-care","name":"Skin Care","url":"https://dummyjson.com/products/category/skin-care"},{"slug":"smartphones","name":"Smartphones","url":"https://dummyjson.com/products/category/smartphones"},{"slug":"sports-accessories","name":"Sports Accessories","url":"https://dummyjson.com/products/category/sports-accessories"},{"slug":"sunglasses","name":"Sunglasses","url":"https://dummyjson.com/products/category/sunglasses"},{"slug":"tablets","name":"Tablets","url":"https://dummyjson.com/products/category/tablets"},{"slug":"tops","name":"Tops","url":"https://dummyjson.com/products/category/tops"},{"slug":"vehicle","name":"Vehicle","url":"https://dummyjson.com/products/category/vehicle"},{"slug":"womens-bags","name":"Womens Bags","url":"https://dummyjson.com/products/category/womens-bags"},{"slug":"womens-dresses","name":"Womens Dresses","url":"https://dummyjson.com/products/category/womens-dresses"},{"slug":"womens-jewellery","name":"Womens Jewellery","url":"https://dummyjson.com/products/category/womens-jewellery"},{"slug":"womens-shoes","name":"Womens Shoes","url":"https://dummyjson.com/products/category/womens-shoes"},{"slug":"womens-watches","name":"Womens Watches","url":"https://dummyjson.com/products/category/womens-watches"}]
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Retrieves a simplified list of product category names/slugs without additional metadata.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/products/category-list`
## Authentication
- **Required**: No
- This is a public endpoint that doesn't require authentication
## Parameters
- No parameters required
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
[
"beauty",
"fragrances",
"furniture",
"groceries",
"home-decoration",
"kitchen-accessories"
]
```
## Tests Included
- Validates response status code is 200
- Verifies response is an array of strings
- Checks array contains category names
- Confirms list is not empty
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjcsImV4cCI6MTc2OTk2NDc2N30.GZCUVvd0dz0StrtG1qYL4I5ptF4oYmGzmo6UUvIzx7o |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 50d631bc-e0aa-4dec-a7b4-fcaec206c213 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjgsImV4cCI6MTc2OTk2Mjk2OH0.YBAfjxIdnj23YvRfMfsLLiM8QD-KCpxm5JeX6g5iot0; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjgsImV4cCI6MTc3MjU1MzE2OH0.e3x6QVuCW25JTOT-scFLoJaHoODcx4UpJLxL9xGB_zc |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:52:50 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 96 |
| x-ratelimit-reset | 1769961173 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"156-8GSmapwnkZIOOiVZRKE52oLajsg" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=unnz3iLrcz99htVLEwPJZIQuBb%2Faa5MI2vKmclcE%2BYT6P5QaNvD9kUsOt66exRXb9Uzz8LWyo1zpXJ0%2F6DM4rp24DkSFc1aiNODjSG0%3D"}]} |
| Content-Encoding | br |
| CF-RAY | 9c729e44ce592891-AMM |
["beauty","fragrances","furniture","groceries","home-decoration","kitchen-accessories","laptops","mens-shirts","mens-shoes","mens-watches","mobile-accessories","motorcycle","skin-care","smartphones","sports-accessories","sunglasses","tablets","tops","vehicle","womens-bags","womens-dresses","womens-jewellery","womens-shoes","womens-watches"]
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjcsImV4cCI6MTc2OTk2NDc2N30.GZCUVvd0dz0StrtG1qYL4I5ptF4oYmGzmo6UUvIzx7o |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | d8f8a9e1-8cb8-4c9f-89a0-c7cb0a550d4e |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjgsImV4cCI6MTc2OTk2Mjk2OH0.YBAfjxIdnj23YvRfMfsLLiM8QD-KCpxm5JeX6g5iot0; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjgsImV4cCI6MTc3MjU1MzE2OH0.e3x6QVuCW25JTOT-scFLoJaHoODcx4UpJLxL9xGB_zc |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:52:51 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 98 |
| x-ratelimit-reset | 1769961180 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"38-zuKX0Tdz5jj2uKVDzDwMn/UTK0c" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=7Mc4IiDGylv2OpBfh2LplL%2FwOn66jLEW5MsrFnYSZggk3JMvWyEOE5ecZPQPLkSQUq89dStYfAxAnf9CrDAY%2BNGPliLDmA054Gn3VX4%3D"}]} |
| Content-Encoding | br |
| CF-RAY | 9c729e4658442891-AMM |
{"message":"Product with id 'category-array' not found"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 404 | 1 | 0 | 0 |
| Response has error or empty products array | 1 | 0 | 0 |
| Error message exists | 1 | 0 | 0 |
| Total | 3 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Retrieves all products that belong to a specific category.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/products/category/smartphones`
## Authentication
- **Required**: No
- This is a public endpoint that doesn't require authentication
## Parameters
### Path Variables
- `category` (required) - The category slug to filter products by (e.g., smartphones, laptops, beauty)
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
{
"products": [
{
"id": 1,
"title": "Product Name",
"category": "smartphones",
"price": 549,
...
}
],
"total": 5,
"skip": 0,
"limit": 30
}
```
## Tests Included
- Validates response status code is 200
- Verifies all products belong to requested category
- Checks products array structure
- Confirms pagination metadata is present
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjcsImV4cCI6MTc2OTk2NDc2N30.GZCUVvd0dz0StrtG1qYL4I5ptF4oYmGzmo6UUvIzx7o |
| Content-Type | text/plain |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | c6a86ffd-c0cb-4e77-8fc6-dc4881fd6c6c |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 61 |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjgsImV4cCI6MTc2OTk2Mjk2OH0.YBAfjxIdnj23YvRfMfsLLiM8QD-KCpxm5JeX6g5iot0; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjgsImV4cCI6MTc3MjU1MzE2OH0.e3x6QVuCW25JTOT-scFLoJaHoODcx4UpJLxL9xGB_zc |
{
"username": "emilys",
"password": "emilyspass"
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:52:51 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 97 |
| x-ratelimit-reset | 1769961179 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"65a9-15t+98sxzVSOrDMD753lm6EmGiw" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=7aGDdnoBsBJvKEHWNNBCpQI64jZmdZEpobe%2FxW%2B0eNML4lURA1GSZ%2FsTOuSiSFl3vCpMXAn%2FyTFzgg8Z5NsHfqno%2Bh5i%2FAP3wrNYmNw%3D"}]} |
| CF-RAY | 9c729e480a242891-AMM |
{"products":[{"id":121,"title":"iPhone 5s","description":"The iPhone 5s is a classic smartphone known for its compact design and advanced features during its release. While it's an older model, it still provides a reliable user experience.","category":"smartphones","price":199.99,"discountPercentage":12.91,"rating":2.83,"stock":25,"tags":["smartphones","apple"],"brand":"Apple","sku":"SMA-APP-IPH-121","weight":2,"dimensions":{"width":5.29,"height":18.38,"depth":17.72},"warrantyInformation":"Lifetime warranty","shippingInformation":"Ships in 1 month","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Jace Smith","reviewerEmail":"jace.smith@x.dummyjson.com"},{"rating":1,"comment":"Not as described!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Logan Torres","reviewerEmail":"logan.torres@x.dummyjson.com"},{"rating":5,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Harper Kelly","reviewerEmail":"harper.kelly@x.dummyjson.com"}],"returnPolicy":"60 days return policy","minimumOrderQuantity":3,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"8814683940853","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/iphone-5s/1.webp","https://cdn.dummyjson.com/product-images/smartphones/iphone-5s/2.webp","https://cdn.dummyjson.com/product-images/smartphones/iphone-5s/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/iphone-5s/thumbnail.webp"},{"id":122,"title":"iPhone 6","description":"The iPhone 6 is a stylish and capable smartphone with a larger display and improved performance. It introduced new features and design elements, making it a popular choice in its time.","category":"smartphones","price":299.99,"discountPercentage":6.69,"rating":3.41,"stock":60,"tags":["smartphones","apple"],"brand":"Apple","sku":"SMA-APP-IPH-122","weight":7,"dimensions":{"width":11,"height":9.1,"depth":9.67},"warrantyInformation":"1 month warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":3,"comment":"Disappointing product!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Stella Morris","reviewerEmail":"stella.morris@x.dummyjson.com"},{"rating":4,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Nolan Gonzalez","reviewerEmail":"nolan.gonzalez@x.dummyjson.com"},{"rating":5,"comment":"Great value for money!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Benjamin Foster","reviewerEmail":"benjamin.foster@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":5,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"9922357685013","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/iphone-6/1.webp","https://cdn.dummyjson.com/product-images/smartphones/iphone-6/2.webp","https://cdn.dummyjson.com/product-images/smartphones/iphone-6/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/iphone-6/thumbnail.webp"},{"id":123,"title":"iPhone 13 Pro","description":"The iPhone 13 Pro is a cutting-edge smartphone with a powerful camera system, high-performance chip, and stunning display. It offers advanced features for users who demand top-notch technology.","category":"smartphones","price":1099.99,"discountPercentage":9.37,"rating":4.12,"stock":56,"tags":["smartphones","apple"],"brand":"Apple","sku":"SMA-APP-IPH-123","weight":8,"dimensions":{"width":12.63,"height":5.28,"depth":14.29},"warrantyInformation":"3 year warranty","shippingInformation":"Ships in 2 weeks","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Would buy again!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Christian Perez","reviewerEmail":"christian.perez@x.dummyjson.com"},{"rating":3,"comment":"Not worth the price!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Liam Gonzalez","reviewerEmail":"liam.gonzalez@x.dummyjson.com"},{"rating":5,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Tristan Scott","reviewerEmail":"tristan.scott@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"4998438802308","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/iphone-13-pro/1.webp","https://cdn.dummyjson.com/product-images/smartphones/iphone-13-pro/2.webp","https://cdn.dummyjson.com/product-images/smartphones/iphone-13-pro/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/iphone-13-pro/thumbnail.webp"},{"id":124,"title":"iPhone X","description":"The iPhone X is a flagship smartphone featuring a bezel-less OLED display, facial recognition technology (Face ID), and impressive performance. It represents a milestone in iPhone design and innovation.","category":"smartphones","price":899.99,"discountPercentage":19.59,"rating":2.51,"stock":37,"tags":["smartphones","apple"],"brand":"Apple","sku":"SMA-APP-IPH-124","weight":1,"dimensions":{"width":21.88,"height":24.19,"depth":14.19},"warrantyInformation":"3 months warranty","shippingInformation":"Ships in 3-5 business days","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Tyler Davis","reviewerEmail":"tyler.davis@x.dummyjson.com"},{"rating":5,"comment":"Great product!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Aria Parker","reviewerEmail":"aria.parker@x.dummyjson.com"},{"rating":2,"comment":"Not as described!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Lily Torres","reviewerEmail":"lily.torres@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":2,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"3034949322264","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/iphone-x/1.webp","https://cdn.dummyjson.com/product-images/smartphones/iphone-x/2.webp","https://cdn.dummyjson.com/product-images/smartphones/iphone-x/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/iphone-x/thumbnail.webp"},{"id":125,"title":"Oppo A57","description":"The Oppo A57 is a mid-range smartphone known for its sleek design and capable features. It offers a balance of performance and affordability, making it a popular choice.","category":"smartphones","price":249.99,"discountPercentage":2.43,"rating":3.94,"stock":19,"tags":["smartphones","oppo"],"brand":"Oppo","sku":"SMA-OPP-OPP-125","weight":5,"dimensions":{"width":7.2,"height":10.74,"depth":23.68},"warrantyInformation":"Lifetime warranty","shippingInformation":"Ships in 3-5 business days","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Scarlett Wright","reviewerEmail":"scarlett.wright@x.dummyjson.com"},{"rating":5,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Jacob Cooper","reviewerEmail":"jacob.cooper@x.dummyjson.com"},{"rating":2,"comment":"Poor quality!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Zoe Nicholson","reviewerEmail":"zoe.nicholson@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":3,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"0651223722522","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/oppo-a57/1.webp","https://cdn.dummyjson.com/product-images/smartphones/oppo-a57/2.webp","https://cdn.dummyjson.com/product-images/smartphones/oppo-a57/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/oppo-a57/thumbnail.webp"},{"id":126,"title":"Oppo F19 Pro Plus","description":"The Oppo F19 Pro Plus is a feature-rich smartphone with a focus on camera capabilities. It boasts advanced photography features and a powerful performance for a premium user experience.","category":"smartphones","price":399.99,"discountPercentage":18.64,"rating":3.51,"stock":78,"tags":["smartphones","oppo"],"brand":"Oppo","sku":"SMA-OPP-OPP-126","weight":6,"dimensions":{"width":6.78,"height":25.17,"depth":8.4},"warrantyInformation":"3 year warranty","shippingInformation":"Ships in 1 week","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Very happy with my purchase!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Emily Johnson","reviewerEmail":"emily.johnson@x.dummyjson.com"},{"rating":5,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Jaxon Barnes","reviewerEmail":"jaxon.barnes@x.dummyjson.com"},{"rating":4,"comment":"Would buy again!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Nova Cooper","reviewerEmail":"nova.cooper@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"8576893968169","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/oppo-f19-pro-plus/1.webp","https://cdn.dummyjson.com/product-images/smartphones/oppo-f19-pro-plus/2.webp","https://cdn.dummyjson.com/product-images/smartphones/oppo-f19-pro-plus/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/oppo-f19-pro-plus/thumbnail.webp"},{"id":127,"title":"Oppo K1","description":"The Oppo K1 series offers a range of smartphones with various features and specifications. Known for their stylish design and reliable performance, the Oppo K1 series caters to diverse user preferences.","category":"smartphones","price":299.99,"discountPercentage":18.29,"rating":4.25,"stock":55,"tags":["smartphones","oppo"],"brand":"Oppo","sku":"SMA-OPP-OPP-127","weight":5,"dimensions":{"width":13.89,"height":10.63,"depth":16.6},"warrantyInformation":"1 month warranty","shippingInformation":"Ships in 1-2 business days","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Very pleased!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Christopher West","reviewerEmail":"christopher.west@x.dummyjson.com"},{"rating":4,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Mia Miller","reviewerEmail":"mia.miller@x.dummyjson.com"},{"rating":2,"comment":"Very dissatisfied!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Ella Adams","reviewerEmail":"ella.adams@x.dummyjson.com"}],"returnPolicy":"30 days return policy","minimumOrderQuantity":5,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"3106827888743","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/oppo-k1/1.webp","https://cdn.dummyjson.com/product-images/smartphones/oppo-k1/2.webp","https://cdn.dummyjson.com/product-images/smartphones/oppo-k1/3.webp","https://cdn.dummyjson.com/product-images/smartphones/oppo-k1/4.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/oppo-k1/thumbnail.webp"},{"id":128,"title":"Realme C35","description":"The Realme C35 is a budget-friendly smartphone with a focus on providing essential features for everyday use. It offers a reliable performance and user-friendly experience.","category":"smartphones","price":149.99,"discountPercentage":15.3,"rating":4.2,"stock":48,"tags":["smartphones","realme"],"brand":"Realme","sku":"SMA-REA-REA-128","weight":2,"dimensions":{"width":25.28,"height":8.14,"depth":29.53},"warrantyInformation":"3 year warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Great product!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Penelope King","reviewerEmail":"penelope.king@x.dummyjson.com"},{"rating":2,"comment":"Very unhappy with my purchase!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Asher Scott","reviewerEmail":"asher.scott@x.dummyjson.com"},{"rating":4,"comment":"Highly impressed!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Henry Adams","reviewerEmail":"henry.adams@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":3,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"7825844344364","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/realme-c35/1.webp","https://cdn.dummyjson.com/product-images/smartphones/realme-c35/2.webp","https://cdn.dummyjson.com/product-images/smartphones/realme-c35/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/realme-c35/thumbnail.webp"},{"id":129,"title":"Realme X","description":"The Realme X is a mid-range smartphone known for its sleek design and impressive display. It offers a good balance of performance and camera capabilities for users seeking a quality device.","category":"smartphones","price":299.99,"discountPercentage":6.95,"rating":3.7,"stock":12,"tags":["smartphones","realme"],"brand":"Realme","sku":"SMA-REA-REA-129","weight":4,"dimensions":{"width":25.59,"height":21.42,"depth":12.75},"warrantyInformation":"1 month warranty","shippingInformation":"Ships in 3-5 business days","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Would buy again!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Hazel Evans","reviewerEmail":"hazel.evans@x.dummyjson.com"},{"rating":5,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Brayden Fleming","reviewerEmail":"brayden.fleming@x.dummyjson.com"},{"rating":5,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Madison Stewart","reviewerEmail":"madison.stewart@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":3,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"4948452391831","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/realme-x/1.webp","https://cdn.dummyjson.com/product-images/smartphones/realme-x/2.webp","https://cdn.dummyjson.com/product-images/smartphones/realme-x/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/realme-x/thumbnail.webp"},{"id":130,"title":"Realme XT","description":"The Realme XT is a feature-rich smartphone with a focus on camera technology. It comes equipped with advanced camera sensors, delivering high-quality photos and videos for photography enthusiasts.","category":"smartphones","price":349.99,"discountPercentage":11.51,"rating":4.58,"stock":80,"tags":["smartphones","realme"],"brand":"Realme","sku":"SMA-REA-REA-130","weight":3,"dimensions":{"width":24.98,"height":26.73,"depth":6.5},"warrantyInformation":"3 year warranty","shippingInformation":"Ships in 1 month","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Emily Brown","reviewerEmail":"emily.brown@x.dummyjson.com"},{"rating":3,"comment":"Not as described!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Ella Cook","reviewerEmail":"ella.cook@x.dummyjson.com"},{"rating":5,"comment":"Would buy again!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Layla Sullivan","reviewerEmail":"layla.sullivan@x.dummyjson.com"}],"returnPolicy":"60 days return policy","minimumOrderQuantity":3,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"6151817227632","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/realme-xt/1.webp","https://cdn.dummyjson.com/product-images/smartphones/realme-xt/2.webp","https://cdn.dummyjson.com/product-images/smartphones/realme-xt/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/realme-xt/thumbnail.webp"},{"id":131,"title":"Samsung Galaxy S7","description":"The Samsung Galaxy S7 is a flagship smartphone known for its sleek design and advanced features. It features a high-resolution display, powerful camera, and robust performance.","category":"smartphones","price":299.99,"discountPercentage":19.55,"rating":3.3,"stock":67,"tags":["smartphones","samsung galaxy"],"brand":"Samsung","sku":"SMA-SAM-SAM-131","weight":10,"dimensions":{"width":13.55,"height":24.24,"depth":5.63},"warrantyInformation":"3 months warranty","shippingInformation":"Ships in 3-5 business days","availabilityStatus":"In Stock","reviews":[{"rating":1,"comment":"Not as described!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Julian James","reviewerEmail":"julian.james@x.dummyjson.com"},{"rating":4,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Lucas Gordon","reviewerEmail":"lucas.gordon@x.dummyjson.com"},{"rating":4,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Ava Taylor","reviewerEmail":"ava.taylor@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"7557912146622","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s7/1.webp","https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s7/2.webp","https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s7/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s7/thumbnail.webp"},{"id":132,"title":"Samsung Galaxy S8","description":"The Samsung Galaxy S8 is a premium smartphone with an Infinity Display, offering a stunning visual experience. It boasts advanced camera capabilities and cutting-edge technology.","category":"smartphones","price":499.99,"discountPercentage":19.45,"rating":4.4,"stock":0,"tags":["smartphones","samsung galaxy"],"brand":"Samsung","sku":"SMA-SAM-SAM-132","weight":6,"dimensions":{"width":23.05,"height":26.88,"depth":15.73},"warrantyInformation":"2 year warranty","shippingInformation":"Ships in 1 week","availabilityStatus":"Out of Stock","reviews":[{"rating":4,"comment":"Highly impressed!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Owen Fisher","reviewerEmail":"owen.fisher@x.dummyjson.com"},{"rating":4,"comment":"Highly impressed!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Clara Berry","reviewerEmail":"clara.berry@x.dummyjson.com"},{"rating":4,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Tyler Davis","reviewerEmail":"tyler.davis@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":4,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"5995499013336","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s8/1.webp","https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s8/2.webp","https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s8/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s8/thumbnail.webp"},{"id":133,"title":"Samsung Galaxy S10","description":"The Samsung Galaxy S10 is a flagship device featuring a dynamic AMOLED display, versatile camera system, and powerful performance. It represents innovation and excellence in smartphone technology.","category":"smartphones","price":699.99,"discountPercentage":5.59,"rating":3.06,"stock":19,"tags":["smartphones","samsung galaxy"],"brand":"Samsung","sku":"SMA-SAM-SAM-133","weight":9,"dimensions":{"width":27.41,"height":15.26,"depth":27.02},"warrantyInformation":"No warranty","shippingInformation":"Ships in 2 weeks","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Tristan Scott","reviewerEmail":"tristan.scott@x.dummyjson.com"},{"rating":5,"comment":"Would buy again!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Christopher West","reviewerEmail":"christopher.west@x.dummyjson.com"},{"rating":2,"comment":"Would not recommend!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Amelia Perez","reviewerEmail":"amelia.perez@x.dummyjson.com"}],"returnPolicy":"30 days return policy","minimumOrderQuantity":2,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"4676898229465","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s10/1.webp","https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s10/2.webp","https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s10/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s10/thumbnail.webp"},{"id":134,"title":"Vivo S1","description":"The Vivo S1 is a stylish and mid-range smartphone offering a blend of design and performance. It features a vibrant display, capable camera system, and reliable functionality.","category":"smartphones","price":249.99,"discountPercentage":10.17,"rating":3.5,"stock":50,"tags":["smartphones","vivo"],"brand":"Vivo","sku":"SMA-VIV-VIV-134","weight":4,"dimensions":{"width":14.06,"height":11.79,"depth":6.78},"warrantyInformation":"6 months warranty","shippingInformation":"Ships in 3-5 business days","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Samantha Martinez","reviewerEmail":"samantha.martinez@x.dummyjson.com"},{"rating":3,"comment":"Very disappointed!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Logan Lee","reviewerEmail":"logan.lee@x.dummyjson.com"},{"rating":4,"comment":"Would buy again!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Sophia Jones","reviewerEmail":"sophia.jones@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"8575699153333","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/vivo-s1/1.webp","https://cdn.dummyjson.com/product-images/smartphones/vivo-s1/2.webp","https://cdn.dummyjson.com/product-images/smartphones/vivo-s1/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/vivo-s1/thumbnail.webp"},{"id":135,"title":"Vivo V9","description":"The Vivo V9 is a smartphone known for its sleek design and emphasis on capturing high-quality selfies. It features a notch display, dual-camera setup, and a modern design.","category":"smartphones","price":299.99,"discountPercentage":17.67,"rating":3.6,"stock":82,"tags":["smartphones","vivo"],"brand":"Vivo","sku":"SMA-VIV-VIV-135","weight":4,"dimensions":{"width":19.85,"height":21.83,"depth":13.04},"warrantyInformation":"2 year warranty","shippingInformation":"Ships in 1 month","availabilityStatus":"In Stock","reviews":[{"rating":2,"comment":"Very unhappy with my purchase!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Logan Lawson","reviewerEmail":"logan.lawson@x.dummyjson.com"},{"rating":5,"comment":"Awesome product!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Layla Young","reviewerEmail":"layla.young@x.dummyjson.com"},{"rating":4,"comment":"Great value for money!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Asher Scott","reviewerEmail":"asher.scott@x.dummyjson.com"}],"returnPolicy":"60 days return policy","minimumOrderQuantity":2,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"4295398764784","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/vivo-v9/1.webp","https://cdn.dummyjson.com/product-images/smartphones/vivo-v9/2.webp","https://cdn.dummyjson.com/product-images/smartphones/vivo-v9/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/vivo-v9/thumbnail.webp"},{"id":136,"title":"Vivo X21","description":"The Vivo X21 is a premium smartphone with a focus on cutting-edge technology. It features an in-display fingerprint sensor, a high-resolution display, and advanced camera capabilities.","category":"smartphones","price":499.99,"discountPercentage":17.41,"rating":4.26,"stock":7,"tags":["smartphones","vivo"],"brand":"Vivo","sku":"SMA-VIV-VIV-136","weight":10,"dimensions":{"width":22.49,"height":21.62,"depth":27.88},"warrantyInformation":"1 year warranty","shippingInformation":"Ships in 1-2 business days","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Very pleased!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Liam Gonzalez","reviewerEmail":"liam.gonzalez@x.dummyjson.com"},{"rating":4,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Aurora Barnes","reviewerEmail":"aurora.barnes@x.dummyjson.com"},{"rating":2,"comment":"Not as described!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Evelyn Walker","reviewerEmail":"evelyn.walker@x.dummyjson.com"}],"returnPolicy":"60 days return policy","minimumOrderQuantity":3,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"9944308291810","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/vivo-x21/1.webp","https://cdn.dummyjson.com/product-images/smartphones/vivo-x21/2.webp","https://cdn.dummyjson.com/product-images/smartphones/vivo-x21/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/vivo-x21/thumbnail.webp"}],"total":16,"skip":0,"limit":16}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Creates a new product in the system with the provided product details.
## Method & Endpoint
- **Method**: `POST`
- **Endpoint**: `https://dummyjson.com/products/add`
## Authentication
- **Required**: No
- This is a public endpoint for demonstration purposes
## Parameters
### Request Body (JSON)
```json
{
"title": "Product Name",
"description": "Product description",
"price": 999,
"discountPercentage": 10,
"rating": 4.5,
"stock": 50,
"brand": "Brand Name",
"category": "Category Name",
"thumbnail": "image_url"
}
```
**Required Fields**:
- `title` - Product name
- `price` - Product price
**Optional Fields**:
- `description`, `discountPercentage`, `rating`, `stock`, `brand`, `category`, `thumbnail`
## Expected Response
- **Status Code**: `201 Created`
- **Response Structure**: Returns the created product with an assigned ID
```json
{
"id": 195,
"title": "Product Name",
"price": 999,
...
}
```
## Tests Included
- Validates response status code is 201
- Verifies product ID is assigned
- Checks all submitted fields are returned
- Confirms product creation timestamp
| Header Name | Header Value |
|---|---|
| Content-Type | application/json |
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjcsImV4cCI6MTc2OTk2NDc2N30.GZCUVvd0dz0StrtG1qYL4I5ptF4oYmGzmo6UUvIzx7o |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | b3832b8e-c569-4631-b813-8e6e5104d6c5 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 125 |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjgsImV4cCI6MTc2OTk2Mjk2OH0.YBAfjxIdnj23YvRfMfsLLiM8QD-KCpxm5JeX6g5iot0; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjgsImV4cCI6MTc3MjU1MzE2OH0.e3x6QVuCW25JTOT-scFLoJaHoODcx4UpJLxL9xGB_zc |
{
"title": "BMW Pencil",
"price": 100,
"description": "High quality pencil",
"category": "stationery"
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:52:51 GMT |
| Content-Type | application/json; charset=utf-8 |
| Content-Length | 103 |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 96 |
| x-ratelimit-reset | 1769961177 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"67-0ZPry6/zvpQF03BJfwztu0kNXO4" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=DJmpZyKpjbfRdy251j4gSiQRbvie1SrKSbmAw%2B0jgwmNfDy4yNTWWI3X9BL57lqkkDxYg0p%2F%2F6nlSUnt0TJXFLYITn3kvFnKg%2BPtqNA%3D"}]} |
| CF-RAY | 9c729e49ac392891-AMM |
{"id":195,"title":"BMW Pencil","price":100,"description":"High quality pencil","category":"stationery"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 201 | 1 | 0 | 0 |
| Product created successfully | 1 | 0 | 0 |
| All required fields exist | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 4 | 0 | 0 |
| Test Name | Assertion Error |
|---|
| Header Name | Header Value |
|---|---|
| Content-Type | application/json |
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjcsImV4cCI6MTc2OTk2NDc2N30.GZCUVvd0dz0StrtG1qYL4I5ptF4oYmGzmo6UUvIzx7o |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 7e28105b-48bf-4245-b908-bbf0b263fb2b |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 25 |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjgsImV4cCI6MTc2OTk2Mjk2OH0.YBAfjxIdnj23YvRfMfsLLiM8QD-KCpxm5JeX6g5iot0; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjgsImV4cCI6MTc3MjU1MzE2OH0.e3x6QVuCW25JTOT-scFLoJaHoODcx4UpJLxL9xGB_zc |
{
"price": "abd"
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:52:51 GMT |
| Content-Type | application/json; charset=utf-8 |
| Content-Length | 24 |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 95 |
| x-ratelimit-reset | 1769961173 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"18-L9Dj49E4IFbHCZOI/ckAL4ETueo" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=%2Fo1JIpc3MZ0iDaTpZtYCPB56kZchKyyI2X02MRuJjaOistswQS7SY14Q%2BsdMh3%2ByscnHz%2F%2Bfy8cBQ6PKW9aeFn3inqzIXmUhlMr9W2I%3D"}]} |
| CF-RAY | 9c729e4b5e2c2891-AMM |
{"id":195,"price":"abd"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| API should not accept non-numeric price | 1 | 0 | 0 |
| Total | 1 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Creates a new product using randomly generated test data to validate the product creation endpoint with dynamic values.
## Method & Endpoint
- **Method**: `POST`
- **Endpoint**: `https://dummyjson.com/products/add`
## Authentication
- **Required**: No
- This is a public endpoint for demonstration purposes
## Parameters
### Request Body (JSON)
Uses dynamically generated random data:
```json
{
"title": "Handmade Granite Chair",
"description": "Rustic Bacon",
"price": 986.05,
"discountPercentage": 277,
"rating": 4.5,
"stock": 707,
"brand": "D'Amore and Sons",
"category": "{{$randomProductCategory}}",
"thumbnail": "http://placeimg.com/640/480"
}
```
## Expected Response
- **Status Code**: `201 Created`
- **Response Structure**: Returns the created product with random data and assigned ID
```json
{
"id": 195,
"title": "Random Product Name",
"price": 123,
...
}
```
## Tests Included
- Validates response status code is 201
- Verifies product ID is assigned
- Checks random data is properly saved
- Confirms API handles dynamic test data correctly
| Header Name | Header Value |
|---|---|
| Content-Type | application/json |
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjcsImV4cCI6MTc2OTk2NDc2N30.GZCUVvd0dz0StrtG1qYL4I5ptF4oYmGzmo6UUvIzx7o |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 5ce1e3a0-848e-47b8-90d8-d2abe4fd60aa |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 77 |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjgsImV4cCI6MTc2OTk2Mjk2OH0.YBAfjxIdnj23YvRfMfsLLiM8QD-KCpxm5JeX6g5iot0; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjgsImV4cCI6MTc3MjU1MzE2OH0.e3x6QVuCW25JTOT-scFLoJaHoODcx4UpJLxL9xGB_zc |
{
"title":"Phone",
"description": "New Phone",
"price": 500
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:52:52 GMT |
| Content-Type | application/json; charset=utf-8 |
| Content-Length | 64 |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 96 |
| x-ratelimit-reset | 1769961179 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"40-TZOIZJEXaxB4qQXS3i4JD0CB+QY" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=23VDwUHoESXH%2F03lvh9ZLZc2qnOsx5ZI2qUKyYVlIJcm9tVFq8k3gg6dw8zeGJAdcvqLQ4VQ2MnwHeeNsxgPsiILQaQxsr0oTbuIV4U%3D"}]} |
| CF-RAY | 9c729e4d08e12891-AMM |
{"id":195,"title":"Phone","price":500,"description":"New Phone"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is as expected | 1 | 0 | 0 |
| Total | 1 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Updates an existing product's information by its unique identifier.
## Method & Endpoint
- **Method**: `PUT`
- **Endpoint**: `https://dummyjson.com/products/20`
## Authentication
- **Required**: No
- This is a public endpoint for demonstration purposes
## Parameters
### Path Variables
- `productId` (required) - The unique identifier of the product to update
### Request Body (JSON)
```json
{
"title": "Updated Product Name",
"price": 1299,
"description": "Updated description",
"stock": 75
}
```
**Note**: Only include fields you want to update. Unspecified fields remain unchanged.
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**: Returns the updated product with all fields
```json
{
"id": 1,
"title": "Updated Product Name",
"price": 1299,
"description": "Updated description",
"stock": 75,
...
}
```
## Tests Included
- Validates response status code is 200
- Verifies updated fields match request
- Checks product ID remains unchanged
- Confirms other fields are preserved
| Header Name | Header Value |
|---|---|
| Content-Type | application/json |
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjcsImV4cCI6MTc2OTk2NDc2N30.GZCUVvd0dz0StrtG1qYL4I5ptF4oYmGzmo6UUvIzx7o |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 124737be-0ad2-4bb9-940f-5181c639c092 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 37 |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjgsImV4cCI6MTc2OTk2Mjk2OH0.YBAfjxIdnj23YvRfMfsLLiM8QD-KCpxm5JeX6g5iot0; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjgsImV4cCI6MTc3MjU1MzE2OH0.e3x6QVuCW25JTOT-scFLoJaHoODcx4UpJLxL9xGB_zc |
{
"title": "iPhone Galaxy +1"
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:52:52 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 97 |
| x-ratelimit-reset | 1769961180 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"192-iTF/37dqMdcAfA3B6GoiupdWK8A" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=digxAbOK%2BMMvew1lhCDdbR4FOeMQluR%2F85njpkhMG3eSbqF14%2Fjongmp54hQtnSAtUfFdRxxEtc3tl3LG894F3IhwkYvk%2F7zeDdKpIo%3D"}]} |
| Content-Encoding | br |
| CF-RAY | 9c729e4eaa5d2891-AMM |
{"id":20,"title":"iPhone Galaxy +1","price":4.99,"discountPercentage":9.33,"stock":10,"rating":4.8,"images":["https://cdn.dummyjson.com/product-images/groceries/cooking-oil/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/cooking-oil/thumbnail.webp","description":"Versatile cooking oil suitable for frying, sautéing, and various culinary applications.","category":"groceries"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
| Header Name | Header Value |
|---|---|
| Content-Type | application/json |
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjcsImV4cCI6MTc2OTk2NDc2N30.GZCUVvd0dz0StrtG1qYL4I5ptF4oYmGzmo6UUvIzx7o |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | ffc75773-1ac5-4145-9518-84db1cf2ae40 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 37 |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjgsImV4cCI6MTc2OTk2Mjk2OH0.YBAfjxIdnj23YvRfMfsLLiM8QD-KCpxm5JeX6g5iot0; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjgsImV4cCI6MTc3MjU1MzE2OH0.e3x6QVuCW25JTOT-scFLoJaHoODcx4UpJLxL9xGB_zc |
{
"title": "iPhone Galaxy +1"
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:52:52 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 96 |
| x-ratelimit-reset | 1769961180 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"2d-0WtrwaXzWoposFPTOmioRGKyXA8" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=%2F9OsyqG%2BIiT23g9qcLRlFvzSt%2F96grWdI3ybkcKTkLI3OitugFrudMYNhFcHJd4MsI4A7v5Z%2BSlzlQRCt54wKHY7sCvraQZWZwlQIAM%3D"}]} |
| Content-Encoding | br |
| CF-RAY | 9c729e503c352891-AMM |
{"message":"Product with id '-20' not found"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 404 | 1 | 0 | 0 |
| Response contains not found | 1 | 0 | 0 |
| Error message exists | 1 | 0 | 0 |
| Total | 3 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Deletes a specific product from the system by its unique identifier.
## Method & Endpoint
- **Method**: `DELETE`
- **Endpoint**: `https://dummyjson.com/products/20`
## Authentication
- **Required**: No
- This is a public endpoint for demonstration purposes
## Parameters
### Path Variables
- `productId` (required) - The unique identifier of the product to delete
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**: Returns the deleted product information with deletion confirmation
```json
{
"id": 1,
"title": "Product Name",
"price": 549,
"isDeleted": true,
"deletedOn": "2024-01-01T12:00:00.000Z",
...
}
```
## Tests Included
- Validates response status code is 200
- Verifies `isDeleted` flag is true
- Checks deletion timestamp is present
- Confirms deleted product details are returned
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjcsImV4cCI6MTc2OTk2NDc2N30.GZCUVvd0dz0StrtG1qYL4I5ptF4oYmGzmo6UUvIzx7o |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 445071f3-c7a7-4176-8267-80de911ba393 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjgsImV4cCI6MTc2OTk2Mjk2OH0.YBAfjxIdnj23YvRfMfsLLiM8QD-KCpxm5JeX6g5iot0; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjgsImV4cCI6MTc3MjU1MzE2OH0.e3x6QVuCW25JTOT-scFLoJaHoODcx4UpJLxL9xGB_zc |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:52:52 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 95 |
| x-ratelimit-reset | 1769961177 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"594-sWlvDs7ccJ/jQWSSBDFGKZKdhW4" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=Gox7I6pf43YFmE2FyIChTnEIR9X7vOxnNkbRDJzbSCrbD0YScDB1qAaB8pEPNHKVtLKanIcxzEDjaCjH8x4goevF1%2Fx%2BJL7QPeP5n3M%3D"}]} |
| CF-RAY | 9c729e51ce2e2891-AMM |
{"id":20,"title":"Cooking Oil","description":"Versatile cooking oil suitable for frying, sautéing, and various culinary applications.","category":"groceries","price":4.99,"discountPercentage":9.33,"rating":4.8,"stock":10,"tags":["cooking essentials"],"sku":"GRO-BRD-COO-020","weight":5,"dimensions":{"width":19.95,"height":27.54,"depth":24.86},"warrantyInformation":"Lifetime warranty","shippingInformation":"Ships in 1-2 business days","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Very happy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Victoria McDonald","reviewerEmail":"victoria.mcdonald@x.dummyjson.com"},{"rating":2,"comment":"Would not recommend!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Hazel Evans","reviewerEmail":"hazel.evans@x.dummyjson.com"},{"rating":5,"comment":"Would buy again!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Zoe Bennett","reviewerEmail":"zoe.bennett@x.dummyjson.com"}],"returnPolicy":"30 days return policy","minimumOrderQuantity":46,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"4874727824518","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/cooking-oil/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/cooking-oil/thumbnail.webp","isDeleted":true,"deletedOn":"2026-02-01T15:52:52.841Z"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| product Deleted successfully | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 3 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Retrieves a paginated list of all shopping carts in the system.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/carts`
## Authentication
- **Required**: No
- This is a public endpoint that doesn't require authentication
## Parameters
- No required parameters
- Optional query parameters: `limit`, `skip` for pagination
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
{
"carts": [
{
"id": 1,
"products": [
{
"id": 1,
"title": "Product Name",
"price": 549,
"quantity": 2,
"total": 1098
}
],
"total": 1098,
"discountedTotal": 985,
"userId": 1,
"totalProducts": 1,
"totalQuantity": 2
}
],
"total": 20,
"skip": 0,
"limit": 30
}
```
## Tests Included
- Validates response status code is 200
- Verifies carts array structure
- Checks pagination metadata
- Confirms cart totals and product details
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjcsImV4cCI6MTc2OTk2NDc2N30.GZCUVvd0dz0StrtG1qYL4I5ptF4oYmGzmo6UUvIzx7o |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 915ad12d-4c13-463e-aa9a-966cac8135a5 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjgsImV4cCI6MTc2OTk2Mjk2OH0.YBAfjxIdnj23YvRfMfsLLiM8QD-KCpxm5JeX6g5iot0; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjgsImV4cCI6MTc3MjU1MzE2OH0.e3x6QVuCW25JTOT-scFLoJaHoODcx4UpJLxL9xGB_zc |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:52:53 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 95 |
| x-ratelimit-reset | 1769961179 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"7d39-+rQ7kyHBCLIn9tjTeKVf4oegWkQ" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=8G15LPBV0kqfYFsruuk0RmzaP%2FluME52VxowYQKMcsHoiOkkYlTxw7WNF09uC9jKsz7y3mgBcdgzAl7XXIe%2BaRASTLpF33u4EKZPrDU%3D"}]} |
| CF-RAY | 9c729e537ffc2891-AMM |
{"carts":[{"id":1,"products":[{"id":168,"title":"Charger SXT RWD","price":32999.99,"quantity":3,"total":98999.97,"discountPercentage":13.39,"discountedTotal":85743.87,"thumbnail":"https://cdn.dummyjson.com/products/images/vehicle/Charger%20SXT%20RWD/thumbnail.png"},{"id":78,"title":"Apple MacBook Pro 14 Inch Space Grey","price":1999.99,"quantity":2,"total":3999.98,"discountPercentage":18.52,"discountedTotal":3259.18,"thumbnail":"https://cdn.dummyjson.com/products/images/laptops/Apple%20MacBook%20Pro%2014%20Inch%20Space%20Grey/thumbnail.png"},{"id":183,"title":"Green Oval Earring","price":24.99,"quantity":5,"total":124.94999999999999,"discountPercentage":6.28,"discountedTotal":117.1,"thumbnail":"https://cdn.dummyjson.com/products/images/womens-jewellery/Green%20Oval%20Earring/thumbnail.png"},{"id":100,"title":"Apple Airpods","price":129.99,"quantity":5,"total":649.95,"discountPercentage":12.84,"discountedTotal":566.5,"thumbnail":"https://cdn.dummyjson.com/products/images/mobile-accessories/Apple%20Airpods/thumbnail.png"}],"total":103774.85,"discountedTotal":89686.65,"userId":33,"totalProducts":4,"totalQuantity":15},{"id":2,"products":[{"id":144,"title":"Cricket Helmet","price":44.99,"quantity":4,"total":179.96,"discountPercentage":11.47,"discountedTotal":159.32,"thumbnail":"https://cdn.dummyjson.com/products/images/sports-accessories/Cricket%20Helmet/thumbnail.png"},{"id":124,"title":"iPhone X","price":899.99,"quantity":4,"total":3599.96,"discountPercentage":8.03,"discountedTotal":3310.88,"thumbnail":"https://cdn.dummyjson.com/products/images/smartphones/iPhone%20X/thumbnail.png"},{"id":148,"title":"Golf Ball","price":9.99,"quantity":4,"total":39.96,"discountPercentage":11.24,"discountedTotal":35.47,"thumbnail":"https://cdn.dummyjson.com/products/images/sports-accessories/Golf%20Ball/thumbnail.png"},{"id":122,"title":"iPhone 6","price":299.99,"quantity":3,"total":899.97,"discountPercentage":19.64,"discountedTotal":723.22,"thumbnail":"https://cdn.dummyjson.com/products/images/smartphones/iPhone%206/thumbnail.png"},{"id":110,"title":"Selfie Lamp with iPhone","price":14.99,"quantity":5,"total":74.95,"discountPercentage":19.87,"discountedTotal":60.06,"thumbnail":"https://cdn.dummyjson.com/products/images/mobile-accessories/Selfie%20Lamp%20with%20iPhone/thumbnail.png"}],"total":4794.8,"discountedTotal":4288.95,"userId":142,"totalProducts":5,"totalQuantity":20},{"id":3,"products":[{"id":98,"title":"Rolex Submariner Watch","price":13999.99,"quantity":1,"total":13999.99,"discountPercentage":16.35,"discountedTotal":11710.99,"thumbnail":"https://cdn.dummyjson.com/products/images/mens-watches/Rolex%20Submariner%20Watch/thumbnail.png"},{"id":125,"title":"Oppo A57","price":249.99,"quantity":5,"total":1249.95,"discountPercentage":16.54,"discountedTotal":1043.21,"thumbnail":"https://cdn.dummyjson.com/products/images/smartphones/Oppo%20A57/thumbnail.png"},{"id":55,"title":"Egg Slicer","price":6.99,"quantity":2,"total":13.98,"discountPercentage":16.04,"discountedTotal":11.74,"thumbnail":"https://cdn.dummyjson.com/products/images/kitchen-accessories/Egg%20Slicer/thumbnail.png"},{"id":62,"title":"Ice Cube Tray","price":5.99,"quantity":2,"total":11.98,"discountPercentage":8.25,"discountedTotal":10.99,"thumbnail":"https://cdn.dummyjson.com/products/images/kitchen-accessories/Ice%20Cube%20Tray/thumbnail.png"},{"id":132,"title":"Samsung Galaxy S8","price":499.99,"quantity":3,"total":1499.97,"discountPercentage":8.84,"discountedTotal":1367.37,"thumbnail":"https://cdn.dummyjson.com/products/images/smartphones/Samsung%20Galaxy%20S8/thumbnail.png"}],"total":16775.87,"discountedTotal":14144.3,"userId":108,"totalProducts":5,"totalQuantity":13},{"id":4,"products":[{"id":187,"title":"Golden Shoes Woman","price":49.99,"quantity":5,"total":249.95000000000002,"discountPercentage":1.64,"discountedTotal":245.85,"thumbnail":"https://cdn.dummyjson.com/products/images/womens-shoes/Golden%20Shoes%20Woman/thumbnail.png"},{"id":40,"title":"Strawberry","price":3.99,"quantity":5,"total":19.950000000000003,"discountPercentage":4.6,"discountedTotal":19.03,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Strawberry/thumbnail.png"},{"id":156,"title":"Green and Black Glasses","price":34.99,"quantity":5,"total":174.95000000000002,"discountPercentage":4.34,"discountedTotal":167.36,"thumbnail":"https://cdn.dummyjson.com/products/images/sunglasses/Green%20and%20Black%20Glasses/thumbnail.png"},{"id":62,"title":"Ice Cube Tray","price":5.99,"quantity":2,"total":11.98,"discountPercentage":8.25,"discountedTotal":10.99,"thumbnail":"https://cdn.dummyjson.com/products/images/kitchen-accessories/Ice%20Cube%20Tray/thumbnail.png"}],"total":456.83,"discountedTotal":443.23,"userId":87,"totalProducts":4,"totalQuantity":17},{"id":5,"products":[{"id":108,"title":"iPhone 12 Silicone Case with MagSafe Plum","price":29.99,"quantity":2,"total":59.98,"discountPercentage":14.68,"discountedTotal":51.17,"thumbnail":"https://cdn.dummyjson.com/products/images/mobile-accessories/iPhone%2012%20Silicone%20Case%20with%20MagSafe%20Plum/thumbnail.png"},{"id":138,"title":"Baseball Ball","price":8.99,"quantity":5,"total":44.95,"discountPercentage":18.49,"discountedTotal":36.64,"thumbnail":"https://cdn.dummyjson.com/products/images/sports-accessories/Baseball%20Ball/thumbnail.png"},{"id":157,"title":"Party Glasses","price":19.99,"quantity":2,"total":39.98,"discountPercentage":19.17,"discountedTotal":32.32,"thumbnail":"https://cdn.dummyjson.com/products/images/sunglasses/Party%20Glasses/thumbnail.png"},{"id":8,"title":"Dior J'adore","price":89.99,"quantity":3,"total":269.96999999999997,"discountPercentage":10.79,"discountedTotal":240.84,"thumbnail":"https://cdn.dummyjson.com/products/images/fragrances/Dior%20J'adore/thumbnail.png"},{"id":80,"title":"Huawei Matebook X Pro","price":1399.99,"quantity":5,"total":6999.95,"discountPercentage":9.99,"discountedTotal":6300.65,"thumbnail":"https://cdn.dummyjson.com/products/images/laptops/Huawei%20Matebook%20X%20Pro/thumbnail.png"},{"id":28,"title":"Ice Cream","price":5.49,"quantity":3,"total":16.47,"discountPercentage":10,"discountedTotal":14.82,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Ice%20Cream/thumbnail.png"}],"total":7431.3,"discountedTotal":6676.44,"userId":134,"totalProducts":6,"totalQuantity":20},{"id":6,"products":[{"id":172,"title":"Blue Women's Handbag","price":49.99,"quantity":5,"total":249.95000000000002,"discountPercentage":8.08,"discountedTotal":229.75,"thumbnail":"https://cdn.dummyjson.com/products/images/womens-bags/Blue%20Women's%20Handbag/thumbnail.png"},{"id":112,"title":"TV Studio Camera Pedestal","price":499.99,"quantity":3,"total":1499.97,"discountPercentage":15.69,"discountedTotal":1264.62,"thumbnail":"https://cdn.dummyjson.com/products/images/mobile-accessories/TV%20Studio%20Camera%20Pedestal/thumbnail.png"},{"id":97,"title":"Rolex Datejust","price":10999.99,"quantity":3,"total":32999.97,"discountPercentage":10.58,"discountedTotal":29508.57,"thumbnail":"https://cdn.dummyjson.com/products/images/mens-watches/Rolex%20Datejust/thumbnail.png"},{"id":128,"title":"Realme C35","price":149.99,"quantity":3,"total":449.97,"discountPercentage":3.97,"discountedTotal":432.11,"thumbnail":"https://cdn.dummyjson.com/products/images/smartphones/Realme%20C35/thumbnail.png"}],"total":35199.86,"discountedTotal":31435.05,"userId":150,"totalProducts":4,"totalQuantity":14},{"id":7,"products":[{"id":167,"title":"300 Touring","price":28999.99,"quantity":5,"total":144999.95,"discountPercentage":11.78,"discountedTotal":127918.96,"thumbnail":"https://cdn.dummyjson.com/products/images/vehicle/300%20Touring/thumbnail.png"},{"id":111,"title":"Selfie Stick Monopod","price":12.99,"quantity":4,"total":51.96,"discountPercentage":10.98,"discountedTotal":46.25,"thumbnail":"https://cdn.dummyjson.com/products/images/mobile-accessories/Selfie%20Stick%20Monopod/thumbnail.png"},{"id":129,"title":"Realme X","price":299.99,"quantity":2,"total":599.98,"discountPercentage":10.13,"discountedTotal":539.2,"thumbnail":"https://cdn.dummyjson.com/products/images/smartphones/Realme%20X/thumbnail.png"}],"total":145651.89,"discountedTotal":128504.41,"userId":86,"totalProducts":3,"totalQuantity":11},{"id":8,"products":[{"id":117,"title":"Sportbike Motorcycle","price":7499.99,"quantity":2,"total":14999.98,"discountPercentage":19.83,"discountedTotal":12025.48,"thumbnail":"https://cdn.dummyjson.com/products/images/motorcycle/Sportbike%20Motorcycle/thumbnail.png"},{"id":18,"title":"Cat Food","price":8.99,"quantity":4,"total":35.96,"discountPercentage":1.15,"discountedTotal":35.55,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Cat%20Food/thumbnail.png"},{"id":105,"title":"Apple MagSafe Battery Pack","price":99.99,"quantity":5,"total":499.95,"discountPercentage":7.14,"discountedTotal":464.25,"thumbnail":"https://cdn.dummyjson.com/products/images/mobile-accessories/Apple%20MagSafe%20Battery%20Pack/thumbnail.png"},{"id":6,"title":"Calvin Klein CK One","price":49.99,"quantity":3,"total":149.97,"discountPercentage":5.67,"discountedTotal":141.47,"thumbnail":"https://cdn.dummyjson.com/products/images/fragrances/Calvin%20Klein%20CK%20One/thumbnail.png"}],"total":15685.86,"discountedTotal":12666.75,"userId":23,"totalProducts":4,"totalQuantity":14},{"id":9,"products":[{"id":178,"title":"Corset Leather With Skirt","price":89.99,"quantity":2,"total":179.98,"discountPercentage":12.59,"discountedTotal":157.32,"thumbnail":"https://cdn.dummyjson.com/products/images/womens-dresses/Corset%20Leather%20With%20Skirt/thumbnail.png"},{"id":191,"title":"Rolex Cellini Moonphase","price":15999.99,"quantity":4,"total":63999.96,"discountPercentage":3.26,"discountedTotal":61913.56,"thumbnail":"https://cdn.dummyjson.com/products/images/womens-watches/Rolex%20Cellini%20Moonphase/thumbnail.png"},{"id":47,"title":"Table Lamp","price":49.99,"quantity":2,"total":99.98,"discountPercentage":13.74,"discountedTotal":86.24,"thumbnail":"https://cdn.dummyjson.com/products/images/home-decoration/Table%20Lamp/thumbnail.png"},{"id":134,"title":"Vivo S1","price":249.99,"quantity":5,"total":1249.95,"discountPercentage":5.64,"discountedTotal":1179.45,"thumbnail":"https://cdn.dummyjson.com/products/images/smartphones/Vivo%20S1/thumbnail.png"}],"total":65529.87,"discountedTotal":63336.57,"userId":194,"totalProducts":4,"totalQuantity":13},{"id":10,"products":[{"id":190,"title":"IWC Ingenieur Automatic Steel","price":4999.99,"quantity":5,"total":24999.949999999997,"discountPercentage":12.34,"discountedTotal":21914.96,"thumbnail":"https://cdn.dummyjson.com/products/images/womens-watches/IWC%20Ingenieur%20Automatic%20Steel/thumbnail.png"},{"id":94,"title":"Longines Master Collection","price":1499.99,"quantity":3,"total":4499.97,"discountPercentage":16.44,"discountedTotal":3760.17,"thumbnail":"https://cdn.dummyjson.com/products/images/mens-watches/Longines%20Master%20Collection/thumbnail.png"}],"total":29499.92,"discountedTotal":25675.13,"userId":160,"totalProducts":2,"totalQuantity":8},{"id":11,"products":[{"id":88,"title":"Nike Air Jordan 1 Red And Black","price":149.99,"quantity":1,"total":149.99,"discountPercentage":17.18,"discountedTotal":124.22,"thumbnail":"https://cdn.dummyjson.com/products/images/mens-shoes/Nike%20Air%20Jordan%201%20Red%20And%20Black/thumbnail.png"},{"id":32,"title":"Milk","price":3.49,"quantity":3,"total":10.47,"discountPercentage":9.36,"discountedTotal":9.49,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Milk/thumbnail.png"},{"id":74,"title":"Spoon","price":4.99,"quantity":3,"total":14.97,"discountPercentage":2.78,"discountedTotal":14.55,"thumbnail":"https://cdn.dummyjson.com/products/images/kitchen-accessories/Spoon/thumbnail.png"},{"id":145,"title":"Cricket Wicket","price":29.99,"quantity":3,"total":89.97,"discountPercentage":17.87,"discountedTotal":73.89,"thumbnail":"https://cdn.dummyjson.com/products/images/sports-accessories/Cricket%20Wicket/thumbnail.png"},{"id":26,"title":"Green Chili Pepper","price":0.99,"quantity":3,"total":2.9699999999999998,"discountPercentage":18.69,"discountedTotal":2.41,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Green%20Chili%20Pepper/thumbnail.png"},{"id":127,"title":"Oppo K1","price":299.99,"quantity":1,"total":299.99,"discountPercentage":15.93,"discountedTotal":252.2,"thumbnail":"https://cdn.dummyjson.com/products/images/smartphones/Oppo%20K1/thumbnail.png"}],"total":568.36,"discountedTotal":476.76,"userId":172,"totalProducts":6,"totalQuantity":14},{"id":12,"products":[{"id":63,"title":"Kitchen Sieve","price":7.99,"quantity":4,"total":31.96,"discountPercentage":18.8,"discountedTotal":25.95,"thumbnail":"https://cdn.dummyjson.com/products/images/kitchen-accessories/Kitchen%20Sieve/thumbnail.png"},{"id":181,"title":"Marni Red & Black Suit","price":179.99,"quantity":5,"total":899.95,"discountPercentage":14.21,"discountedTotal":772.07,"thumbnail":"https://cdn.dummyjson.com/products/images/womens-dresses/Marni%20Red%20&%20Black%20Suit/thumbnail.png"}],"total":931.91,"discountedTotal":798.02,"userId":202,"totalProducts":2,"totalQuantity":9},{"id":13,"products":[{"id":85,"title":"Man Plaid Shirt","price":34.99,"quantity":2,"total":69.98,"discountPercentage":3.7,"discountedTotal":67.39,"thumbnail":"https://cdn.dummyjson.com/products/images/mens-shirts/Man%20Plaid%20Shirt/thumbnail.png"},{"id":109,"title":"Monopod","price":19.99,"quantity":3,"total":59.97,"discountPercentage":12.95,"discountedTotal":52.2,"thumbnail":"https://cdn.dummyjson.com/products/images/mobile-accessories/Monopod/thumbnail.png"},{"id":160,"title":"Samsung Galaxy Tab S8 Plus Grey","price":599.99,"quantity":1,"total":599.99,"discountPercentage":4.31,"discountedTotal":574.13,"thumbnail":"https://cdn.dummyjson.com/products/images/tablets/Samsung%20Galaxy%20Tab%20S8%20Plus%20Grey/thumbnail.png"},{"id":163,"title":"Girl Summer Dress","price":19.99,"quantity":3,"total":59.97,"discountPercentage":9.44,"discountedTotal":54.31,"thumbnail":"https://cdn.dummyjson.com/products/images/tops/Girl%20Summer%20Dress/thumbnail.png"},{"id":31,"title":"Lemon","price":0.79,"quantity":4,"total":3.16,"discountPercentage":12.32,"discountedTotal":2.77,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Lemon/thumbnail.png"}],"total":793.07,"discountedTotal":750.8,"userId":41,"totalProducts":5,"totalQuantity":13},{"id":14,"products":[{"id":92,"title":"Sports Sneakers Off White Red","price":109.99,"quantity":3,"total":329.96999999999997,"discountPercentage":17.73,"discountedTotal":271.47,"thumbnail":"https://cdn.dummyjson.com/products/images/mens-shoes/Sports%20Sneakers%20Off%20White%20Red/thumbnail.png"},{"id":54,"title":"Citrus Squeezer Yellow","price":8.99,"quantity":5,"total":44.95,"discountPercentage":6.3,"discountedTotal":42.12,"thumbnail":"https://cdn.dummyjson.com/products/images/kitchen-accessories/Citrus%20Squeezer%20Yellow/thumbnail.png"},{"id":76,"title":"Wooden Rolling Pin","price":11.99,"quantity":1,"total":11.99,"discountPercentage":8.45,"discountedTotal":10.98,"thumbnail":"https://cdn.dummyjson.com/products/images/kitchen-accessories/Wooden%20Rolling%20Pin/thumbnail.png"},{"id":44,"title":"Family Tree Photo Frame","price":29.99,"quantity":5,"total":149.95,"discountPercentage":10.68,"discountedTotal":133.94,"thumbnail":"https://cdn.dummyjson.com/products/images/home-decoration/Family%20Tree%20Photo%20Frame/thumbnail.png"},{"id":67,"title":"Mug Tree Stand","price":15.99,"quantity":3,"total":47.97,"discountPercentage":16.65,"discountedTotal":39.98,"thumbnail":"https://cdn.dummyjson.com/products/images/kitchen-accessories/Mug%20Tree%20Stand/thumbnail.png"},{"id":16,"title":"Apple","price":1.99,"quantity":1,"total":1.99,"discountPercentage":11.74,"discountedTotal":1.76,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Apple/thumbnail.png"}],"total":586.82,"discountedTotal":500.25,"userId":94,"totalProducts":6,"totalQuantity":18},{"id":15,"products":[{"id":11,"title":"Annibale Colombo Bed","price":1899.99,"quantity":5,"total":9499.95,"discountPercentage":8.09,"discountedTotal":8731.4,"thumbnail":"https://cdn.dummyjson.com/products/images/furniture/Annibale%20Colombo%20Bed/thumbnail.png"},{"id":133,"title":"Samsung Galaxy S10","price":699.99,"quantity":3,"total":2099.9700000000003,"discountPercentage":1.12,"discountedTotal":2076.45,"thumbnail":"https://cdn.dummyjson.com/products/images/smartphones/Samsung%20Galaxy%20S10/thumbnail.png"},{"id":111,"title":"Selfie Stick Monopod","price":12.99,"quantity":3,"total":38.97,"discountPercentage":10.98,"discountedTotal":34.69,"thumbnail":"https://cdn.dummyjson.com/products/images/mobile-accessories/Selfie%20Stick%20Monopod/thumbnail.png"},{"id":162,"title":"Blue Frock","price":29.99,"quantity":3,"total":89.97,"discountPercentage":3.86,"discountedTotal":86.5,"thumbnail":"https://cdn.dummyjson.com/products/images/tops/Blue%20Frock/thumbnail.png"},{"id":30,"title":"Kiwi","price":2.49,"quantity":5,"total":12.450000000000001,"discountPercentage":4.34,"discountedTotal":11.91,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Kiwi/thumbnail.png"}],"total":11741.31,"discountedTotal":10940.95,"userId":11,"totalProducts":5,"totalQuantity":19},{"id":16,"products":[{"id":19,"title":"Chicken Meat","price":9.99,"quantity":2,"total":19.98,"discountPercentage":13.37,"discountedTotal":17.31,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Chicken%20Meat/thumbnail.png"},{"id":152,"title":"Tennis Racket","price":49.99,"quantity":3,"total":149.97,"discountPercentage":9.13,"discountedTotal":136.28,"thumbnail":"https://cdn.dummyjson.com/products/images/sports-accessories/Tennis%20Racket/thumbnail.png"},{"id":35,"title":"Potatoes","price":2.29,"quantity":1,"total":2.29,"discountPercentage":1.69,"discountedTotal":2.25,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Potatoes/thumbnail.png"}],"total":172.24,"discountedTotal":155.84,"userId":200,"totalProducts":3,"totalQuantity":6},{"id":17,"products":[{"id":1,"title":"Essence Mascara Lash Princess","price":9.99,"quantity":2,"total":19.98,"discountPercentage":0.63,"discountedTotal":19.85,"thumbnail":"https://cdn.dummyjson.com/products/images/beauty/Essence%20Mascara%20Lash%20Princess/thumbnail.png"},{"id":60,"title":"Grater Black","price":10.99,"quantity":3,"total":32.97,"discountPercentage":16.62,"discountedTotal":27.49,"thumbnail":"https://cdn.dummyjson.com/products/images/kitchen-accessories/Grater%20Black/thumbnail.png"},{"id":74,"title":"Spoon","price":4.99,"quantity":4,"total":19.96,"discountPercentage":2.78,"discountedTotal":19.41,"thumbnail":"https://cdn.dummyjson.com/products/images/kitchen-accessories/Spoon/thumbnail.png"},{"id":44,"title":"Family Tree Photo Frame","price":29.99,"quantity":4,"total":119.96,"discountPercentage":10.68,"discountedTotal":107.15,"thumbnail":"https://cdn.dummyjson.com/products/images/home-decoration/Family%20Tree%20Photo%20Frame/thumbnail.png"}],"total":192.87,"discountedTotal":173.9,"userId":141,"totalProducts":4,"totalQuantity":13},{"id":18,"products":[{"id":127,"title":"Oppo K1","price":299.99,"quantity":4,"total":1199.96,"discountPercentage":15.93,"discountedTotal":1008.81,"thumbnail":"https://cdn.dummyjson.com/products/images/smartphones/Oppo%20K1/thumbnail.png"},{"id":24,"title":"Fish Steak","price":14.99,"quantity":3,"total":44.97,"discountPercentage":7.66,"discountedTotal":41.53,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Fish%20Steak/thumbnail.png"},{"id":20,"title":"Cooking Oil","price":4.99,"quantity":5,"total":24.950000000000003,"discountPercentage":12.62,"discountedTotal":21.8,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Cooking%20Oil/thumbnail.png"},{"id":154,"title":"Black Sun Glasses","price":29.99,"quantity":3,"total":89.97,"discountPercentage":1.11,"discountedTotal":88.97,"thumbnail":"https://cdn.dummyjson.com/products/images/sunglasses/Black%20Sun%20Glasses/thumbnail.png"},{"id":44,"title":"Family Tree Photo Frame","price":29.99,"quantity":2,"total":59.98,"discountPercentage":10.68,"discountedTotal":53.57,"thumbnail":"https://cdn.dummyjson.com/products/images/home-decoration/Family%20Tree%20Photo%20Frame/thumbnail.png"},{"id":5,"title":"Red Nail Polish","price":8.99,"quantity":5,"total":44.95,"discountPercentage":3.76,"discountedTotal":43.26,"thumbnail":"https://cdn.dummyjson.com/products/images/beauty/Red%20Nail%20Polish/thumbnail.png"}],"total":1464.78,"discountedTotal":1257.94,"userId":189,"totalProducts":6,"totalQuantity":22},{"id":19,"products":[{"id":187,"title":"Golden Shoes Woman","price":49.99,"quantity":3,"total":149.97,"discountPercentage":1.64,"discountedTotal":147.51,"thumbnail":"https://cdn.dummyjson.com/products/images/womens-shoes/Golden%20Shoes%20Woman/thumbnail.png"},{"id":153,"title":"Volleyball","price":11.99,"quantity":5,"total":59.95,"discountPercentage":16.05,"discountedTotal":50.33,"thumbnail":"https://cdn.dummyjson.com/products/images/sports-accessories/Volleyball/thumbnail.png"},{"id":34,"title":"Nescafe Coffee","price":7.99,"quantity":3,"total":23.97,"discountPercentage":8.31,"discountedTotal":21.98,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Nescafe%20Coffee/thumbnail.png"},{"id":130,"title":"Realme XT","price":349.99,"quantity":2,"total":699.98,"discountPercentage":17.86,"discountedTotal":574.96,"thumbnail":"https://cdn.dummyjson.com/products/images/smartphones/Realme%20XT/thumbnail.png"}],"total":933.87,"discountedTotal":794.78,"userId":59,"totalProducts":4,"totalQuantity":13},{"id":20,"products":[{"id":107,"title":"Beats Flex Wireless Earphones","price":49.99,"quantity":1,"total":49.99,"discountPercentage":8.79,"discountedTotal":45.6,"thumbnail":"https://cdn.dummyjson.com/products/images/mobile-accessories/Beats%20Flex%20Wireless%20Earphones/thumbnail.png"},{"id":193,"title":"Watch Gold for Women","price":799.99,"quantity":3,"total":2399.9700000000003,"discountPercentage":19.53,"discountedTotal":1931.26,"thumbnail":"https://cdn.dummyjson.com/products/images/womens-watches/Watch%20Gold%20for%20Women/thumbnail.png"},{"id":100,"title":"Apple Airpods","price":129.99,"quantity":3,"total":389.97,"discountPercentage":12.84,"discountedTotal":339.9,"thumbnail":"https://cdn.dummyjson.com/products/images/mobile-accessories/Apple%20Airpods/thumbnail.png"},{"id":90,"title":"Puma Future Rider Trainers","price":89.99,"quantity":5,"total":449.95,"discountPercentage":14.7,"discountedTotal":383.81,"thumbnail":"https://cdn.dummyjson.com/products/images/mens-shoes/Puma%20Future%20Rider%20Trainers/thumbnail.png"},{"id":118,"title":"Attitude Super Leaves Hand Soap","price":8.99,"quantity":5,"total":44.95,"discountPercentage":7.23,"discountedTotal":41.7,"thumbnail":"https://cdn.dummyjson.com/products/images/skin-care/Attitude%20Super%20Leaves%20Hand%20Soap/thumbnail.png"},{"id":166,"title":"Tartan Dress","price":39.99,"quantity":5,"total":199.95000000000002,"discountPercentage":2.82,"discountedTotal":194.31,"thumbnail":"https://cdn.dummyjson.com/products/images/tops/Tartan%20Dress/thumbnail.png"}],"total":3534.78,"discountedTotal":2936.58,"userId":90,"totalProducts":6,"totalQuantity":22},{"id":21,"products":[{"id":77,"title":"Yellow Peeler","price":5.99,"quantity":2,"total":11.98,"discountPercentage":13.16,"discountedTotal":10.4,"thumbnail":"https://cdn.dummyjson.com/products/images/kitchen-accessories/Yellow%20Peeler/thumbnail.png"},{"id":91,"title":"Sports Sneakers Off White & Red","price":119.99,"quantity":2,"total":239.98,"discountPercentage":1.96,"discountedTotal":235.28,"thumbnail":"https://cdn.dummyjson.com/products/images/mens-shoes/Sports%20Sneakers%20Off%20White%20&%20Red/thumbnail.png"}],"total":251.96,"discountedTotal":245.68,"userId":42,"totalProducts":2,"totalQuantity":4},{"id":22,"products":[{"id":73,"title":"Spice Rack","price":19.99,"quantity":5,"total":99.94999999999999,"discountPercentage":8.74,"discountedTotal":91.21,"thumbnail":"https://cdn.dummyjson.com/products/images/kitchen-accessories/Spice%20Rack/thumbnail.png"},{"id":2,"title":"Eyeshadow Palette with Mirror","price":19.99,"quantity":2,"total":39.98,"discountPercentage":0.7,"discountedTotal":39.7,"thumbnail":"https://cdn.dummyjson.com/products/images/beauty/Eyeshadow%20Palette%20with%20Mirror/thumbnail.png"},{"id":69,"title":"Plate","price":3.99,"quantity":2,"total":7.98,"discountPercentage":16,"discountedTotal":6.7,"thumbnail":"https://cdn.dummyjson.com/products/images/kitchen-accessories/Plate/thumbnail.png"},{"id":155,"title":"Classic Sun Glasses","price":24.99,"quantity":3,"total":74.97,"discountPercentage":9.27,"discountedTotal":68.02,"thumbnail":"https://cdn.dummyjson.com/products/images/sunglasses/Classic%20Sun%20Glasses/thumbnail.png"}],"total":222.88,"discountedTotal":205.63,"userId":140,"totalProducts":4,"totalQuantity":12},{"id":23,"products":[{"id":82,"title":"New DELL XPS 13 9300 Laptop","price":1499.99,"quantity":5,"total":7499.95,"discountPercentage":3.9,"discountedTotal":7207.45,"thumbnail":"https://cdn.dummyjson.com/products/images/laptops/New%20DELL%20XPS%2013%209300%20Laptop/thumbnail.png"},{"id":172,"title":"Blue Women's Handbag","price":49.99,"quantity":4,"total":199.96,"discountPercentage":8.08,"discountedTotal":183.8,"thumbnail":"https://cdn.dummyjson.com/products/images/womens-bags/Blue%20Women's%20Handbag/thumbnail.png"},{"id":41,"title":"Tissue Paper Box","price":2.49,"quantity":2,"total":4.98,"discountPercentage":2.74,"discountedTotal":4.84,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Tissue%20Paper%20Box/thumbnail.png"},{"id":37,"title":"Red Onions","price":1.99,"quantity":4,"total":7.96,"discountPercentage":8.95,"discountedTotal":7.25,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Red%20Onions/thumbnail.png"},{"id":138,"title":"Baseball Ball","price":8.99,"quantity":5,"total":44.95,"discountPercentage":18.49,"discountedTotal":36.64,"thumbnail":"https://cdn.dummyjson.com/products/images/sports-accessories/Baseball%20Ball/thumbnail.png"}],"total":7757.8,"discountedTotal":7439.98,"userId":147,"totalProducts":5,"totalQuantity":20},{"id":24,"products":[{"id":108,"title":"iPhone 12 Silicone Case with MagSafe Plum","price":29.99,"quantity":5,"total":149.95,"discountPercentage":14.68,"discountedTotal":127.94,"thumbnail":"https://cdn.dummyjson.com/products/images/mobile-accessories/iPhone%2012%20Silicone%20Case%20with%20MagSafe%20Plum/thumbnail.png"},{"id":134,"title":"Vivo S1","price":249.99,"quantity":4,"total":999.96,"discountPercentage":5.64,"discountedTotal":943.56,"thumbnail":"https://cdn.dummyjson.com/products/images/smartphones/Vivo%20S1/thumbnail.png"},{"id":174,"title":"Prada Women Bag","price":599.99,"quantity":1,"total":599.99,"discountPercentage":12.86,"discountedTotal":522.83,"thumbnail":"https://cdn.dummyjson.com/products/images/womens-bags/Prada%20Women%20Bag/thumbnail.png"}],"total":1749.9,"discountedTotal":1594.33,"userId":6,"totalProducts":3,"totalQuantity":10},{"id":25,"products":[{"id":4,"title":"Red Lipstick","price":12.99,"quantity":1,"total":12.99,"discountPercentage":14.69,"discountedTotal":11.08,"thumbnail":"https://cdn.dummyjson.com/products/images/beauty/Red%20Lipstick/thumbnail.png"},{"id":126,"title":"Oppo F19 Pro+","price":399.99,"quantity":1,"total":399.99,"discountPercentage":14.38,"discountedTotal":342.47,"thumbnail":"https://cdn.dummyjson.com/products/images/smartphones/Oppo%20F19%20Pro+/thumbnail.png"}],"total":412.98,"discountedTotal":353.55,"userId":118,"totalProducts":2,"totalQuantity":2},{"id":26,"products":[{"id":37,"title":"Red Onions","price":1.99,"quantity":5,"total":9.95,"discountPercentage":8.95,"discountedTotal":9.06,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Red%20Onions/thumbnail.png"},{"id":128,"title":"Realme C35","price":149.99,"quantity":3,"total":449.97,"discountPercentage":3.97,"discountedTotal":432.11,"thumbnail":"https://cdn.dummyjson.com/products/images/smartphones/Realme%20C35/thumbnail.png"}],"total":459.92,"discountedTotal":441.17,"userId":66,"totalProducts":2,"totalQuantity":8},{"id":27,"products":[{"id":33,"title":"Mulberry","price":4.99,"quantity":1,"total":4.99,"discountPercentage":2.75,"discountedTotal":4.85,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Mulberry/thumbnail.png"},{"id":110,"title":"Selfie Lamp with iPhone","price":14.99,"quantity":2,"total":29.98,"discountPercentage":19.87,"discountedTotal":24.02,"thumbnail":"https://cdn.dummyjson.com/products/images/mobile-accessories/Selfie%20Lamp%20with%20iPhone/thumbnail.png"},{"id":16,"title":"Apple","price":1.99,"quantity":3,"total":5.97,"discountPercentage":11.74,"discountedTotal":5.27,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Apple/thumbnail.png"},{"id":83,"title":"Blue & Black Check Shirt","price":29.99,"quantity":5,"total":149.95,"discountPercentage":8.76,"discountedTotal":136.81,"thumbnail":"https://cdn.dummyjson.com/products/images/mens-shirts/Blue%20&%20Black%20Check%20Shirt/thumbnail.png"}],"total":190.89,"discountedTotal":170.95,"userId":75,"totalProducts":4,"totalQuantity":11},{"id":28,"products":[{"id":1,"title":"Essence Mascara Lash Princess","price":9.99,"quantity":5,"total":49.95,"discountPercentage":0.63,"discountedTotal":49.64,"thumbnail":"https://cdn.dummyjson.com/products/images/beauty/Essence%20Mascara%20Lash%20Princess/thumbnail.png"},{"id":141,"title":"Basketball Rim","price":39.99,"quantity":4,"total":159.96,"discountPercentage":14.7,"discountedTotal":136.45,"thumbnail":"https://cdn.dummyjson.com/products/images/sports-accessories/Basketball%20Rim/thumbnail.png"}],"total":209.91,"discountedTotal":186.09,"userId":147,"totalProducts":2,"totalQuantity":9},{"id":29,"products":[{"id":80,"title":"Huawei Matebook X Pro","price":1399.99,"quantity":2,"total":2799.98,"discountPercentage":9.99,"discountedTotal":2520.26,"thumbnail":"https://cdn.dummyjson.com/products/images/laptops/Huawei%20Matebook%20X%20Pro/thumbnail.png"},{"id":107,"title":"Beats Flex Wireless Earphones","price":49.99,"quantity":4,"total":199.96,"discountPercentage":8.79,"discountedTotal":182.38,"thumbnail":"https://cdn.dummyjson.com/products/images/mobile-accessories/Beats%20Flex%20Wireless%20Earphones/thumbnail.png"},{"id":25,"title":"Green Bell Pepper","price":1.29,"quantity":2,"total":2.58,"discountPercentage":1.2,"discountedTotal":2.55,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Green%20Bell%20Pepper/thumbnail.png"},{"id":121,"title":"iPhone 5s","price":199.99,"quantity":4,"total":799.96,"discountPercentage":8.38,"discountedTotal":732.92,"thumbnail":"https://cdn.dummyjson.com/products/images/smartphones/iPhone%205s/thumbnail.png"},{"id":153,"title":"Volleyball","price":11.99,"quantity":5,"total":59.95,"discountPercentage":16.05,"discountedTotal":50.33,"thumbnail":"https://cdn.dummyjson.com/products/images/sports-accessories/Volleyball/thumbnail.png"}],"total":3862.43,"discountedTotal":3488.44,"userId":170,"totalProducts":5,"totalQuantity":17},{"id":30,"products":[{"id":181,"title":"Marni Red & Black Suit","price":179.99,"quantity":1,"total":179.99,"discountPercentage":14.21,"discountedTotal":154.41,"thumbnail":"https://cdn.dummyjson.com/products/images/womens-dresses/Marni%20Red%20&%20Black%20Suit/thumbnail.png"},{"id":171,"title":"Pacifica Touring","price":31999.99,"quantity":4,"total":127999.96,"discountPercentage":7.4,"discountedTotal":118527.96,"thumbnail":"https://cdn.dummyjson.com/products/images/vehicle/Pacifica%20Touring/thumbnail.png"},{"id":35,"title":"Potatoes","price":2.29,"quantity":4,"total":9.16,"discountPercentage":1.69,"discountedTotal":9.01,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Potatoes/thumbnail.png"},{"id":46,"title":"Plant Pot","price":14.99,"quantity":4,"total":59.96,"discountPercentage":17.65,"discountedTotal":49.38,"thumbnail":"https://cdn.dummyjson.com/products/images/home-decoration/Plant%20Pot/thumbnail.png"}],"total":128249.07,"discountedTotal":118740.76,"userId":177,"totalProducts":4,"totalQuantity":13}],"total":50,"skip":0,"limit":30}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Required fields exist in first cart | 1 | 0 | 0 |
| Total | 3 | 0 | 0 |
| Test Name | Assertion Error |
|---|
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjcsImV4cCI6MTc2OTk2NDc2N30.GZCUVvd0dz0StrtG1qYL4I5ptF4oYmGzmo6UUvIzx7o |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 8e92c054-46f0-4085-b1a0-fdaee9767387 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjgsImV4cCI6MTc2OTk2Mjk2OH0.YBAfjxIdnj23YvRfMfsLLiM8QD-KCpxm5JeX6g5iot0; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjgsImV4cCI6MTc3MjU1MzE2OH0.e3x6QVuCW25JTOT-scFLoJaHoODcx4UpJLxL9xGB_zc |
| Content-Length | 0 |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:52:53 GMT |
| Content-Type | text/html; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 95 |
| x-ratelimit-reset | 1769961180 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| content-security-policy | default-src 'none' |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=7l6rJLqmq9pi7MohWOhBO%2FN1XWzVbj9i084t%2F0MyI3hid62o1F7T0Vpw0byWwhDw4Zs2KYF6QuAMjapUCFm95hyRgoU2k5PxR%2FZGEjU%3D"}]} |
| Content-Encoding | br |
| CF-RAY | 9c729e5509e12891-AMM |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Error</title>
</head>
<body>
<pre>Cannot POST /carts</pre>
</body>
</html>
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Wrong method correctly returns 404 or 405 | 1 | 0 | 0 |
| Total | 1 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Retrieves detailed information about a specific shopping cart by its unique identifier.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/carts/11`
## Authentication
- **Required**: No
- This is a public endpoint that doesn't require authentication
## Parameters
### Path Variables
- `cartId` (required) - The unique identifier of the cart to retrieve
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
{
"id": 1,
"products": [
{
"id": 1,
"title": "Product Name",
"price": 549,
"quantity": 2,
"total": 1098,
"discountPercentage": 12.96,
"discountedTotal": 956
}
],
"total": 1098,
"discountedTotal": 956,
"userId": 1,
"totalProducts": 1,
"totalQuantity": 2
}
```
## Tests Included
- Validates response status code is 200
- Verifies cart ID matches request
- Checks products array structure
- Confirms total calculations are correct
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjcsImV4cCI6MTc2OTk2NDc2N30.GZCUVvd0dz0StrtG1qYL4I5ptF4oYmGzmo6UUvIzx7o |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 8699e7a4-f3c5-460c-962a-1f49e2e4d7cd |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjgsImV4cCI6MTc2OTk2Mjk2OH0.YBAfjxIdnj23YvRfMfsLLiM8QD-KCpxm5JeX6g5iot0; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjgsImV4cCI6MTc3MjU1MzE2OH0.e3x6QVuCW25JTOT-scFLoJaHoODcx4UpJLxL9xGB_zc |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:52:53 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 94 |
| x-ratelimit-reset | 1769961177 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"5d1-dNDH7AwlX9F89w+TElZ1Vd5INzs" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=KPmBwgW5wldzrRxMVe2J7mmw4k6jtE4w3ihAqVMaZqkStKiN%2BVNfx3sFtRaHAtahVzal6sXT0bB67Iz65fDd0c4erxIRP8X1irqz4SM%3D"}]} |
| CF-RAY | 9c729e569c0d2891-AMM |
{"id":11,"products":[{"id":88,"title":"Nike Air Jordan 1 Red And Black","price":149.99,"quantity":1,"total":149.99,"discountPercentage":17.18,"discountedTotal":124.22,"thumbnail":"https://cdn.dummyjson.com/products/images/mens-shoes/Nike%20Air%20Jordan%201%20Red%20And%20Black/thumbnail.png"},{"id":32,"title":"Milk","price":3.49,"quantity":3,"total":10.47,"discountPercentage":9.36,"discountedTotal":9.49,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Milk/thumbnail.png"},{"id":74,"title":"Spoon","price":4.99,"quantity":3,"total":14.97,"discountPercentage":2.78,"discountedTotal":14.55,"thumbnail":"https://cdn.dummyjson.com/products/images/kitchen-accessories/Spoon/thumbnail.png"},{"id":145,"title":"Cricket Wicket","price":29.99,"quantity":3,"total":89.97,"discountPercentage":17.87,"discountedTotal":73.89,"thumbnail":"https://cdn.dummyjson.com/products/images/sports-accessories/Cricket%20Wicket/thumbnail.png"},{"id":26,"title":"Green Chili Pepper","price":0.99,"quantity":3,"total":2.9699999999999998,"discountPercentage":18.69,"discountedTotal":2.41,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Green%20Chili%20Pepper/thumbnail.png"},{"id":127,"title":"Oppo K1","price":299.99,"quantity":1,"total":299.99,"discountPercentage":15.93,"discountedTotal":252.2,"thumbnail":"https://cdn.dummyjson.com/products/images/smartphones/Oppo%20K1/thumbnail.png"}],"total":568.36,"discountedTotal":476.76,"userId":172,"totalProducts":6,"totalQuantity":14}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Required fields exist in cart | 1 | 0 | 0 |
| Products array is not empty | 1 | 0 | 0 |
| Total | 4 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Retrieves all shopping carts associated with a specific user.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/carts/user/20`
## Authentication
- **Required**: No
- This is a public endpoint that doesn't require authentication
## Parameters
### Path Variables
- `userId` (required) - The unique identifier of the user whose carts to retrieve
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
{
"carts": [
{
"id": 1,
"products": [
{
"id": 1,
"title": "Product Name",
"price": 549,
"quantity": 2,
"total": 1098
}
],
"total": 1098,
"discountedTotal": 985,
"userId": 20,
"totalProducts": 1,
"totalQuantity": 2
}
],
"total": 3,
"skip": 0,
"limit": 30
}
```
## Tests Included
- Validates response status code is 200
- Verifies all carts belong to specified user
- Checks carts array structure
- Confirms user ID matches in all carts
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjcsImV4cCI6MTc2OTk2NDc2N30.GZCUVvd0dz0StrtG1qYL4I5ptF4oYmGzmo6UUvIzx7o |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 18d32ff8-e956-4ddd-aa36-cced99ad7faa |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjgsImV4cCI6MTc2OTk2Mjk2OH0.YBAfjxIdnj23YvRfMfsLLiM8QD-KCpxm5JeX6g5iot0; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjgsImV4cCI6MTc3MjU1MzE2OH0.e3x6QVuCW25JTOT-scFLoJaHoODcx4UpJLxL9xGB_zc |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:52:53 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 99 |
| x-ratelimit-reset | 1769961183 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"452-dejvefTk1JGhUjC9m0sxjP8K8Do" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=FyXGv5twq5dKd1IRYlBLfJaT1XemtMJI3c3wJOY2ByQrlomspI6wxWneaBKmod6orD7siur02HUmtBgvGunYkKs6usAPeZnW%2FYmyQog%3D"}]} |
| CF-RAY | 9c729e584ebd2891-AMM |
{"carts":[{"id":44,"products":[{"id":93,"title":"Brown Leather Belt Watch","price":89.99,"quantity":3,"total":269.96999999999997,"discountPercentage":8.72,"discountedTotal":246.43,"thumbnail":"https://cdn.dummyjson.com/products/images/mens-watches/Brown%20Leather%20Belt%20Watch/thumbnail.png"},{"id":4,"title":"Red Lipstick","price":12.99,"quantity":2,"total":25.98,"discountPercentage":14.69,"discountedTotal":22.16,"thumbnail":"https://cdn.dummyjson.com/products/images/beauty/Red%20Lipstick/thumbnail.png"},{"id":140,"title":"Basketball","price":14.99,"quantity":5,"total":74.95,"discountPercentage":15.7,"discountedTotal":63.18,"thumbnail":"https://cdn.dummyjson.com/products/images/sports-accessories/Basketball/thumbnail.png"},{"id":83,"title":"Blue & Black Check Shirt","price":29.99,"quantity":3,"total":89.97,"discountPercentage":8.76,"discountedTotal":82.09,"thumbnail":"https://cdn.dummyjson.com/products/images/mens-shirts/Blue%20&%20Black%20Check%20Shirt/thumbnail.png"}],"total":460.87,"discountedTotal":413.86,"userId":20,"totalProducts":4,"totalQuantity":13}],"total":1,"skip":0,"limit":1}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Creates a new shopping cart or adds products to an existing cart for a user.
## Method & Endpoint
- **Method**: `POST`
- **Endpoint**: `https://dummyjson.com/carts/add`
## Authentication
- **Required**: No
- This is a public endpoint for demonstration purposes
## Parameters
### Request Body (JSON)
```json
{
"userId": 1,
"products": [
{
"id": 1,
"quantity": 2
},
{
"id": 5,
"quantity": 1
}
]
}
```
**Required Fields**:
- `userId` - The user ID who owns the cart
- `products` - Array of product objects with `id` and `quantity`
## Expected Response
- **Status Code**: `201 Created`
- **Response Structure**: Returns the created cart with calculated totals
```json
{
"id": 21,
"products": [
{
"id": 1,
"title": "Product Name",
"price": 549,
"quantity": 2,
"total": 1098
}
],
"total": 1098,
"discountedTotal": 985,
"userId": 1,
"totalProducts": 2,
"totalQuantity": 3
}
```
## Tests Included
- Validates response status code is 201
- Verifies cart ID is assigned
- Checks product totals are calculated correctly
- Confirms all products are added to cart
| Header Name | Header Value |
|---|---|
| Content-Type | application/json |
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjcsImV4cCI6MTc2OTk2NDc2N30.GZCUVvd0dz0StrtG1qYL4I5ptF4oYmGzmo6UUvIzx7o |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 69930658-8666-4489-b62e-8dbc29132086 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 152 |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjgsImV4cCI6MTc2OTk2Mjk2OH0.YBAfjxIdnj23YvRfMfsLLiM8QD-KCpxm5JeX6g5iot0; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjgsImV4cCI6MTc3MjU1MzE2OH0.e3x6QVuCW25JTOT-scFLoJaHoODcx4UpJLxL9xGB_zc |
{
"userId": 1,
"products": [
{
"id": 144,
"quantity": 4
},
{
"id": 98,
"quantity": 1
}
]
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:52:54 GMT |
| Content-Type | application/json; charset=utf-8 |
| Content-Length | 584 |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 93 |
| x-ratelimit-reset | 1769961177 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"248-5dWqMXWeXCBfsFmAf4sbnGOuqRg" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=%2FIJRJipyjMsyhhXTf9BrcivrJuGyxvrWKfGXmiMh4z%2Bkj4BjjbI6WTZSjgZnZ7jQgcWxJT3ohofvvZLnDaTuM2SunyGY3DK%2BXkzkwzI%3D"}]} |
| CF-RAY | 9c729e59f8ed2891-AMM |
{"id":51,"products":[{"id":98,"title":"Rolex Submariner Watch","price":13999.99,"quantity":4,"total":55999.96,"discountPercentage":5.05,"discountedPrice":53172,"thumbnail":"https://cdn.dummyjson.com/product-images/mens-watches/rolex-submariner-watch/thumbnail.webp"},{"id":144,"title":"Cricket Helmet","price":44.99,"quantity":1,"total":44.99,"discountPercentage":9.64,"discountedPrice":41,"thumbnail":"https://cdn.dummyjson.com/product-images/sports-accessories/cricket-helmet/thumbnail.webp"}],"total":56044.95,"discountedTotal":53213,"userId":1,"totalProducts":2,"totalQuantity":5}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 201 | 1 | 0 | 0 |
| Response has userId | 1 | 0 | 0 |
| Products have id and quantity | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 4 | 0 | 0 |
| Test Name | Assertion Error |
|---|
| Header Name | Header Value |
|---|---|
| Content-Type | application/json |
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjcsImV4cCI6MTc2OTk2NDc2N30.GZCUVvd0dz0StrtG1qYL4I5ptF4oYmGzmo6UUvIzx7o |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | b0c8d59d-7a04-469e-a3d8-dd99fbd99a1f |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 113 |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjgsImV4cCI6MTc2OTk2Mjk2OH0.YBAfjxIdnj23YvRfMfsLLiM8QD-KCpxm5JeX6g5iot0; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjgsImV4cCI6MTc3MjU1MzE2OH0.e3x6QVuCW25JTOT-scFLoJaHoODcx4UpJLxL9xGB_zc |
{
"userId": 1,
"products": [
{
"id": 144,
"quantity": 0
}
]
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:52:54 GMT |
| Content-Type | application/json; charset=utf-8 |
| Content-Length | 332 |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 94 |
| x-ratelimit-reset | 1769961180 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"14c-M42jev9/jNjkfFvEKbauQtpC+2U" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=1bD98wnGsaY7F6CzvGv4ldG4ecQVesIk3i7BX0lScVUEHpglJNTnFcBM60LqfJNMwcaeSpXWnza4ZWLlkD3eUOncGCy2vP1H23z1%2BlE%3D"}]} |
| CF-RAY | 9c729e5b9aae2891-AMM |
{"id":51,"products":[{"id":144,"title":"Cricket Helmet","price":44.99,"quantity":1,"total":44.99,"discountPercentage":9.64,"discountedPrice":41,"thumbnail":"https://cdn.dummyjson.com/product-images/sports-accessories/cricket-helmet/thumbnail.webp"}],"total":44.99,"discountedTotal":41,"userId":1,"totalProducts":1,"totalQuantity":1}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| BUGT quantity=0 automaticalle corrected to 1 | 1 | 0 | 0 |
| Total | 1 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Updates an existing shopping cart's products and quantities.
## Method & Endpoint
- **Method**: `PUT`
- **Endpoint**: `https://dummyjson.com/carts/11`
## Authentication
- **Required**: No
- This is a public endpoint for demonstration purposes
## Parameters
### Path Variables
- `cartId` (required) - The unique identifier of the cart to update
### Request Body (JSON)
```json
{
"products": [
{
"id": 1,
"quantity": 3
},
{
"id": 10,
"quantity": 1
}
]
}
```
**Note**: The products array replaces the existing cart contents.
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**: Returns the updated cart with recalculated totals
```json
{
"id": 1,
"products": [
{
"id": 1,
"title": "Product Name",
"price": 549,
"quantity": 3,
"total": 1647
}
],
"total": 1647,
"discountedTotal": 1480,
"userId": 1,
"totalProducts": 2,
"totalQuantity": 4
}
```
## Tests Included
- Validates response status code is 200
- Verifies cart ID remains unchanged
- Checks updated quantities and totals
- Confirms product list is updated correctly
| Header Name | Header Value |
|---|---|
| Content-Type | application/json |
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjcsImV4cCI6MTc2OTk2NDc2N30.GZCUVvd0dz0StrtG1qYL4I5ptF4oYmGzmo6UUvIzx7o |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | f07ab078-82c9-4160-9a29-926eb72b4a85 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 78 |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjgsImV4cCI6MTc2OTk2Mjk2OH0.YBAfjxIdnj23YvRfMfsLLiM8QD-KCpxm5JeX6g5iot0; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjgsImV4cCI6MTc3MjU1MzE2OH0.e3x6QVuCW25JTOT-scFLoJaHoODcx4UpJLxL9xGB_zc |
{
"merge": true,
"products": [
{ "id": 1, "quantity": 1 }
]
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:52:54 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 92 |
| x-ratelimit-reset | 1769961177 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"6af-U879Xr8c9nPuFdwkrSazTIBwHGc" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=vS%2FtRECFy091LuvyV1IL9OgAK2%2BTO8i997t1sJOB1fcCtlqgU%2BfJiJRHHzpqY%2FMdQ9nz2gJY6zjn6WUvXJcmKVSwsue45DPm4OQgydg%3D"}]} |
| CF-RAY | 9c729e5d4c9b2891-AMM |
{"id":11,"products":[{"id":88,"title":"Nike Air Jordan 1 Red And Black","price":149.99,"quantity":1,"total":149.99,"discountPercentage":17.18,"discountedPrice":124,"thumbnail":"https://cdn.dummyjson.com/products/images/mens-shoes/Nike%20Air%20Jordan%201%20Red%20And%20Black/thumbnail.png"},{"id":32,"title":"Milk","price":3.49,"quantity":3,"total":10.47,"discountPercentage":9.36,"discountedPrice":9,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Milk/thumbnail.png"},{"id":74,"title":"Spoon","price":4.99,"quantity":3,"total":14.97,"discountPercentage":2.78,"discountedPrice":15,"thumbnail":"https://cdn.dummyjson.com/products/images/kitchen-accessories/Spoon/thumbnail.png"},{"id":145,"title":"Cricket Wicket","price":29.99,"quantity":3,"total":89.97,"discountPercentage":17.87,"discountedPrice":74,"thumbnail":"https://cdn.dummyjson.com/products/images/sports-accessories/Cricket%20Wicket/thumbnail.png"},{"id":26,"title":"Green Chili Pepper","price":0.99,"quantity":3,"total":2.9699999999999998,"discountPercentage":18.69,"discountedPrice":2,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Green%20Chili%20Pepper/thumbnail.png"},{"id":127,"title":"Oppo K1","price":299.99,"quantity":1,"total":299.99,"discountPercentage":15.93,"discountedPrice":252,"thumbnail":"https://cdn.dummyjson.com/products/images/smartphones/Oppo%20K1/thumbnail.png"},{"id":1,"title":"Essence Mascara Lash Princess","price":9.99,"quantity":1,"total":9.99,"discountPercentage":10.48,"discountedPrice":9,"thumbnail":"https://cdn.dummyjson.com/product-images/beauty/essence-mascara-lash-princess/thumbnail.webp"}],"total":578.35,"discountedTotal":485,"userId":172,"totalProducts":7,"totalQuantity":15}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Deletes a specific shopping cart from the system by its unique identifier.
## Method & Endpoint
- **Method**: `DELETE`
- **Endpoint**: `https://dummyjson.com/carts/11`
## Authentication
- **Required**: No
- This is a public endpoint for demonstration purposes
## Parameters
### Path Variables
- `cartId` (required) - The unique identifier of the cart to delete
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**: Returns the deleted cart information with deletion confirmation
```json
{
"id": 1,
"products": [
{
"id": 1,
"title": "Product Name",
"price": 549,
"quantity": 2,
"total": 1098
}
],
"total": 1098,
"discountedTotal": 985,
"userId": 1,
"totalProducts": 1,
"totalQuantity": 2,
"isDeleted": true,
"deletedOn": "2024-01-01T12:00:00.000Z"
}
```
## Tests Included
- Validates response status code is 200
- Verifies `isDeleted` flag is true
- Checks deletion timestamp is present
- Confirms deleted cart details are returned
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjcsImV4cCI6MTc2OTk2NDc2N30.GZCUVvd0dz0StrtG1qYL4I5ptF4oYmGzmo6UUvIzx7o |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 4a8349ea-1514-4809-ac98-023da90c8059 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjgsImV4cCI6MTc2OTk2Mjk2OH0.YBAfjxIdnj23YvRfMfsLLiM8QD-KCpxm5JeX6g5iot0; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjgsImV4cCI6MTc3MjU1MzE2OH0.e3x6QVuCW25JTOT-scFLoJaHoODcx4UpJLxL9xGB_zc |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:52:55 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 94 |
| x-ratelimit-reset | 1769961179 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"609-gpGkafu9h4SzSc/Z7JWHRavwUGM" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=zcumpL3MbIJlJioy42ZlvoIbYOhAiBXhcC6SJbwTZf4wHiTbamLaQqFGbilXANm0bFC2sV%2BQCF71c03jlP%2BdtxIuscFA0%2FZH08xe%2BBk%3D"}]} |
| CF-RAY | 9c729e5f0ef92891-AMM |
{"id":11,"products":[{"id":88,"title":"Nike Air Jordan 1 Red And Black","price":149.99,"quantity":1,"total":149.99,"discountPercentage":17.18,"discountedTotal":124.22,"thumbnail":"https://cdn.dummyjson.com/products/images/mens-shoes/Nike%20Air%20Jordan%201%20Red%20And%20Black/thumbnail.png"},{"id":32,"title":"Milk","price":3.49,"quantity":3,"total":10.47,"discountPercentage":9.36,"discountedTotal":9.49,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Milk/thumbnail.png"},{"id":74,"title":"Spoon","price":4.99,"quantity":3,"total":14.97,"discountPercentage":2.78,"discountedTotal":14.55,"thumbnail":"https://cdn.dummyjson.com/products/images/kitchen-accessories/Spoon/thumbnail.png"},{"id":145,"title":"Cricket Wicket","price":29.99,"quantity":3,"total":89.97,"discountPercentage":17.87,"discountedTotal":73.89,"thumbnail":"https://cdn.dummyjson.com/products/images/sports-accessories/Cricket%20Wicket/thumbnail.png"},{"id":26,"title":"Green Chili Pepper","price":0.99,"quantity":3,"total":2.9699999999999998,"discountPercentage":18.69,"discountedTotal":2.41,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Green%20Chili%20Pepper/thumbnail.png"},{"id":127,"title":"Oppo K1","price":299.99,"quantity":1,"total":299.99,"discountPercentage":15.93,"discountedTotal":252.2,"thumbnail":"https://cdn.dummyjson.com/products/images/smartphones/Oppo%20K1/thumbnail.png"}],"total":568.36,"discountedTotal":476.76,"userId":172,"totalProducts":6,"totalQuantity":14,"isDeleted":true,"deletedOn":"2026-02-01T15:52:54.957Z"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Deleted cart has correct id | 1 | 0 | 0 |
| Response contains isDeleted flag | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 4 | 0 | 0 |
| Test Name | Assertion Error |
|---|
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjcsImV4cCI6MTc2OTk2NDc2N30.GZCUVvd0dz0StrtG1qYL4I5ptF4oYmGzmo6UUvIzx7o |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 904531bd-ac3d-4e1d-88d2-a45d6b56172c |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjgsImV4cCI6MTc2OTk2Mjk2OH0.YBAfjxIdnj23YvRfMfsLLiM8QD-KCpxm5JeX6g5iot0; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjgsImV4cCI6MTc3MjU1MzE2OH0.e3x6QVuCW25JTOT-scFLoJaHoODcx4UpJLxL9xGB_zc |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:52:55 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 93 |
| x-ratelimit-reset | 1769961179 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"2b-JQ/fhVd+HH8flrSxW3e6Bpvtu6A" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=cXbR25Dcfydi3Ck2%2FqjIehBBPB8lnuuOhNhhwnQI%2BI5SfOGUcZRkdfQBh3EVj12iBNenkyCaNy%2Bp6ieKF2BxJU5PsrTPFqShjh2kLDc%3D"}]} |
| Content-Encoding | br |
| CF-RAY | 9c729e60c9322891-AMM |
{"message":"Cart with id 'abcd' not found"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Invalid cart id handled correctly | 1 | 0 | 0 |
| Response body exists | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Retrieves a paginated list of all users in the system.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/users`
## Authentication
- **Required**: No
- This is a public endpoint that doesn't require authentication
## Parameters
- No required parameters
- Optional query parameters: `limit`, `skip` for pagination
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
{
"users": [
{
"id": 1,
"firstName": "Emily",
"lastName": "Johnson",
"email": "emily.johnson@x.dummyjson.com",
"username": "emilys",
"age": 28,
"gender": "female",
"phone": "+81 965-431-3024",
"birthDate": "1996-5-30",
"image": "https://dummyjson.com/icon/emilys/128",
"address": {...},
"company": {...}
}
],
"total": 208,
"skip": 0,
"limit": 30
}
```
## Tests Included
- Validates response status code is 200
- Verifies users array structure
- Checks pagination metadata
- Confirms user object contains required fields
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjcsImV4cCI6MTc2OTk2NDc2N30.GZCUVvd0dz0StrtG1qYL4I5ptF4oYmGzmo6UUvIzx7o |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | d4b33ec6-bfd0-45c5-8eaf-372413994e90 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjgsImV4cCI6MTc2OTk2Mjk2OH0.YBAfjxIdnj23YvRfMfsLLiM8QD-KCpxm5JeX6g5iot0; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjgsImV4cCI6MTc3MjU1MzE2OH0.e3x6QVuCW25JTOT-scFLoJaHoODcx4UpJLxL9xGB_zc |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:52:55 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 87 |
| x-ratelimit-reset | 1769886055 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"a3b1-Wc+qCYPJ2IxKpnt00AlusGYMzCE" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| Age | 75125 |
| Cache-Control | no-store |
| cf-cache-status | HIT |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=OpqkK9V8VTxx0RL2pGSWhcd0rN9NJaMaoIDpljloVJdY4AFOod2pv%2B6MzpavEdAM7fRI1u7Vus06EMs1NzMFX8Uw8ms6Rw%2B7%2F4%2FhWMY%3D"}]} |
| CF-RAY | 9c729e627b0c2891-AMM |
{"users":[{"id":1,"firstName":"Emily","lastName":"Johnson","maidenName":"Smith","age":29,"gender":"female","email":"emily.johnson@x.dummyjson.com","phone":"+81 965-431-3024","username":"emilys","password":"emilyspass","birthDate":"1996-5-30","image":"https://dummyjson.com/icon/emilys/128","bloodGroup":"O-","height":193.24,"weight":63.16,"eyeColor":"Green","hair":{"color":"Brown","type":"Curly"},"ip":"42.48.100.32","address":{"address":"626 Main Street","city":"Phoenix","state":"Mississippi","stateCode":"MS","postalCode":"29112","coordinates":{"lat":-77.16213,"lng":-92.084824},"country":"United States"},"macAddress":"47:fa:41:18:ec:eb","university":"University of Wisconsin--Madison","bank":{"cardExpire":"05/28","cardNumber":"3693233511855044","cardType":"Diners Club International","currency":"GBP","iban":"GB74MH2UZLR9TRPHYNU8F8"},"company":{"department":"Engineering","name":"Dooley, Kozey and Cronin","title":"Sales Manager","address":{"address":"263 Tenth Street","city":"San Francisco","state":"Wisconsin","stateCode":"WI","postalCode":"37657","coordinates":{"lat":71.814525,"lng":-161.150263},"country":"United States"}},"ein":"977-175","ssn":"900-590-289","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"admin"},{"id":2,"firstName":"Michael","lastName":"Williams","maidenName":"","age":36,"gender":"male","email":"michael.williams@x.dummyjson.com","phone":"+49 258-627-6644","username":"michaelw","password":"michaelwpass","birthDate":"1989-8-10","image":"https://dummyjson.com/icon/michaelw/128","bloodGroup":"B+","height":186.22,"weight":76.32,"eyeColor":"Red","hair":{"color":"Green","type":"Straight"},"ip":"12.13.116.142","address":{"address":"385 Fifth Street","city":"Houston","state":"Alabama","stateCode":"AL","postalCode":"38807","coordinates":{"lat":22.815468,"lng":115.608581},"country":"United States"},"macAddress":"79:15:78:99:60:aa","university":"Ohio State University","bank":{"cardExpire":"01/30","cardNumber":"3530633803003665","cardType":"JCB","currency":"USD","iban":"DE26362283149158045865"},"company":{"department":"Support","name":"Spinka - Dickinson","title":"Support Specialist","address":{"address":"395 Main Street","city":"Los Angeles","state":"New Hampshire","stateCode":"NH","postalCode":"73442","coordinates":{"lat":79.098326,"lng":-119.624845},"country":"United States"}},"ein":"912-602","ssn":"108-953-962","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Edge/97.0.1072.76 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"admin"},{"id":3,"firstName":"Sophia","lastName":"Brown","maidenName":"","age":43,"gender":"female","email":"sophia.brown@x.dummyjson.com","phone":"+81 210-652-2785","username":"sophiab","password":"sophiabpass","birthDate":"1982-11-6","image":"https://dummyjson.com/icon/sophiab/128","bloodGroup":"O-","height":177.72,"weight":52.6,"eyeColor":"Hazel","hair":{"color":"White","type":"Wavy"},"ip":"214.225.51.195","address":{"address":"1642 Ninth Street","city":"Washington","state":"Alabama","stateCode":"AL","postalCode":"32822","coordinates":{"lat":45.289366,"lng":46.832664},"country":"United States"},"macAddress":"12:a3:d3:6f:5c:5b","university":"Pepperdine University","bank":{"cardExpire":"10/27","cardNumber":"6011212053392887","cardType":"Discover","currency":"EUR","iban":"DE12191213468288004835"},"company":{"department":"Research and Development","name":"Schiller - Zieme","title":"Accountant","address":{"address":"1896 Washington Street","city":"Dallas","state":"Nevada","stateCode":"NV","postalCode":"88511","coordinates":{"lat":20.086743,"lng":-34.577107},"country":"United States"}},"ein":"963-113","ssn":"638-461-822","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"admin"},{"id":4,"firstName":"James","lastName":"Davis","maidenName":"","age":46,"gender":"male","email":"james.davis@x.dummyjson.com","phone":"+49 614-958-9364","username":"jamesd","password":"jamesdpass","birthDate":"1979-5-4","image":"https://dummyjson.com/icon/jamesd/128","bloodGroup":"AB+","height":193.31,"weight":62.1,"eyeColor":"Amber","hair":{"color":"Blonde","type":"Straight"},"ip":"101.118.131.66","address":{"address":"238 Jefferson Street","city":"Seattle","state":"Pennsylvania","stateCode":"PA","postalCode":"68354","coordinates":{"lat":16.782513,"lng":-139.34723},"country":"United States"},"macAddress":"10:7d:df:1f:97:58","university":"University of Southern California","bank":{"cardExpire":"07/30","cardNumber":"5303440212268149","cardType":"Mastercard","currency":"CAD","iban":"DE01300746880579852937"},"company":{"department":"Support","name":"Pagac and Sons","title":"Research Analyst","address":{"address":"1622 Lincoln Street","city":"Fort Worth","state":"Pennsylvania","stateCode":"PA","postalCode":"27768","coordinates":{"lat":54.91193,"lng":-79.498328},"country":"United States"}},"ein":"904-810","ssn":"116-951-314","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"admin"},{"id":5,"firstName":"Emma","lastName":"Miller","maidenName":"Johnson","age":31,"gender":"female","email":"emma.miller@x.dummyjson.com","phone":"+91 759-776-1614","username":"emmaj","password":"emmajpass","birthDate":"1994-6-13","image":"https://dummyjson.com/icon/emmaj/128","bloodGroup":"AB-","height":192.8,"weight":63.62,"eyeColor":"Green","hair":{"color":"White","type":"Straight"},"ip":"224.126.22.183","address":{"address":"607 Fourth Street","city":"Jacksonville","state":"Colorado","stateCode":"CO","postalCode":"26593","coordinates":{"lat":0.505589,"lng":-157.43281},"country":"United States"},"macAddress":"32:b9:7e:8d:f5:e8","university":"Northeastern University","bank":{"cardExpire":"07/30","cardNumber":"5237188057591130","cardType":"Mastercard","currency":"NZD","iban":"DE19182355652037133559"},"company":{"department":"Human Resources","name":"Graham - Gulgowski","title":"Quality Assurance Engineer","address":{"address":"1460 Sixth Street","city":"San Antonio","state":"Idaho","stateCode":"ID","postalCode":"21965","coordinates":{"lat":44.346545,"lng":-26.944701},"country":"United States"}},"ein":"403-505","ssn":"526-210-885","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:97.0) Gecko/20100101 Firefox/97.0","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"admin"},{"id":6,"firstName":"Olivia","lastName":"Wilson","maidenName":"","age":23,"gender":"female","email":"olivia.wilson@x.dummyjson.com","phone":"+91 607-295-6448","username":"oliviaw","password":"oliviawpass","birthDate":"2002-4-20","image":"https://dummyjson.com/icon/oliviaw/128","bloodGroup":"B+","height":182.61,"weight":58,"eyeColor":"Hazel","hair":{"color":"Gray","type":"Curly"},"ip":"249.178.112.207","address":{"address":"547 First Street","city":"Fort Worth","state":"Tennessee","stateCode":"TN","postalCode":"83843","coordinates":{"lat":75.32627,"lng":-26.15285},"country":"United States"},"macAddress":"9c:7f:ea:34:18:19","university":"University of North Carolina--Chapel Hill","bank":{"cardExpire":"06/30","cardNumber":"376320072452632","cardType":"American Express","currency":"NZD","iban":"DE21153814367894194071"},"company":{"department":"Product Management","name":"Pfannerstill Inc","title":"Research Analyst","address":{"address":"425 Sixth Street","city":"Indianapolis","state":"Oklahoma","stateCode":"OK","postalCode":"74263","coordinates":{"lat":74.986644,"lng":-132.916888},"country":"United States"}},"ein":"921-709","ssn":"836-772-168","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.3 Safari/605.1.15","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"moderator"},{"id":7,"firstName":"Alexander","lastName":"Jones","maidenName":"","age":39,"gender":"male","email":"alexander.jones@x.dummyjson.com","phone":"+61 260-824-4986","username":"alexanderj","password":"alexanderjpass","birthDate":"1986-10-20","image":"https://dummyjson.com/icon/alexanderj/128","bloodGroup":"AB-","height":153.89,"weight":77.42,"eyeColor":"Blue","hair":{"color":"White","type":"Straight"},"ip":"166.204.84.32","address":{"address":"664 Maple Street","city":"Indianapolis","state":"Delaware","stateCode":"DE","postalCode":"86684","coordinates":{"lat":35.289664,"lng":7.063255},"country":"United States"},"macAddress":"d2:64:58:2d:1c:46","university":"University of Illinois--Urbana-Champaign","bank":{"cardExpire":"12/29","cardNumber":"5189302549548693","cardType":"Mastercard","currency":"PKR","iban":"DE67517655968963441488"},"company":{"department":"Engineering","name":"Dickens - Beahan","title":"Web Developer","address":{"address":"996 Eighth Street","city":"Washington","state":"Kansas","stateCode":"KS","postalCode":"27858","coordinates":{"lat":-75.462366,"lng":-128.025697},"country":"United States"}},"ein":"638-127","ssn":"722-993-925","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"moderator"},{"id":8,"firstName":"Ava","lastName":"Taylor","maidenName":"","age":28,"gender":"female","email":"ava.taylor@x.dummyjson.com","phone":"+1 458-853-7877","username":"avat","password":"avatpass","birthDate":"1997-8-25","image":"https://dummyjson.com/icon/avat/128","bloodGroup":"AB-","height":168.47,"weight":57.08,"eyeColor":"Hazel","hair":{"color":"Red","type":"Kinky"},"ip":"150.73.197.233","address":{"address":"1197 First Street","city":"Fort Worth","state":"Rhode Island","stateCode":"RI","postalCode":"24771","coordinates":{"lat":-81.194833,"lng":-87.948158},"country":"United States"},"macAddress":"8d:2e:c2:d6:e7:a8","university":"University of Wisconsin--Madison","bank":{"cardExpire":"08/30","cardNumber":"5349974103330333","cardType":"Mastercard","currency":"EUR","iban":"FR94ZM2MMGL1EVYQE1ZLCVCFH83"},"company":{"department":"Marketing","name":"Nikolaus Inc","title":"Chief Executive Officer","address":{"address":"930 Lincoln Street","city":"Austin","state":"Colorado","stateCode":"CO","postalCode":"47592","coordinates":{"lat":87.970083,"lng":-42.769351},"country":"United States"}},"ein":"297-762","ssn":"257-419-109","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"moderator"},{"id":9,"firstName":"Ethan","lastName":"Martinez","maidenName":"","age":34,"gender":"male","email":"ethan.martinez@x.dummyjson.com","phone":"+92 933-608-5081","username":"ethanm","password":"ethanmpass","birthDate":"1991-2-12","image":"https://dummyjson.com/icon/ethanm/128","bloodGroup":"AB+","height":159.19,"weight":68.81,"eyeColor":"Hazel","hair":{"color":"Purple","type":"Curly"},"ip":"63.191.127.71","address":{"address":"466 Pine Street","city":"San Antonio","state":"Louisiana","stateCode":"LA","postalCode":"72360","coordinates":{"lat":74.074918,"lng":-25.312703},"country":"United States"},"macAddress":"59:e:9e:e3:29:da","university":"Syracuse University","bank":{"cardExpire":"10/27","cardNumber":"3598603288061479","cardType":"JCB","currency":"GBP","iban":"GB26PND7D83JTW4HL6LZ71"},"company":{"department":"Support","name":"Gorczany - Gottlieb","title":"Legal Counsel","address":{"address":"1597 Oak Street","city":"Chicago","state":"Florida","stateCode":"FL","postalCode":"28100","coordinates":{"lat":-67.45208,"lng":-23.209886},"country":"United States"}},"ein":"790-434","ssn":"569-650-348","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"moderator"},{"id":10,"firstName":"Isabella","lastName":"Anderson","maidenName":"Davis","age":32,"gender":"female","email":"isabella.anderson@x.dummyjson.com","phone":"+49 770-658-4885","username":"isabellad","password":"isabelladpass","birthDate":"1993-6-10","image":"https://dummyjson.com/icon/isabellad/128","bloodGroup":"A-","height":150.56,"weight":50.1,"eyeColor":"Brown","hair":{"color":"Blonde","type":"Curly"},"ip":"114.9.114.205","address":{"address":"1964 Oak Street","city":"New York","state":"Utah","stateCode":"UT","postalCode":"89352","coordinates":{"lat":41.331324,"lng":151.782727},"country":"United States"},"macAddress":"b1:b0:d0:a2:82:80","university":"California Institute of Technology (Caltech)","bank":{"cardExpire":"03/30","cardNumber":"3602093733952858","cardType":"Diners Club International","currency":"USD","iban":"DE12934874962442340025"},"company":{"department":"Marketing","name":"Pollich - Hilpert","title":"Chief Financial Officer","address":{"address":"1029 Adams Street","city":"San Diego","state":"Maryland","stateCode":"MD","postalCode":"63847","coordinates":{"lat":-25.843393,"lng":-62.692681},"country":"United States"}},"ein":"127-297","ssn":"902-438-728","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"moderator"},{"id":11,"firstName":"Liam","lastName":"Garcia","maidenName":"","age":30,"gender":"male","email":"liam.garcia@x.dummyjson.com","phone":"+92 870-217-6201","username":"liamg","password":"liamgpass","birthDate":"1995-6-6","image":"https://dummyjson.com/icon/liamg/128","bloodGroup":"AB-","height":162.32,"weight":93.16,"eyeColor":"Violet","hair":{"color":"Red","type":"Wavy"},"ip":"56.201.85.9","address":{"address":"576 Fifth Street","city":"Denver","state":"South Dakota","stateCode":"SD","postalCode":"57252","coordinates":{"lat":-66.218177,"lng":-145.340165},"country":"United States"},"macAddress":"31:9a:28:8b:99:6c","university":"Ohio State University","bank":{"cardExpire":"12/29","cardNumber":"3614993744940956","cardType":"Diners Club International","currency":"USD","iban":"DE65581882748067758114"},"company":{"department":"Services","name":"Considine - Torp","title":"Web Developer","address":{"address":"27 Cedar Street","city":"Philadelphia","state":"Connecticut","stateCode":"CT","postalCode":"79574","coordinates":{"lat":-81.841588,"lng":31.79423},"country":"United States"}},"ein":"326-604","ssn":"933-784-949","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"moderator"},{"id":12,"firstName":"Mia","lastName":"Rodriguez","maidenName":"","age":25,"gender":"female","email":"mia.rodriguez@x.dummyjson.com","phone":"+49 989-461-8403","username":"miar","password":"miarpass","birthDate":"2000-8-4","image":"https://dummyjson.com/icon/miar/128","bloodGroup":"O-","height":188.08,"weight":56.03,"eyeColor":"Blue","hair":{"color":"Purple","type":"Wavy"},"ip":"11.72.253.90","address":{"address":"1627 Sixth Street","city":"Jacksonville","state":"West Virginia","stateCode":"WV","postalCode":"41810","coordinates":{"lat":24.857497,"lng":-34.865429},"country":"United States"},"macAddress":"53:d7:a4:6:1e:58","university":"William & Mary","bank":{"cardExpire":"02/29","cardNumber":"343932350909214","cardType":"American Express","currency":"CAD","iban":"DE77118774979880310165"},"company":{"department":"Accounting","name":"Miller, Schowalter and Wisozk","title":"Business Analyst","address":{"address":"1039 Washington Street","city":"Philadelphia","state":"New Jersey","stateCode":"NJ","postalCode":"57518","coordinates":{"lat":85.455933,"lng":164.246103},"country":"United States"}},"ein":"754-660","ssn":"749-524-124","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"moderator"},{"id":13,"firstName":"Noah","lastName":"Hernandez","maidenName":"","age":41,"gender":"male","email":"noah.hernandez@x.dummyjson.com","phone":"+49 393-605-6968","username":"noahh","password":"noahhpass","birthDate":"1984-6-5","image":"https://dummyjson.com/icon/noahh/128","bloodGroup":"AB+","height":188.62,"weight":69.49,"eyeColor":"Brown","hair":{"color":"Red","type":"Curly"},"ip":"169.154.126.57","address":{"address":"1413 Maple Street","city":"New York","state":"North Dakota","stateCode":"ND","postalCode":"73696","coordinates":{"lat":-25.0377,"lng":-151.70469},"country":"United States"},"macAddress":"d4:fe:ae:8f:eb:a3","university":"New York University (NYU)","bank":{"cardExpire":"03/30","cardNumber":"6262462852322850","cardType":"UnionPay","currency":"PKR","iban":"DE13437032020581217601"},"company":{"department":"Engineering","name":"Botsford, Marquardt and Roberts","title":"Database Administrator","address":{"address":"62 Third Street","city":"Seattle","state":"Oregon","stateCode":"OR","postalCode":"83474","coordinates":{"lat":19.490447,"lng":-13.173207},"country":"United States"}},"ein":"877-628","ssn":"660-847-389","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"moderator"},{"id":14,"firstName":"Charlotte","lastName":"Lopez","maidenName":"Martinez","age":37,"gender":"female","email":"charlotte.lopez@x.dummyjson.com","phone":"+44 373-953-5028","username":"charlottem","password":"charlottempass","birthDate":"1988-6-8","image":"https://dummyjson.com/icon/charlottem/128","bloodGroup":"AB-","height":178.92,"weight":82.46,"eyeColor":"Brown","hair":{"color":"Gray","type":"Kinky"},"ip":"119.103.95.60","address":{"address":"208 Second Street","city":"Columbus","state":"Ohio","stateCode":"OH","postalCode":"42044","coordinates":{"lat":-44.443762,"lng":-151.420561},"country":"United States"},"macAddress":"f6:ff:37:aa:6c:f1","university":"Northeastern University","bank":{"cardExpire":"12/27","cardNumber":"3634388457177035","cardType":"Diners Club International","currency":"PKR","iban":"DE54092147842698685963"},"company":{"department":"Accounting","name":"Zulauf and Sons","title":"Chief Executive Officer","address":{"address":"569 Jefferson Street","city":"Los Angeles","state":"Montana","stateCode":"MT","postalCode":"17779","coordinates":{"lat":-18.371256,"lng":22.566258},"country":"United States"}},"ein":"364-782","ssn":"255-491-479","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"moderator"},{"id":15,"firstName":"William","lastName":"Gonzalez","maidenName":"","age":33,"gender":"male","email":"william.gonzalez@x.dummyjson.com","phone":"+81 905-252-7319","username":"williamg","password":"williamgpass","birthDate":"1992-3-27","image":"https://dummyjson.com/icon/williamg/128","bloodGroup":"B-","height":173.21,"weight":82.41,"eyeColor":"Hazel","hair":{"color":"Gray","type":"Curly"},"ip":"250.2.241.204","address":{"address":"31 Maple Street","city":"San Jose","state":"Utah","stateCode":"UT","postalCode":"78243","coordinates":{"lat":8.152876,"lng":113.29799},"country":"United States"},"macAddress":"f5:68:28:f9:ec:89","university":"Tufts University","bank":{"cardExpire":"05/30","cardNumber":"6228256225004929","cardType":"UnionPay","currency":"PKR","iban":"DE63711022986572448914"},"company":{"department":"Marketing","name":"Spinka - Dickinson","title":"Software Architect","address":{"address":"1538 Eighth Street","city":"San Jose","state":"Missouri","stateCode":"MO","postalCode":"29673","coordinates":{"lat":24.169361,"lng":-29.395167},"country":"United States"}},"ein":"830-515","ssn":"690-544-755","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"moderator"},{"id":16,"firstName":"Avery","lastName":"Perez","maidenName":"","age":26,"gender":"female","email":"avery.perez@x.dummyjson.com","phone":"+61 731-431-3457","username":"averyp","password":"averyppass","birthDate":"1999-3-10","image":"https://dummyjson.com/icon/averyp/128","bloodGroup":"O-","height":172.68,"weight":93.9,"eyeColor":"Brown","hair":{"color":"Green","type":"Curly"},"ip":"131.217.4.214","address":{"address":"1125 First Street","city":"Columbus","state":"Iowa","stateCode":"IA","postalCode":"30973","coordinates":{"lat":12.789127,"lng":85.792598},"country":"United States"},"macAddress":"b3:ff:f3:c5:37:46","university":"Harvard University","bank":{"cardExpire":"08/29","cardNumber":"378024038311910","cardType":"American Express","currency":"USD","iban":"DE42403186906981858976"},"company":{"department":"Accounting","name":"Herzog Inc","title":"Database Administrator","address":{"address":"183 Maple Street","city":"New York","state":"Rhode Island","stateCode":"RI","postalCode":"45238","coordinates":{"lat":-53.318189,"lng":105.835271},"country":"United States"}},"ein":"348-493","ssn":"679-523-686","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":17,"firstName":"Evelyn","lastName":"Sanchez","maidenName":"","age":38,"gender":"female","email":"evelyn.sanchez@x.dummyjson.com","phone":"+1 623-880-6871","username":"evelyns","password":"evelynspass","birthDate":"1987-10-13","image":"https://dummyjson.com/icon/evelyns/128","bloodGroup":"B+","height":184.08,"weight":83.15,"eyeColor":"Violet","hair":{"color":"Blue","type":"Curly"},"ip":"87.114.135.146","address":{"address":"1170 Lincoln Street","city":"San Diego","state":"Wyoming","stateCode":"WY","postalCode":"43423","coordinates":{"lat":-83.31484,"lng":11.768071},"country":"United States"},"macAddress":"f8:e5:bd:43:bc:d8","university":"Washington University in St. Louis","bank":{"cardExpire":"01/29","cardNumber":"3514443781649095","cardType":"JCB","currency":"GBP","iban":"GB74239MLVNQ0UB9ANTFRM"},"company":{"department":"Support","name":"Predovic - Johns","title":"Chief Financial Officer","address":{"address":"1802 Ninth Street","city":"San Diego","state":"Minnesota","stateCode":"MN","postalCode":"89416","coordinates":{"lat":29.034592,"lng":-78.004598},"country":"United States"}},"ein":"604-817","ssn":"689-332-644","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":18,"firstName":"Logan","lastName":"Torres","maidenName":"","age":32,"gender":"male","email":"logan.torres@x.dummyjson.com","phone":"+81 507-434-8733","username":"logant","password":"logantpass","birthDate":"1993-10-26","image":"https://dummyjson.com/icon/logant/128","bloodGroup":"A+","height":190.04,"weight":72.43,"eyeColor":"Green","hair":{"color":"Green","type":"Curly"},"ip":"155.98.15.162","address":{"address":"907 Seventh Street","city":"Columbus","state":"Arkansas","stateCode":"AR","postalCode":"78805","coordinates":{"lat":-64.846516,"lng":174.775744},"country":"United States"},"macAddress":"40:d:5c:1:7d:bf","university":"University of Illinois--Urbana-Champaign","bank":{"cardExpire":"04/30","cardNumber":"6258651210557142","cardType":"UnionPay","currency":"EUR","iban":"ES1171429445321693077621"},"company":{"department":"Training","name":"Jast - Nader","title":"Data Analyst","address":{"address":"947 Main Street","city":"Denver","state":"Minnesota","stateCode":"MN","postalCode":"71896","coordinates":{"lat":-24.654063,"lng":-147.255268},"country":"United States"}},"ein":"576-218","ssn":"806-639-934","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":19,"firstName":"Abigail","lastName":"Rivera","maidenName":"","age":29,"gender":"female","email":"abigail.rivera@x.dummyjson.com","phone":"+91 228-363-7806","username":"abigailr","password":"abigailrpass","birthDate":"1996-10-11","image":"https://dummyjson.com/icon/abigailr/128","bloodGroup":"B+","height":186.39,"weight":74.61,"eyeColor":"Violet","hair":{"color":"Blue","type":"Kinky"},"ip":"19.183.240.94","address":{"address":"996 Oak Street","city":"Chicago","state":"New Mexico","stateCode":"NM","postalCode":"11407","coordinates":{"lat":44.321308,"lng":-3.723903},"country":"United States"},"macAddress":"1d:a6:58:2a:e5:e4","university":"California Institute of Technology (Caltech)","bank":{"cardExpire":"01/27","cardNumber":"6011399019022417","cardType":"Discover","currency":"EUR","iban":"IT11QP2B5J81QM1FBX029VI5DD68O"},"company":{"department":"Human Resources","name":"Prohaska - Thiel","title":"Business Analyst","address":{"address":"1402 Adams Street","city":"Austin","state":"Wisconsin","stateCode":"WI","postalCode":"51456","coordinates":{"lat":25.672938,"lng":-76.54967},"country":"United States"}},"ein":"173-637","ssn":"655-823-929","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Edge/97.0.1072.76 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":20,"firstName":"Jackson","lastName":"Evans","maidenName":"","age":35,"gender":"male","email":"jackson.evans@x.dummyjson.com","phone":"+44 468-628-6686","username":"jacksone","password":"jacksonepass","birthDate":"1990-11-30","image":"https://dummyjson.com/icon/jacksone/128","bloodGroup":"O-","height":162.57,"weight":74.37,"eyeColor":"Green","hair":{"color":"Red","type":"Straight"},"ip":"221.127.144.198","address":{"address":"1873 Main Street","city":"New York","state":"Arkansas","stateCode":"AR","postalCode":"26600","coordinates":{"lat":34.722451,"lng":63.448927},"country":"United States"},"macAddress":"81:14:1:97:88:85","university":"Ohio State University","bank":{"cardExpire":"07/30","cardNumber":"376760688512826","cardType":"American Express","currency":"GBP","iban":"GB27CM0H0MNPXSPDGA0A1O"},"company":{"department":"Legal","name":"Kuhlman LLC","title":"Web Developer","address":{"address":"1706 First Street","city":"Chicago","state":"Hawaii","stateCode":"HI","postalCode":"34725","coordinates":{"lat":-80.416937,"lng":-83.224516},"country":"United States"}},"ein":"843-260","ssn":"248-787-886","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":21,"firstName":"Madison","lastName":"Collins","maidenName":"","age":27,"gender":"female","email":"madison.collins@x.dummyjson.com","phone":"+81 259-957-5711","username":"madisonc","password":"madisoncpass","birthDate":"1998-3-7","image":"https://dummyjson.com/icon/madisonc/128","bloodGroup":"B-","height":189.28,"weight":56.96,"eyeColor":"Red","hair":{"color":"Gray","type":"Curly"},"ip":"85.34.1.204","address":{"address":"1892 Lincoln Street","city":"Philadelphia","state":"New Jersey","stateCode":"NJ","postalCode":"62091","coordinates":{"lat":52.993694,"lng":160.486892},"country":"United States"},"macAddress":"13:b0:d0:23:4d:26","university":"University of Pennsylvania","bank":{"cardExpire":"09/27","cardNumber":"5551259848327064","cardType":"Mastercard","currency":"EUR","iban":"ES3893300143587765232049"},"company":{"department":"Engineering","name":"Mayer - Smitham","title":"Chief Technology Officer","address":{"address":"1438 Main Street","city":"San Diego","state":"Delaware","stateCode":"DE","postalCode":"63144","coordinates":{"lat":1.629613,"lng":23.232982},"country":"United States"}},"ein":"716-166","ssn":"457-258-950","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":22,"firstName":"Elijah","lastName":"Stewart","maidenName":"","age":34,"gender":"male","email":"elijah.stewart@x.dummyjson.com","phone":"+44 468-357-7872","username":"elijahs","password":"elijahspass","birthDate":"1991-10-22","image":"https://dummyjson.com/icon/elijahs/128","bloodGroup":"A-","height":195.33,"weight":81.64,"eyeColor":"Blue","hair":{"color":"Purple","type":"Straight"},"ip":"23.87.135.62","address":{"address":"1701 Eighth Street","city":"Columbus","state":"Illinois","stateCode":"IL","postalCode":"31585","coordinates":{"lat":-54.833799,"lng":-174.504027},"country":"United States"},"macAddress":"75:17:c6:35:fc:6d","university":"Georgetown University","bank":{"cardExpire":"05/28","cardNumber":"3648138556543460","cardType":"Diners Club International","currency":"EUR","iban":"DE82018985741195770313"},"company":{"department":"Legal","name":"Langworth Group","title":"Business Analyst","address":{"address":"155 Ninth Street","city":"Washington","state":"South Dakota","stateCode":"SD","postalCode":"19039","coordinates":{"lat":61.279254,"lng":-12.607767},"country":"United States"}},"ein":"520-394","ssn":"287-380-801","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":23,"firstName":"Chloe","lastName":"Morales","maidenName":"","age":40,"gender":"female","email":"chloe.morales@x.dummyjson.com","phone":"+92 468-541-7133","username":"chloem","password":"chloempass","birthDate":"1985-4-21","image":"https://dummyjson.com/icon/chloem/128","bloodGroup":"O+","height":185.07,"weight":63.97,"eyeColor":"Brown","hair":{"color":"Red","type":"Kinky"},"ip":"66.78.20.21","address":{"address":"401 Fourth Street","city":"Dallas","state":"New Jersey","stateCode":"NJ","postalCode":"54972","coordinates":{"lat":-30.190759,"lng":-58.705979},"country":"United States"},"macAddress":"fc:f:29:e1:37:b8","university":"Syracuse University","bank":{"cardExpire":"09/30","cardNumber":"347036238254235","cardType":"American Express","currency":"CNY","iban":"DE77762461851744284392"},"company":{"department":"Sales","name":"Grady LLC","title":"Database Administrator","address":{"address":"269 Third Street","city":"Houston","state":"North Carolina","stateCode":"NC","postalCode":"10385","coordinates":{"lat":40.098115,"lng":-1.762972},"country":"United States"}},"ein":"913-597","ssn":"938-883-163","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":24,"firstName":"Mateo","lastName":"Nguyen","maidenName":"","age":31,"gender":"male","email":"mateo.nguyen@x.dummyjson.com","phone":"+1 341-597-6694","username":"mateon","password":"mateonpass","birthDate":"1994-6-2","image":"https://dummyjson.com/icon/mateon/128","bloodGroup":"O+","height":174.29,"weight":59.98,"eyeColor":"Red","hair":{"color":"Purple","type":"Wavy"},"ip":"192.57.144.7","address":{"address":"1578 Fourth Street","city":"Columbus","state":"Missouri","stateCode":"MO","postalCode":"20673","coordinates":{"lat":-32.828675,"lng":-82.557354},"country":"United States"},"macAddress":"a7:26:10:7a:36:29","university":"Columbia University","bank":{"cardExpire":"12/29","cardNumber":"4021840414995098","cardType":"Visa","currency":"CAD","iban":"DE43275561962007561223"},"company":{"department":"Accounting","name":"Spinka LLC","title":"Business Analyst","address":{"address":"1967 Jefferson Street","city":"Dallas","state":"Louisiana","stateCode":"LA","postalCode":"78527","coordinates":{"lat":75.982676,"lng":164.459743},"country":"United States"}},"ein":"229-249","ssn":"416-877-230","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":25,"firstName":"Harper","lastName":"Kelly","maidenName":"Evans","age":28,"gender":"female","email":"harper.kelly@x.dummyjson.com","phone":"+92 518-863-2863","username":"harpere","password":"harperepass","birthDate":"1997-3-3","image":"https://dummyjson.com/icon/harpere/128","bloodGroup":"AB-","height":184.32,"weight":81.69,"eyeColor":"Amber","hair":{"color":"Red","type":"Curly"},"ip":"174.111.61.162","address":{"address":"1591 Adams Street","city":"Philadelphia","state":"New York","stateCode":"NY","postalCode":"69521","coordinates":{"lat":-26.832913,"lng":-75.445017},"country":"United States"},"macAddress":"b:ff:33:67:94:e4","university":"Boston College","bank":{"cardExpire":"06/27","cardNumber":"4488823564436432","cardType":"Visa","currency":"EUR","iban":"ES5874149276753342261515"},"company":{"department":"Legal","name":"Leffler, Rolfson and Becker","title":"Business Development Manager","address":{"address":"16 Maple Street","city":"Austin","state":"North Carolina","stateCode":"NC","postalCode":"68274","coordinates":{"lat":-15.423746,"lng":149.298887},"country":"United States"}},"ein":"592-557","ssn":"209-544-548","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":26,"firstName":"Evelyn","lastName":"Gonzalez","maidenName":"","age":36,"gender":"female","email":"evelyn.gonzalez@x.dummyjson.com","phone":"+61 708-508-4638","username":"evelyng","password":"evelyngpass","birthDate":"1989-2-5","image":"https://dummyjson.com/icon/evelyng/128","bloodGroup":"O+","height":168.94,"weight":58.47,"eyeColor":"Red","hair":{"color":"Black","type":"Wavy"},"ip":"42.52.74.232","address":{"address":"1065 Lincoln Street","city":"Dallas","state":"Maine","stateCode":"ME","postalCode":"84898","coordinates":{"lat":67.768359,"lng":71.268643},"country":"United States"},"macAddress":"89:5e:5a:2a:72:42","university":"Washington University in St. Louis","bank":{"cardExpire":"08/28","cardNumber":"6011735364912274","cardType":"Discover","currency":"CAD","iban":"DE27147353096476220032"},"company":{"department":"Accounting","name":"Tromp, Gaylord and Weber","title":"Project Manager","address":{"address":"584 Ninth Street","city":"Jacksonville","state":"Wisconsin","stateCode":"WI","postalCode":"45633","coordinates":{"lat":26.014021,"lng":40.572436},"country":"United States"}},"ein":"569-275","ssn":"487-680-127","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":27,"firstName":"Daniel","lastName":"Cook","maidenName":"","age":42,"gender":"male","email":"daniel.cook@x.dummyjson.com","phone":"+44 254-761-6843","username":"danielc","password":"danielcpass","birthDate":"1983-12-25","image":"https://dummyjson.com/icon/danielc/128","bloodGroup":"AB+","height":186.21,"weight":83.72,"eyeColor":"Brown","hair":{"color":"Blonde","type":"Curly"},"ip":"1.61.73.142","address":{"address":"1163 Pine Street","city":"Los Angeles","state":"Nevada","stateCode":"NV","postalCode":"58781","coordinates":{"lat":-3.456681,"lng":-134.937482},"country":"United States"},"macAddress":"6e:73:dc:3a:85:10","university":"Columbia University","bank":{"cardExpire":"05/29","cardNumber":"5485409595328150","cardType":"Mastercard","currency":"NZD","iban":"DE71341603969952506034"},"company":{"department":"Support","name":"Morissette, Baumbach and Auer","title":"Legal Counsel","address":{"address":"938 Fifth Street","city":"San Francisco","state":"South Dakota","stateCode":"SD","postalCode":"45305","coordinates":{"lat":21.323588,"lng":-83.531427},"country":"United States"}},"ein":"585-905","ssn":"645-515-583","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:97.0) Gecko/20100101 Firefox/97.0","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":28,"firstName":"Lily","lastName":"Lee","maidenName":"Brown","age":30,"gender":"female","email":"lily.lee@x.dummyjson.com","phone":"+1 808-757-9867","username":"lilyb","password":"lilybpass","birthDate":"1995-12-3","image":"https://dummyjson.com/icon/lilyb/128","bloodGroup":"AB-","height":181.42,"weight":51.49,"eyeColor":"Gray","hair":{"color":"Purple","type":"Straight"},"ip":"67.184.255.96","address":{"address":"1946 Oak Street","city":"Phoenix","state":"Massachusetts","stateCode":"MA","postalCode":"41540","coordinates":{"lat":-9.87059,"lng":-72.336845},"country":"United States"},"macAddress":"18:b6:c7:a:50:3f","university":"Johns Hopkins University","bank":{"cardExpire":"12/28","cardNumber":"5551782139834613","cardType":"Mastercard","currency":"CAD","iban":"DE49484285539189712621"},"company":{"department":"Product Management","name":"Cremin Inc","title":"Quality Assurance Engineer","address":{"address":"1735 Cedar Street","city":"Phoenix","state":"Wyoming","stateCode":"WY","postalCode":"85797","coordinates":{"lat":72.231441,"lng":-158.147245},"country":"United States"}},"ein":"229-776","ssn":"358-185-671","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Edge/97.0.1072.76 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":29,"firstName":"Henry","lastName":"Hill","maidenName":"","age":39,"gender":"male","email":"henry.hill@x.dummyjson.com","phone":"+1 240-833-4680","username":"henryh","password":"henryhpass","birthDate":"1986-8-19","image":"https://dummyjson.com/icon/henryh/128","bloodGroup":"O-","height":180.25,"weight":95.84,"eyeColor":"Gray","hair":{"color":"Black","type":"Straight"},"ip":"194.43.55.202","address":{"address":"1837 Maple Street","city":"Indianapolis","state":"Delaware","stateCode":"DE","postalCode":"81783","coordinates":{"lat":35.498256,"lng":154.088476},"country":"United States"},"macAddress":"fa:c3:1b:21:5f:44","university":"University of Illinois--Urbana-Champaign","bank":{"cardExpire":"11/29","cardNumber":"3625097026040498","cardType":"Diners Club International","currency":"EUR","iban":"DE08820336197191865470"},"company":{"department":"Services","name":"Gerlach, Funk and Schoen","title":"Sales Manager","address":{"address":"1651 Lincoln Street","city":"San Francisco","state":"West Virginia","stateCode":"WV","postalCode":"61805","coordinates":{"lat":-59.936335,"lng":-12.405368},"country":"United States"}},"ein":"118-957","ssn":"925-686-100","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":30,"firstName":"Addison","lastName":"Wright","maidenName":"","age":33,"gender":"female","email":"addison.wright@x.dummyjson.com","phone":"+1 514-384-3300","username":"addisonw","password":"addisonwpass","birthDate":"1992-1-3","image":"https://dummyjson.com/icon/addisonw/128","bloodGroup":"B+","height":179.32,"weight":76.93,"eyeColor":"Brown","hair":{"color":"Blonde","type":"Straight"},"ip":"11.35.69.81","address":{"address":"568 Tenth Street","city":"San Francisco","state":"Montana","stateCode":"MT","postalCode":"54698","coordinates":{"lat":20.946052,"lng":100.228822},"country":"United States"},"macAddress":"fb:0:94:21:16:c","university":"Syracuse University","bank":{"cardExpire":"06/28","cardNumber":"5274971895809762","cardType":"Mastercard","currency":"PKR","iban":"DE91480955939051635497"},"company":{"department":"Services","name":"Kreiger Inc","title":"Human Resources Manager","address":{"address":"1173 Eighth Street","city":"San Diego","state":"Michigan","stateCode":"MI","postalCode":"85777","coordinates":{"lat":65.324413,"lng":87.142893},"country":"United States"}},"ein":"415-286","ssn":"804-492-390","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"}],"total":208,"skip":0,"limit":30}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 2 | 0 | 0 |
| Total | 3 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Authenticates a user with username and password, returning an access token for subsequent authenticated requests.
## Method & Endpoint
- **Method**: `POST`
- **Endpoint**: `https://dummyjson.com/auth/login`
## Authentication
- **Required**: No (this endpoint provides authentication)
## Parameters
### Request Body (JSON)
```json
{
"username": "emilys",
"password": "emilyspass"
}
```
**Required Fields**:
- `username` - User's username
- `password` - User's password
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
{
"id": 1,
"username": "emilys",
"email": "emily.johnson@x.dummyjson.com",
"firstName": "Emily",
"lastName": "Johnson",
"gender": "female",
"image": "https://dummyjson.com/icon/emilys/128",
"accessToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
"refreshToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."
}
```
## Tests Included
- Validates response status code is 200
- Verifies access token is present
- Stores token in environment variable `eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjcsImV4cCI6MTc2OTk2NDc2N30.GZCUVvd0dz0StrtG1qYL4I5ptF4oYmGzmo6UUvIzx7o`
- Checks user details are returned
| Header Name | Header Value |
|---|---|
| Content-Type | application/json |
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjcsImV4cCI6MTc2OTk2NDc2N30.GZCUVvd0dz0StrtG1qYL4I5ptF4oYmGzmo6UUvIzx7o |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | a40fefa9-cea9-4e7a-b304-ca1451cc0875 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 83 |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjgsImV4cCI6MTc2OTk2Mjk2OH0.YBAfjxIdnj23YvRfMfsLLiM8QD-KCpxm5JeX6g5iot0; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjgsImV4cCI6MTc3MjU1MzE2OH0.e3x6QVuCW25JTOT-scFLoJaHoODcx4UpJLxL9xGB_zc |
{
"username": "emilys",
"password": "emilyspass",
"expiresInMins": 30
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:52:55 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 98 |
| x-ratelimit-reset | 1769961183 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| Set-Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNzUsImV4cCI6MTc2OTk2Mjk3NX0.w25XSkplnaGp-G-Rk9M6VnM8JUBv0V3TtXJwSiCmn14; Max-Age=1800; Path=/; Expires=Sun, 01 Feb 2026 16:22:55 GMT; HttpOnly; Secure |
| Set-Cookie | refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNzUsImV4cCI6MTc3MjU1MzE3NX0.9Zz_IECQSINeikniv-WF1jEq9JrwdGZ34LNnqUAyfVw; Max-Age=1800; Path=/; Expires=Sun, 01 Feb 2026 16:22:55 GMT; HttpOnly; Secure |
| etag | W/"3a2-5kUjc3Abua5FfHIkgSoGXm59Izo" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=TyxgsrUUqK61gybpYH%2Bi0CZQQEiJLEHqtSoYagJdZiGATgqf6Do%2FzvOXXY4eT3l%2BN%2FfhKhTBIr%2BIH30qvJ%2FtSoQjZqw50%2Bz3%2B%2BwZtRM%3D"}]} |
| Content-Encoding | br |
| CF-RAY | 9c729e631bdd2891-AMM |
{"accessToken":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNzUsImV4cCI6MTc2OTk2Mjk3NX0.w25XSkplnaGp-G-Rk9M6VnM8JUBv0V3TtXJwSiCmn14","refreshToken":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNzUsImV4cCI6MTc3MjU1MzE3NX0.9Zz_IECQSINeikniv-WF1jEq9JrwdGZ34LNnqUAyfVw","id":1,"username":"emilys","email":"emily.johnson@x.dummyjson.com","firstName":"Emily","lastName":"Johnson","gender":"female","image":"https://dummyjson.com/icon/emilys/128"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 2 | 0 | 0 |
| Total | 3 | 0 | 0 |
| Test Name | Assertion Error |
|---|
| Header Name | Header Value |
|---|---|
| Content-Type | application/json |
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjcsImV4cCI6MTc2OTk2NDc2N30.GZCUVvd0dz0StrtG1qYL4I5ptF4oYmGzmo6UUvIzx7o |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | f442ecac-fb2c-42ae-8ad6-f6ffcd8e17c4 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 82 |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNzUsImV4cCI6MTc2OTk2Mjk3NX0.w25XSkplnaGp-G-Rk9M6VnM8JUBv0V3TtXJwSiCmn14; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNzUsImV4cCI6MTc3MjU1MzE3NX0.9Zz_IECQSINeikniv-WF1jEq9JrwdGZ34LNnqUAyfVw |
{
"username": "anood",
"password": "emilyspass",
"expiresInMins": 30
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:52:55 GMT |
| Content-Type | application/json; charset=utf-8 |
| Content-Length | 33 |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 93 |
| x-ratelimit-reset | 1769961180 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"21-dBEoW0UmTF+EGUMaprEp9/8zNNA" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=hTXSs%2B%2FAMBfa80YwOQK1mQSK2dosKvgcHcoOMMKnBom56LXSJcc4LUVA0C5WsuhZrL2Tvq7x6VtiUMSU3aiPQ8gk42KU38CN2FV2Jtg%3D"}]} |
| CF-RAY | 9c729e64adc22891-AMM |
{"message":"Invalid credentials"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Invalid credentials handled | 1 | 0 | 0 |
| Error message exists | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Retrieves the profile information of the currently authenticated user based on the provided access token.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/auth/me`
## Authentication
- **Required**: Yes
- **Type**: Bearer Token
- **Header**: `Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjcsImV4cCI6MTc2OTk2NDc2N30.GZCUVvd0dz0StrtG1qYL4I5ptF4oYmGzmo6UUvIzx7o`
## Parameters
- No parameters required
- Authentication token must be provided in Authorization header
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
{
"id": 1,
"firstName": "Emily",
"lastName": "Johnson",
"email": "emily.johnson@x.dummyjson.com",
"username": "emilys",
"age": 28,
"gender": "female",
"phone": "+81 965-431-3024",
"birthDate": "1996-5-30",
"image": "https://dummyjson.com/icon/emilys/128",
"address": {...},
"company": {...}
}
```
## Tests Included
- Validates response status code is 200
- Verifies authenticated user details are returned
- Checks all user profile fields are present
- Confirms token authentication is working
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjcsImV4cCI6MTc2OTk2NDc2N30.GZCUVvd0dz0StrtG1qYL4I5ptF4oYmGzmo6UUvIzx7o |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 757d41ce-81c2-4b2b-99d4-a004d47191ea |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNzUsImV4cCI6MTc2OTk2Mjk3NX0.w25XSkplnaGp-G-Rk9M6VnM8JUBv0V3TtXJwSiCmn14; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNzUsImV4cCI6MTc3MjU1MzE3NX0.9Zz_IECQSINeikniv-WF1jEq9JrwdGZ34LNnqUAyfVw |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:52:56 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 97 |
| x-ratelimit-reset | 1769961183 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"58f-CoL/KoXlW3x1PtqQr3wqPsXj6DE" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=WVmessDUUSj6P80AcPEgAucdkmR0uCXF2qXXVW8JbXKmOB3ytgSpfexSetel8rfNrM%2BcyQGxSgm0Gn8G0LZFPvuXJKuc0j4xQaiOFQM%3D"}]} |
| CF-RAY | 9c729e661f122891-AMM |
{"id":1,"firstName":"Emily","lastName":"Johnson","maidenName":"Smith","age":29,"gender":"female","email":"emily.johnson@x.dummyjson.com","phone":"+81 965-431-3024","username":"emilys","password":"emilyspass","birthDate":"1996-5-30","image":"https://dummyjson.com/icon/emilys/128","bloodGroup":"O-","height":193.24,"weight":63.16,"eyeColor":"Green","hair":{"color":"Brown","type":"Curly"},"ip":"42.48.100.32","address":{"address":"626 Main Street","city":"Phoenix","state":"Mississippi","stateCode":"MS","postalCode":"29112","coordinates":{"lat":-77.16213,"lng":-92.084824},"country":"United States"},"macAddress":"47:fa:41:18:ec:eb","university":"University of Wisconsin--Madison","bank":{"cardExpire":"05/28","cardNumber":"3693233511855044","cardType":"Diners Club International","currency":"GBP","iban":"GB74MH2UZLR9TRPHYNU8F8"},"company":{"department":"Engineering","name":"Dooley, Kozey and Cronin","title":"Sales Manager","address":{"address":"263 Tenth Street","city":"San Francisco","state":"Wisconsin","stateCode":"WI","postalCode":"37657","coordinates":{"lat":71.814525,"lng":-161.150263},"country":"United States"}},"ein":"977-175","ssn":"900-590-289","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"admin"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 2 | 0 | 0 |
| Total | 3 | 0 | 0 |
| Test Name | Assertion Error |
|---|
| Header Name | Header Value |
|---|---|
| Authorization | Bearer 123456 |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | ff931b6c-b67d-4979-86ca-95446e2ff46b |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNzUsImV4cCI6MTc2OTk2Mjk3NX0.w25XSkplnaGp-G-Rk9M6VnM8JUBv0V3TtXJwSiCmn14; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNzUsImV4cCI6MTc3MjU1MzE3NX0.9Zz_IECQSINeikniv-WF1jEq9JrwdGZ34LNnqUAyfVw |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:52:56 GMT |
| Content-Type | application/json; charset=utf-8 |
| Content-Length | 36 |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 92 |
| x-ratelimit-reset | 1769961179 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| Set-Cookie | accessToken=; Path=/; Expires=Thu, 01 Jan 1970 00:00:00 GMT |
| Set-Cookie | refreshToken=; Path=/; Expires=Thu, 01 Jan 1970 00:00:00 GMT |
| etag | W/"24-xqucZbgfFI1MEKHBW2jR/IjHNdY" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=vxurh1z8uxzpOmmWVwGDmxEf6VVKMBX%2Fwqy3i9FbjhYjcnc5pWceDxXGKd2nBZWoJhIw8uFc6sDsAgNlKFP5ci9J63J87XiZDu97Ewo%3D"}]} |
| CF-RAY | 9c729e67b8df2891-AMM |
{"message":"Invalid/Expired Token!"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Invalid token | 1 | 0 | 0 |
| Error message exists | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Retrieves detailed information about a specific user by their unique identifier.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/users/4`
## Authentication
- **Required**: No
- This is a public endpoint that doesn't require authentication
## Parameters
### Path Variables
- `userId` (required) - The unique identifier of the user to retrieve
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
{
"id": 1,
"firstName": "Emily",
"lastName": "Johnson",
"email": "emily.johnson@x.dummyjson.com",
"username": "emilys",
"age": 28,
"gender": "female",
"phone": "+81 965-431-3024",
"birthDate": "1996-5-30",
"image": "https://dummyjson.com/icon/emilys/128",
"address": {
"address": "626 Main Street",
"city": "Phoenix",
"state": "Mississippi",
"country": "United States",
"postalCode": "29112"
},
"company": {
"name": "Dooley and Sons",
"title": "Sales Manager"
}
}
```
## Tests Included
- Validates response status code is 200
- Verifies user ID matches request
- Checks all user profile fields are present
- Confirms address and company objects structure
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjcsImV4cCI6MTc2OTk2NDc2N30.GZCUVvd0dz0StrtG1qYL4I5ptF4oYmGzmo6UUvIzx7o |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 9f7f10de-036a-4402-8c6f-cb607a5db63c |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:52:56 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 99 |
| x-ratelimit-reset | 1769961187 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"577-Z3kifpL3J1jktd9eGnQ28K8KFtI" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=JwQTNl8yhY%2FQvnGK4ASF5cBGnlkvmt5VXj5Cy%2BV6XbeJ9J1bIOJu8PuiGyXqueVPdEEuW7sYxl0CQwjSsxdzv5sXXk%2BN%2BfIjOP96oW8%3D"}]} |
| CF-RAY | 9c729e695b242891-AMM |
{"id":4,"firstName":"James","lastName":"Davis","maidenName":"","age":46,"gender":"male","email":"james.davis@x.dummyjson.com","phone":"+49 614-958-9364","username":"jamesd","password":"jamesdpass","birthDate":"1979-5-4","image":"https://dummyjson.com/icon/jamesd/128","bloodGroup":"AB+","height":193.31,"weight":62.1,"eyeColor":"Amber","hair":{"color":"Blonde","type":"Straight"},"ip":"101.118.131.66","address":{"address":"238 Jefferson Street","city":"Seattle","state":"Pennsylvania","stateCode":"PA","postalCode":"68354","coordinates":{"lat":16.782513,"lng":-139.34723},"country":"United States"},"macAddress":"10:7d:df:1f:97:58","university":"University of Southern California","bank":{"cardExpire":"07/30","cardNumber":"5303440212268149","cardType":"Mastercard","currency":"CAD","iban":"DE01300746880579852937"},"company":{"department":"Support","name":"Pagac and Sons","title":"Research Analyst","address":{"address":"1622 Lincoln Street","city":"Fort Worth","state":"Pennsylvania","stateCode":"PA","postalCode":"27768","coordinates":{"lat":54.91193,"lng":-79.498328},"country":"United States"}},"ein":"904-810","ssn":"116-951-314","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"admin"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Required fields exist | 1 | 0 | 0 |
| Total | 3 | 0 | 0 |
| Test Name | Assertion Error |
|---|
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjcsImV4cCI6MTc2OTk2NDc2N30.GZCUVvd0dz0StrtG1qYL4I5ptF4oYmGzmo6UUvIzx7o |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 2451bed7-5229-4aa5-ac30-a62b11214c96 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:52:56 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 91 |
| x-ratelimit-reset | 1769961179 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"2b-ZhauGgbHQlYpTPzEWJLt9JF5uhE" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=oEpOb0WRqZPKekzocrjmPEPXc5bzc6sYLBh%2Bc%2B4ClwvmLtLJTeOiNJjuqMwSSticzCcXJSr19BJY%2FaocKWErb9trVDox7s9WUkUInJM%3D"}]} |
| Content-Encoding | br |
| CF-RAY | 9c729e6b0d4d2891-AMM |
{"message":"User with id '9999' not found"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Invalid User ID should not succeed | 1 | 0 | 0 |
| Error message exists | 1 | 0 | 0 |
| BUG , Returned users for Invalid ID | 1 | 0 | 0 |
| Total | 3 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Searches for users based on a query string, returning all users that match the search criteria.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/users/search?q=John`
## Authentication
- **Required**: No
- This is a public endpoint that doesn't require authentication
## Parameters
### Query Parameters
- `q` (required) - The search query string to find matching users (searches across name, username, email, etc.)
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
{
"users": [
{
"id": 1,
"firstName": "John",
"lastName": "Doe",
"email": "john.doe@x.dummyjson.com",
"username": "johnd",
"age": 30,
...
}
],
"total": 5,
"skip": 0,
"limit": 30
}
```
## Tests Included
- Validates response status code is 200
- Verifies users array exists
- Checks pagination metadata (total, skip, limit)
- Confirms search results match query criteria
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjcsImV4cCI6MTc2OTk2NDc2N30.GZCUVvd0dz0StrtG1qYL4I5ptF4oYmGzmo6UUvIzx7o |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 089e9ede-adbb-4aaf-ab00-98cc3c976c06 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:52:57 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 98 |
| x-ratelimit-reset | 1769961187 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"1092-DffrDnJxyiPiDr/F4xPdXlAPNCM" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=3OWxSC22vA4dT6fOEis%2Fy7ruzDaEf5Bdb1Fw9NKxw%2BzhmKlTzDwPiX3DAC0y86IdoSG8tAiSfl3%2BwgYIOxdO58GTVyx9qLQftKPuMk8%3D"}]} |
| CF-RAY | 9c729e6cbf0c2891-AMM |
{"users":[{"id":1,"firstName":"Emily","lastName":"Johnson","maidenName":"Smith","age":29,"gender":"female","email":"emily.johnson@x.dummyjson.com","phone":"+81 965-431-3024","username":"emilys","password":"emilyspass","birthDate":"1996-5-30","image":"https://dummyjson.com/icon/emilys/128","bloodGroup":"O-","height":193.24,"weight":63.16,"eyeColor":"Green","hair":{"color":"Brown","type":"Curly"},"ip":"42.48.100.32","address":{"address":"626 Main Street","city":"Phoenix","state":"Mississippi","stateCode":"MS","postalCode":"29112","coordinates":{"lat":-77.16213,"lng":-92.084824},"country":"United States"},"macAddress":"47:fa:41:18:ec:eb","university":"University of Wisconsin--Madison","bank":{"cardExpire":"05/28","cardNumber":"3693233511855044","cardType":"Diners Club International","currency":"GBP","iban":"GB74MH2UZLR9TRPHYNU8F8"},"company":{"department":"Engineering","name":"Dooley, Kozey and Cronin","title":"Sales Manager","address":{"address":"263 Tenth Street","city":"San Francisco","state":"Wisconsin","stateCode":"WI","postalCode":"37657","coordinates":{"lat":71.814525,"lng":-161.150263},"country":"United States"}},"ein":"977-175","ssn":"900-590-289","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"admin"},{"id":102,"firstName":"John","lastName":"Doe","maidenName":"","age":36,"gender":"male","email":"john.doe@x.dummyjson.com","phone":"+44 242-757-6754","username":"johnd","password":"johndpass","birthDate":"1989-2-20","image":"https://dummyjson.com/icon/johnd/128","bloodGroup":"B-","height":179.44,"weight":93.42,"eyeColor":"Brown","hair":{"color":"Blonde","type":"Wavy"},"ip":"1.250.48.36","address":{"address":"37 Second Street","city":"Fort Worth","state":"New York","stateCode":"NY","postalCode":"33991","coordinates":{"lat":-66.043758,"lng":-59.356632},"country":"United States"},"macAddress":"6d:ab:13:25:a0:10","university":"Brown University","bank":{"cardExpire":"04/30","cardNumber":"3654883476033545","cardType":"Diners Club International","currency":"GBP","iban":"GB50FILIYPYET62B22GD66"},"company":{"department":"Accounting","name":"Aufderhar - Cormier","title":"Business Analyst","address":{"address":"1095 Adams Street","city":"Washington","state":"Missouri","stateCode":"MO","postalCode":"43273","coordinates":{"lat":63.930802,"lng":88.782366},"country":"United States"}},"ein":"861-925","ssn":"824-760-922","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":104,"firstName":"Michael","lastName":"Johnson","maidenName":"","age":25,"gender":"male","email":"michael.johnson@x.dummyjson.com","phone":"+92 290-825-4767","username":"michaelj","password":"michaeljpass","birthDate":"2000-1-6","image":"https://dummyjson.com/icon/michaelj/128","bloodGroup":"A+","height":164.38,"weight":97.18,"eyeColor":"Red","hair":{"color":"White","type":"Curly"},"ip":"115.37.119.66","address":{"address":"1252 Washington Street","city":"Phoenix","state":"Maryland","stateCode":"MD","postalCode":"64002","coordinates":{"lat":-79.040825,"lng":100.576804},"country":"United States"},"macAddress":"29:bc:a7:64:58:48","university":"University of Miami","bank":{"cardExpire":"04/30","cardNumber":"5503135276268039","cardType":"Mastercard","currency":"INR","iban":"DE80210977585310104611"},"company":{"department":"Marketing","name":"Wisozk, Schamberger and Huels","title":"Systems Analyst","address":{"address":"378 Madison Street","city":"Columbus","state":"South Dakota","stateCode":"SD","postalCode":"34297","coordinates":{"lat":-74.566078,"lng":-90.962102},"country":"United States"}},"ein":"819-102","ssn":"924-462-933","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"}],"total":3,"skip":0,"limit":3}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Users array not empty | 1 | 0 | 0 |
| First user has id | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 4 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Filters users based on a specific field key-value pair, allowing precise user data filtering.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/users/filter?key=hair.color&value=Brown`
## Authentication
- **Required**: No
- This is a public endpoint that doesn't require authentication
## Parameters
### Query Parameters
- `key` (required) - The field path to filter by (supports nested fields with dot notation, e.g., `hair.color`, `address.city`)
- `value` (required) - The value to match for the specified key
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
{
"users": [
{
"id": 1,
"firstName": "Emily",
"lastName": "Johnson",
"hair": {
"color": "Brown",
"type": "Curly"
},
...
}
],
"total": 50,
"skip": 0,
"limit": 30
}
```
## Tests Included
- Validates response status code is 200
- Verifies all users match the filter criteria
- Checks filtered field contains expected value
- Confirms pagination metadata is present
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjcsImV4cCI6MTc2OTk2NDc2N30.GZCUVvd0dz0StrtG1qYL4I5ptF4oYmGzmo6UUvIzx7o |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 9b9245e9-c573-49ea-b2e1-a1c398da8bf1 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:52:57 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 97 |
| x-ratelimit-reset | 1769961187 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"7caa-OItcDQBJ3m1BPDRUpluqCm9ogM0" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=JUM2vXzKW4yMQhdUK46oZymi0Z1QFD8M2wk4MvGugxA%2B6wqw1H9bbb7HqJQtsZm%2B7Y2YZy6XjHm1977a3BYBSlQaBHZBOFUx%2BRUk5tw%3D"}]} |
| CF-RAY | 9c729e6e289c2891-AMM |
{"users":[{"id":1,"firstName":"Emily","lastName":"Johnson","maidenName":"Smith","age":29,"gender":"female","email":"emily.johnson@x.dummyjson.com","phone":"+81 965-431-3024","username":"emilys","password":"emilyspass","birthDate":"1996-5-30","image":"https://dummyjson.com/icon/emilys/128","bloodGroup":"O-","height":193.24,"weight":63.16,"eyeColor":"Green","hair":{"color":"Brown","type":"Curly"},"ip":"42.48.100.32","address":{"address":"626 Main Street","city":"Phoenix","state":"Mississippi","stateCode":"MS","postalCode":"29112","coordinates":{"lat":-77.16213,"lng":-92.084824},"country":"United States"},"macAddress":"47:fa:41:18:ec:eb","university":"University of Wisconsin--Madison","bank":{"cardExpire":"05/28","cardNumber":"3693233511855044","cardType":"Diners Club International","currency":"GBP","iban":"GB74MH2UZLR9TRPHYNU8F8"},"company":{"department":"Engineering","name":"Dooley, Kozey and Cronin","title":"Sales Manager","address":{"address":"263 Tenth Street","city":"San Francisco","state":"Wisconsin","stateCode":"WI","postalCode":"37657","coordinates":{"lat":71.814525,"lng":-161.150263},"country":"United States"}},"ein":"977-175","ssn":"900-590-289","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"admin"},{"id":33,"firstName":"Carter","lastName":"Baker","maidenName":"","age":32,"gender":"male","email":"carter.baker@x.dummyjson.com","phone":"+49 787-512-9117","username":"carterb","password":"carterbpass","birthDate":"1993-4-19","image":"https://dummyjson.com/icon/carterb/128","bloodGroup":"A+","height":190.96,"weight":70.78,"eyeColor":"Green","hair":{"color":"Brown","type":"Straight"},"ip":"167.111.147.45","address":{"address":"625 Third Street","city":"Denver","state":"Oregon","stateCode":"OR","postalCode":"74622","coordinates":{"lat":-63.00584,"lng":76.189171},"country":"United States"},"macAddress":"35:0:ad:91:5f:f3","university":"Washington University in St. Louis","bank":{"cardExpire":"04/30","cardNumber":"5286984910566529","cardType":"Mastercard","currency":"AUD","iban":"DE50017878346071444444"},"company":{"department":"Product Management","name":"Luettgen and Sons","title":"Software Engineer","address":{"address":"127 Cedar Street","city":"Washington","state":"South Carolina","stateCode":"SC","postalCode":"17426","coordinates":{"lat":71.127142,"lng":174.470146},"country":"United States"}},"ein":"193-203","ssn":"927-818-529","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":51,"firstName":"Eli","lastName":"Bennett","maidenName":"","age":30,"gender":"male","email":"eli.bennett@x.dummyjson.com","phone":"+1 465-379-7226","username":"elib","password":"elibpass","birthDate":"1995-9-17","image":"https://dummyjson.com/icon/elib/128","bloodGroup":"B+","height":170.61,"weight":91.22,"eyeColor":"Gray","hair":{"color":"Brown","type":"Kinky"},"ip":"144.73.131.148","address":{"address":"1423 Main Street","city":"Jacksonville","state":"Idaho","stateCode":"ID","postalCode":"34271","coordinates":{"lat":-15.022759,"lng":58.392572},"country":"United States"},"macAddress":"f6:59:76:66:c0:85","university":"Boston University","bank":{"cardExpire":"04/28","cardNumber":"3644848905447957","cardType":"Diners Club International","currency":"GBP","iban":"GB4969YU8ZX5UYTERMTE5X"},"company":{"department":"Accounting","name":"Waters, Ankunding and Green","title":"Chief Operating Officer","address":{"address":"1536 Fourth Street","city":"Indianapolis","state":"Michigan","stateCode":"MI","postalCode":"77147","coordinates":{"lat":-49.858979,"lng":-21.940443},"country":"United States"}},"ein":"222-408","ssn":"216-126-647","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":54,"firstName":"Ava","lastName":"Harrison","maidenName":"","age":29,"gender":"female","email":"ava.harrison@x.dummyjson.com","phone":"+44 926-778-4653","username":"avah","password":"avahpass","birthDate":"1996-4-22","image":"https://dummyjson.com/icon/avah/128","bloodGroup":"O-","height":155.72,"weight":93.47,"eyeColor":"Hazel","hair":{"color":"Brown","type":"Curly"},"ip":"225.40.138.177","address":{"address":"1094 Adams Street","city":"San Antonio","state":"Vermont","stateCode":"VT","postalCode":"14336","coordinates":{"lat":-84.032892,"lng":-46.255902},"country":"United States"},"macAddress":"4e:2b:e4:33:7a:f8","university":"Harvard University","bank":{"cardExpire":"01/27","cardNumber":"3694482369735209","cardType":"Diners Club International","currency":"AUD","iban":"DE64412118002973670494"},"company":{"department":"Engineering","name":"Blanda - Jacobson","title":"Legal Counsel","address":{"address":"1374 Cedar Street","city":"Philadelphia","state":"Delaware","stateCode":"DE","postalCode":"21641","coordinates":{"lat":-56.564069,"lng":-134.42879},"country":"United States"}},"ein":"145-780","ssn":"621-536-422","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":59,"firstName":"Ethan","lastName":"Fletcher","maidenName":"","age":34,"gender":"male","email":"ethan.fletcher@x.dummyjson.com","phone":"+1 251-564-2643","username":"ethanf","password":"ethanfpass","birthDate":"1991-5-1","image":"https://dummyjson.com/icon/ethanf/128","bloodGroup":"AB-","height":183.99,"weight":83.98,"eyeColor":"Violet","hair":{"color":"Brown","type":"Curly"},"ip":"21.94.6.7","address":{"address":"789 Main Street","city":"Dallas","state":"Arkansas","stateCode":"AR","postalCode":"87924","coordinates":{"lat":29.411519,"lng":23.598322},"country":"United States"},"macAddress":"b2:fd:ca:1b:3b:a5","university":"Cornell University","bank":{"cardExpire":"02/27","cardNumber":"4440217612919449","cardType":"Visa","currency":"AUD","iban":"DE42359669771256255400"},"company":{"department":"Training","name":"Halvorson LLC","title":"Data Scientist","address":{"address":"258 Tenth Street","city":"Washington","state":"Texas","stateCode":"TX","postalCode":"10371","coordinates":{"lat":45.367618,"lng":-147.524292},"country":"United States"}},"ein":"610-786","ssn":"577-991-233","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":78,"firstName":"Eleanor","lastName":"Tyler","maidenName":"","age":31,"gender":"female","email":"eleanor.tyler@x.dummyjson.com","phone":"+1 232-621-9938","username":"eleanort","password":"eleanortpass","birthDate":"1994-10-26","image":"https://dummyjson.com/icon/eleanort/128","bloodGroup":"O-","height":195.85,"weight":70.03,"eyeColor":"Green","hair":{"color":"Brown","type":"Wavy"},"ip":"54.87.239.213","address":{"address":"439 Pine Street","city":"San Antonio","state":"New Hampshire","stateCode":"NH","postalCode":"64622","coordinates":{"lat":51.5965,"lng":47.479982},"country":"United States"},"macAddress":"df:94:e1:e7:3a:7","university":"Wake Forest University","bank":{"cardExpire":"03/30","cardNumber":"6282984352125703","cardType":"UnionPay","currency":"EUR","iban":"DE60851175428733331885"},"company":{"department":"Product Management","name":"Hilpert and Sons","title":"Web Developer","address":{"address":"580 Seventh Street","city":"Jacksonville","state":"Indiana","stateCode":"IN","postalCode":"57924","coordinates":{"lat":-3.475554,"lng":-138.094068},"country":"United States"}},"ein":"668-175","ssn":"688-176-797","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":83,"firstName":"Dylan","lastName":"Wells","maidenName":"","age":35,"gender":"male","email":"dylan.wells@x.dummyjson.com","phone":"+49 659-638-1106","username":"dylanw","password":"dylanwpass","birthDate":"1990-11-7","image":"https://dummyjson.com/icon/dylanw/128","bloodGroup":"O+","height":156.56,"weight":83.29,"eyeColor":"Amber","hair":{"color":"Brown","type":"Curly"},"ip":"254.112.7.252","address":{"address":"816 Sixth Street","city":"Philadelphia","state":"West Virginia","stateCode":"WV","postalCode":"54522","coordinates":{"lat":-82.623651,"lng":33.259567},"country":"United States"},"macAddress":"b7:c7:29:ff:e0:49","university":"William & Mary","bank":{"cardExpire":"07/29","cardNumber":"3597467382729154","cardType":"JCB","currency":"AUD","iban":"DE62128867521743907285"},"company":{"department":"Services","name":"Schmidt - Hyatt","title":"Support Specialist","address":{"address":"360 Sixth Street","city":"Seattle","state":"Florida","stateCode":"FL","postalCode":"16124","coordinates":{"lat":61.755934,"lng":-149.215844},"country":"United States"}},"ein":"560-210","ssn":"572-136-332","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":103,"firstName":"Emily","lastName":"Brown","maidenName":"Taylor","age":43,"gender":"female","email":"emily.brown@x.dummyjson.com","phone":"+61 875-999-8871","username":"emilyt","password":"emilytpass","birthDate":"1982-12-5","image":"https://dummyjson.com/icon/emilyt/128","bloodGroup":"AB-","height":181.96,"weight":89.65,"eyeColor":"Blue","hair":{"color":"Brown","type":"Kinky"},"ip":"41.156.197.109","address":{"address":"1962 Fourth Street","city":"Houston","state":"Hawaii","stateCode":"HI","postalCode":"67104","coordinates":{"lat":-64.336051,"lng":135.876737},"country":"United States"},"macAddress":"3b:9b:ee:cf:1f:de","university":"Georgetown University","bank":{"cardExpire":"09/30","cardNumber":"374970244492890","cardType":"American Express","currency":"INR","iban":"DE06646067555223276327"},"company":{"department":"Research and Development","name":"Pfannerstill Inc","title":"Data Analyst","address":{"address":"1998 Main Street","city":"Indianapolis","state":"Arizona","stateCode":"AZ","postalCode":"57190","coordinates":{"lat":-83.995771,"lng":127.669213},"country":"United States"}},"ein":"844-425","ssn":"119-906-830","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":105,"firstName":"Emma","lastName":"Wilson","maidenName":"Clark","age":32,"gender":"female","email":"emma.wilson@x.dummyjson.com","phone":"+49 933-975-3236","username":"emmac","password":"emmacpass","birthDate":"1993-6-2","image":"https://dummyjson.com/icon/emmac/128","bloodGroup":"O+","height":164.59,"weight":97.44,"eyeColor":"Gray","hair":{"color":"Brown","type":"Straight"},"ip":"23.240.162.228","address":{"address":"888 Lincoln Street","city":"New York","state":"Kansas","stateCode":"KS","postalCode":"85313","coordinates":{"lat":64.320835,"lng":-25.984113},"country":"United States"},"macAddress":"64:a6:72:4d:9e:79","university":"Tufts University","bank":{"cardExpire":"03/30","cardNumber":"6011728212195820","cardType":"Discover","currency":"CNY","iban":"DE03754619165111286589"},"company":{"department":"Sales","name":"Nienow - Fritsch","title":"Software Engineer","address":{"address":"1302 Adams Street","city":"San Francisco","state":"Alaska","stateCode":"AK","postalCode":"39028","coordinates":{"lat":-78.519188,"lng":-144.614396},"country":"United States"}},"ein":"108-918","ssn":"690-817-970","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":112,"firstName":"Alexander","lastName":"Hernandez","maidenName":"","age":42,"gender":"male","email":"alexander.hernandez@x.dummyjson.com","phone":"+49 410-245-8608","username":"alexanderh","password":"alexanderhpass","birthDate":"1983-7-4","image":"https://dummyjson.com/icon/alexanderh/128","bloodGroup":"B-","height":172.2,"weight":82.3,"eyeColor":"Blue","hair":{"color":"Brown","type":"Kinky"},"ip":"145.104.53.16","address":{"address":"329 Second Street","city":"Dallas","state":"Idaho","stateCode":"ID","postalCode":"49314","coordinates":{"lat":14.101714,"lng":-148.130379},"country":"United States"},"macAddress":"4c:83:2a:82:f:c6","university":"University of Florida","bank":{"cardExpire":"11/30","cardNumber":"3511024200905426","cardType":"JCB","currency":"JPY","iban":"DE42863681794561041810"},"company":{"department":"Sales","name":"Gibson LLC","title":"Chief Technology Officer","address":{"address":"176 Main Street","city":"Seattle","state":"Pennsylvania","stateCode":"PA","postalCode":"61558","coordinates":{"lat":25.794587,"lng":101.693435},"country":"United States"}},"ein":"355-181","ssn":"583-406-155","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":117,"firstName":"Amelia","lastName":"Perez","maidenName":"Gonzalez","age":44,"gender":"female","email":"amelia.perez@x.dummyjson.com","phone":"+49 751-988-9521","username":"ameliag","password":"ameliagpass","birthDate":"1981-1-29","image":"https://dummyjson.com/icon/ameliag/128","bloodGroup":"B+","height":186.66,"weight":80.38,"eyeColor":"Brown","hair":{"color":"Brown","type":"Wavy"},"ip":"249.222.49.78","address":{"address":"25 Elm Street","city":"New York","state":"New Hampshire","stateCode":"NH","postalCode":"88314","coordinates":{"lat":-55.895738,"lng":-117.829232},"country":"United States"},"macAddress":"1:64:41:63:ca:9e","university":"University of Michigan--Ann Arbor","bank":{"cardExpire":"05/30","cardNumber":"349189566293370","cardType":"American Express","currency":"EUR","iban":"IT88GLSNDVETYALH79DUSDQWYBNMA"},"company":{"department":"Services","name":"Swift - Stamm","title":"Chief Executive Officer","address":{"address":"1390 Pine Street","city":"Philadelphia","state":"Maine","stateCode":"ME","postalCode":"21632","coordinates":{"lat":-19.615702,"lng":42.511462},"country":"United States"}},"ein":"836-867","ssn":"769-496-865","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":121,"firstName":"Ava","lastName":"Harris","maidenName":"","age":30,"gender":"female","email":"ava.harris@x.dummyjson.com","phone":"+44 422-227-6412","username":"avahx","password":"avahxpass","birthDate":"1995-8-26","image":"https://dummyjson.com/icon/avahx/128","bloodGroup":"A-","height":199.36,"weight":63.3,"eyeColor":"Blue","hair":{"color":"Brown","type":"Wavy"},"ip":"23.127.175.229","address":{"address":"518 Elm Street","city":"San Antonio","state":"Florida","stateCode":"FL","postalCode":"35171","coordinates":{"lat":74.817644,"lng":15.72801},"country":"United States"},"macAddress":"4:c3:e9:35:23:2a","university":"University of Florida","bank":{"cardExpire":"02/30","cardNumber":"3622583668551978","cardType":"Diners Club International","currency":"JPY","iban":"DE72545287965967528178"},"company":{"department":"Marketing","name":"Lebsack Inc","title":"Engineer","address":{"address":"1495 First Street","city":"Columbus","state":"Alaska","stateCode":"AK","postalCode":"64989","coordinates":{"lat":18.943383,"lng":-136.717336},"country":"United States"}},"ein":"715-161","ssn":"906-771-261","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":124,"firstName":"Noah","lastName":"Lewis","maidenName":"","age":40,"gender":"male","email":"noah.lewis@x.dummyjson.com","phone":"+61 396-867-4229","username":"noahl","password":"noahlpass","birthDate":"1985-6-9","image":"https://dummyjson.com/icon/noahl/128","bloodGroup":"AB-","height":168.71,"weight":86.15,"eyeColor":"Green","hair":{"color":"Brown","type":"Curly"},"ip":"210.106.253.177","address":{"address":"41 Fifth Street","city":"Denver","state":"Alabama","stateCode":"AL","postalCode":"42655","coordinates":{"lat":62.7964,"lng":-10.481867},"country":"United States"},"macAddress":"e3:f5:6d:86:ed:bd","university":"Yale University","bank":{"cardExpire":"01/30","cardNumber":"3553297247069104","cardType":"JCB","currency":"EUR","iban":"FR89F3HKAI2Q8MPK3JKJ43YQIT7"},"company":{"department":"Research and Development","name":"Satterfield, Shields and Littel","title":"Project Manager","address":{"address":"596 Third Street","city":"Seattle","state":"Minnesota","stateCode":"MN","postalCode":"30859","coordinates":{"lat":-9.449962,"lng":124.358321},"country":"United States"}},"ein":"898-556","ssn":"711-488-725","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":131,"firstName":"Jackson","lastName":"Morales","maidenName":"","age":34,"gender":"male","email":"jackson.morales@x.dummyjson.com","phone":"+1 685-561-9154","username":"jacksonm","password":"jacksonmpass","birthDate":"1991-9-18","image":"https://dummyjson.com/icon/jacksonm/128","bloodGroup":"AB-","height":154.3,"weight":60.62,"eyeColor":"Violet","hair":{"color":"Brown","type":"Curly"},"ip":"10.39.106.47","address":{"address":"1549 Main Street","city":"Austin","state":"Arkansas","stateCode":"AR","postalCode":"23595","coordinates":{"lat":89.624584,"lng":-107.671084},"country":"United States"},"macAddress":"e7:a2:59:b:23:32","university":"Pepperdine University","bank":{"cardExpire":"08/27","cardNumber":"4668916290124603","cardType":"Visa","currency":"AUD","iban":"DE89790012694823772619"},"company":{"department":"Human Resources","name":"Kshlerin, Mitchell and Wilderman","title":"Legal Counsel","address":{"address":"694 Second Street","city":"San Diego","state":"New Hampshire","stateCode":"NH","postalCode":"64598","coordinates":{"lat":-67.250988,"lng":158.241684},"country":"United States"}},"ein":"106-784","ssn":"439-618-286","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":135,"firstName":"Elijah","lastName":"Cruz","maidenName":"","age":30,"gender":"male","email":"elijah.cruz@x.dummyjson.com","phone":"+1 613-532-2557","username":"elijahc","password":"elijahcpass","birthDate":"1995-1-23","image":"https://dummyjson.com/icon/elijahc/128","bloodGroup":"O+","height":195.29,"weight":78.61,"eyeColor":"Gray","hair":{"color":"Brown","type":"Wavy"},"ip":"178.45.211.139","address":{"address":"583 Second Street","city":"Seattle","state":"North Dakota","stateCode":"ND","postalCode":"26483","coordinates":{"lat":19.529428,"lng":165.798169},"country":"United States"},"macAddress":"11:be:4d:5a:92:7d","university":"University of California--Berkeley","bank":{"cardExpire":"05/27","cardNumber":"5195573329944110","cardType":"Mastercard","currency":"CAD","iban":"DE67341880174568825698"},"company":{"department":"Accounting","name":"Stokes - Harber","title":"Marketing Manager","address":{"address":"1462 Jefferson Street","city":"Seattle","state":"New Jersey","stateCode":"NJ","postalCode":"81308","coordinates":{"lat":69.208929,"lng":-159.871286},"country":"United States"}},"ein":"115-488","ssn":"577-965-784","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":136,"firstName":"Madison","lastName":"Stewart","maidenName":"Kelly","age":37,"gender":"female","email":"madison.stewart@x.dummyjson.com","phone":"+61 455-829-5048","username":"madisonk","password":"madisonkpass","birthDate":"1988-5-15","image":"https://dummyjson.com/icon/madisonk/128","bloodGroup":"B-","height":199.81,"weight":76.36,"eyeColor":"Blue","hair":{"color":"Brown","type":"Kinky"},"ip":"110.144.81.89","address":{"address":"823 Sixth Street","city":"Indianapolis","state":"Arkansas","stateCode":"AR","postalCode":"66305","coordinates":{"lat":-26.509663,"lng":-127.744698},"country":"United States"},"macAddress":"4e:15:99:a0:22:33","university":"Northwestern University","bank":{"cardExpire":"06/27","cardNumber":"5362208194454054","cardType":"Mastercard","currency":"PKR","iban":"DE03605844090278785940"},"company":{"department":"Training","name":"Schowalter Group","title":"Data Scientist","address":{"address":"344 Main Street","city":"Washington","state":"Colorado","stateCode":"CO","postalCode":"64474","coordinates":{"lat":-33.940327,"lng":-144.800578},"country":"United States"}},"ein":"246-581","ssn":"223-424-188","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":147,"firstName":"Henry","lastName":"Turner","maidenName":"","age":45,"gender":"male","email":"henry.turner@x.dummyjson.com","phone":"+1 374-470-5082","username":"henryt","password":"henrytpass","birthDate":"1980-6-12","image":"https://dummyjson.com/icon/henryt/128","bloodGroup":"AB-","height":151.17,"weight":62.94,"eyeColor":"Amber","hair":{"color":"Brown","type":"Straight"},"ip":"96.193.117.130","address":{"address":"201 Sixth Street","city":"Philadelphia","state":"Ohio","stateCode":"OH","postalCode":"41914","coordinates":{"lat":-26.432988,"lng":79.850071},"country":"United States"},"macAddress":"69:dd:33:c0:84:9e","university":"University of Florida","bank":{"cardExpire":"10/30","cardNumber":"371905945311588","cardType":"American Express","currency":"GBP","iban":"GB8253KW72S9PYJOKIXEU7"},"company":{"department":"Legal","name":"Dickens - Beahan","title":"Technical Support Engineer","address":{"address":"1392 Fifth Street","city":"Chicago","state":"Wyoming","stateCode":"WY","postalCode":"76234","coordinates":{"lat":9.204767,"lng":-80.70479},"country":"United States"}},"ein":"884-620","ssn":"555-829-690","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":151,"firstName":"Nathan","lastName":"Reed","maidenName":"","age":29,"gender":"male","email":"nathan.reed@x.dummyjson.com","phone":"+1 448-642-4577","username":"nathanr","password":"nathanrpass","birthDate":"1996-12-26","image":"https://dummyjson.com/icon/nathanr/128","bloodGroup":"A+","height":186.76,"weight":52.22,"eyeColor":"Amber","hair":{"color":"Brown","type":"Curly"},"ip":"216.178.112.125","address":{"address":"82 Cedar Street","city":"Los Angeles","state":"Utah","stateCode":"UT","postalCode":"73204","coordinates":{"lat":66.874876,"lng":-47.038037},"country":"United States"},"macAddress":"1b:a1:e1:cd:a2:39","university":"University of Pennsylvania","bank":{"cardExpire":"04/27","cardNumber":"6249029371283109","cardType":"UnionPay","currency":"USD","iban":"DE15115435946113309166"},"company":{"department":"Training","name":"Stark Group","title":"Chief Operating Officer","address":{"address":"1075 Adams Street","city":"Philadelphia","state":"North Carolina","stateCode":"NC","postalCode":"28999","coordinates":{"lat":55.767346,"lng":-60.983019},"country":"United States"}},"ein":"647-669","ssn":"355-857-184","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":156,"firstName":"Mila","lastName":"Hernandez","maidenName":"Mitchell","age":34,"gender":"female","email":"mila.hernandez@x.dummyjson.com","phone":"+49 893-855-2896","username":"milam","password":"milampass","birthDate":"1991-8-18","image":"https://dummyjson.com/icon/milam/128","bloodGroup":"B-","height":174.13,"weight":80.97,"eyeColor":"Hazel","hair":{"color":"Brown","type":"Kinky"},"ip":"109.219.231.82","address":{"address":"1454 Oak Street","city":"Seattle","state":"New Mexico","stateCode":"NM","postalCode":"46438","coordinates":{"lat":89.661297,"lng":163.24939},"country":"United States"},"macAddress":"69:8b:7e:5f:44:93","university":"University of Virginia","bank":{"cardExpire":"12/29","cardNumber":"4584709028598326","cardType":"Visa","currency":"EUR","iban":"NL07YI74AY8L48Z7OE"},"company":{"department":"Marketing","name":"Wisoky - Rowe","title":"Software Architect","address":{"address":"1281 Pine Street","city":"Austin","state":"Rhode Island","stateCode":"RI","postalCode":"66784","coordinates":{"lat":53.726642,"lng":102.912699},"country":"United States"}},"ein":"708-862","ssn":"549-233-319","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":166,"firstName":"Elena","lastName":"Long","maidenName":"Mitchell","age":43,"gender":"female","email":"elena.long@x.dummyjson.com","phone":"+91 697-839-3216","username":"elenam","password":"elenampass","birthDate":"1982-4-4","image":"https://dummyjson.com/icon/elenam/128","bloodGroup":"AB+","height":179.89,"weight":56.93,"eyeColor":"Hazel","hair":{"color":"Brown","type":"Kinky"},"ip":"252.247.244.14","address":{"address":"1883 Lincoln Street","city":"San Jose","state":"New York","stateCode":"NY","postalCode":"29766","coordinates":{"lat":-59.16639,"lng":-110.237583},"country":"United States"},"macAddress":"7f:a7:45:db:ae:69","university":"Tufts University","bank":{"cardExpire":"02/29","cardNumber":"5223503782631983","cardType":"Mastercard","currency":"GBP","iban":"GB291SKJY1I21ZAJIARKW4"},"company":{"department":"Research and Development","name":"Bruen and Sons","title":"Database Administrator","address":{"address":"985 Ninth Street","city":"New York","state":"Colorado","stateCode":"CO","postalCode":"36408","coordinates":{"lat":59.040431,"lng":-134.144154},"country":"United States"}},"ein":"457-165","ssn":"619-479-503","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":188,"firstName":"Aria","lastName":"Flores","maidenName":"Martin","age":26,"gender":"female","email":"aria.flores@x.dummyjson.com","phone":"+61 415-771-8232","username":"ariamx","password":"ariamxpass","birthDate":"1999-11-8","image":"https://dummyjson.com/icon/ariamx/128","bloodGroup":"O-","height":160.06,"weight":92.02,"eyeColor":"Amber","hair":{"color":"Brown","type":"Wavy"},"ip":"86.67.36.191","address":{"address":"492 Pine Street","city":"Indianapolis","state":"Tennessee","stateCode":"TN","postalCode":"71284","coordinates":{"lat":-88.3996,"lng":22.908268},"country":"United States"},"macAddress":"9d:d1:19:e7:45:26","university":"Columbia University","bank":{"cardExpire":"07/30","cardNumber":"3568996021436297","cardType":"JCB","currency":"AUD","iban":"DE53096479676200434539"},"company":{"department":"Sales","name":"Gibson LLC","title":"Sales Manager","address":{"address":"1728 Sixth Street","city":"Fort Worth","state":"Nebraska","stateCode":"NE","postalCode":"74809","coordinates":{"lat":51.558679,"lng":-85.819219},"country":"United States"}},"ein":"784-961","ssn":"132-677-684","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":203,"firstName":"Nova","lastName":"Cooper","maidenName":"Bell","age":32,"gender":"female","email":"nova.cooper@x.dummyjson.com","phone":"+49 292-569-8252","username":"novab","password":"novabpass","birthDate":"1993-6-16","image":"https://dummyjson.com/icon/novab/128","bloodGroup":"B-","height":155.62,"weight":60.62,"eyeColor":"Hazel","hair":{"color":"Brown","type":"Curly"},"ip":"143.240.135.160","address":{"address":"1687 Pine Street","city":"Los Angeles","state":"Nebraska","stateCode":"NE","postalCode":"49131","coordinates":{"lat":64.747296,"lng":148.357671},"country":"United States"},"macAddress":"e:ea:3e:f3:2d:90","university":"Dartmouth College","bank":{"cardExpire":"01/27","cardNumber":"4281297008337127","cardType":"Visa","currency":"CAD","iban":"DE21025127888819711543"},"company":{"department":"Marketing","name":"Schmidt - Hyatt","title":"Legal Counsel","address":{"address":"1970 Maple Street","city":"New York","state":"Georgia","stateCode":"GA","postalCode":"24324","coordinates":{"lat":-84.354097,"lng":-63.193683},"country":"United States"}},"ein":"249-364","ssn":"357-926-188","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:97.0) Gecko/20100101 Firefox/97.0","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":206,"firstName":"Elena","lastName":"Baker","maidenName":"","age":35,"gender":"female","email":"elena.baker@x.dummyjson.com","phone":"+49 978-346-6960","username":"elenab","password":"elenabpass","birthDate":"1990-3-16","image":"https://dummyjson.com/icon/elenab/128","bloodGroup":"O+","height":150.62,"weight":95.55,"eyeColor":"Brown","hair":{"color":"Brown","type":"Straight"},"ip":"85.35.8.29","address":{"address":"117 Maple Street","city":"San Francisco","state":"Tennessee","stateCode":"TN","postalCode":"40535","coordinates":{"lat":30.069731,"lng":-118.879243},"country":"United States"},"macAddress":"83:75:b2:b6:ca:8b","university":"Tufts University","bank":{"cardExpire":"01/30","cardNumber":"5437614839810348","cardType":"Mastercard","currency":"INR","iban":"DE24112202737130790320"},"company":{"department":"Engineering","name":"Heller LLC","title":"Project Manager","address":{"address":"139 Jefferson Street","city":"San Antonio","state":"Idaho","stateCode":"ID","postalCode":"50546","coordinates":{"lat":1.356153,"lng":175.897893},"country":"United States"}},"ein":"509-840","ssn":"640-201-673","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"}],"total":23,"skip":0,"limit":23}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Retrieves a paginated list of users with specific fields selected, demonstrating pagination and field filtering capabilities.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/users?limit=5&skip=10&select=firstName,age`
## Authentication
- **Required**: No
- This is a public endpoint that doesn't require authentication
## Parameters
### Query Parameters
- `limit` (optional) - Number of users to return (default: 30)
- `skip` (optional) - Number of users to skip for pagination (default: 0)
- `select` (optional) - Comma-separated list of fields to include in response
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
{
"users": [
{
"id": 11,
"firstName": "John",
"age": 30
}
],
"total": 208,
"skip": 10,
"limit": 5
}
```
## Tests Included
- Validates response status code is 200
- Verifies correct number of users returned (limit)
- Checks pagination offset (skip)
- Confirms only selected fields are present in response
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjcsImV4cCI6MTc2OTk2NDc2N30.GZCUVvd0dz0StrtG1qYL4I5ptF4oYmGzmo6UUvIzx7o |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | c07e2deb-5961-4daa-b1b2-b3d9fd99df5c |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:52:57 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 96 |
| x-ratelimit-reset | 1769961187 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"f0-c9aLGWPNjhOdE9zS5MuqtOmC4iE" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=hUkNGKnQ6CtWjeJXsS9Srj4l2482OaAj92gP6W5HKWvWydymW2tHIhP7jEc3UY%2FnNNK41xHiZXTgHTMuwuldKx2lxXXlvFwR0zxRvC8%3D"}]} |
| Content-Encoding | br |
| CF-RAY | 9c729e6fda482891-AMM |
{"users":[{"id":11,"firstName":"Liam","age":30},{"id":12,"firstName":"Mia","age":25},{"id":13,"firstName":"Noah","age":41},{"id":14,"firstName":"Charlotte","age":37},{"id":15,"firstName":"William","age":33}],"total":208,"skip":10,"limit":5}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Retrieves all users sorted by a specific field in ascending or descending order.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/users?sortBy=firstName&order=asc`
## Authentication
- **Required**: No
- This is a public endpoint that doesn't require authentication
## Parameters
### Query Parameters
- `sortBy` (optional) - Field name to sort by (e.g., firstName, lastName, age, email)
- `order` (optional) - Sort order: `asc` (ascending) or `desc` (descending)
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
{
"users": [
{
"id": 1,
"firstName": "Aaron",
"lastName": "Smith",
"age": 25,
...
}
],
"total": 208,
"skip": 0,
"limit": 30
}
```
## Tests Included
- Validates response status code is 200
- Verifies users array is sorted correctly
- Checks sort order matches requested order (asc/desc)
- Confirms all user fields are present
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjcsImV4cCI6MTc2OTk2NDc2N30.GZCUVvd0dz0StrtG1qYL4I5ptF4oYmGzmo6UUvIzx7o |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 36bc7fa4-32a6-4099-9e56-1ac1165524ef |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:52:57 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 90 |
| x-ratelimit-reset | 1769961179 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"a337-zsejjB8Q1xUzsEelxEwDQWBnWxk" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=X%2Bmjmtn4ay2%2BjQPVZRXxdIEtJKC7JRYQixRax3yp7ysZztxWRS0jFVdt8TWP4XjrMSenuyFrROqCE%2BEbarPmcBfS%2BJgZlMFcLrRtnz8%3D"}]} |
| CF-RAY | 9c729e717c062891-AMM |
{"users":[{"id":84,"firstName":"Aaliyah","lastName":"Hanson","maidenName":"","age":29,"gender":"female","email":"aaliyah.hanson@x.dummyjson.com","phone":"+1 275-501-1119","username":"aaliyahh","password":"aaliyahhpass","birthDate":"1996-3-20","image":"https://dummyjson.com/icon/aaliyahh/128","bloodGroup":"B+","height":164.5,"weight":92.03,"eyeColor":"Blue","hair":{"color":"Gray","type":"Wavy"},"ip":"51.180.201.49","address":{"address":"790 Eighth Street","city":"Philadelphia","state":"North Dakota","stateCode":"ND","postalCode":"51438","coordinates":{"lat":15.832722,"lng":-148.237795},"country":"United States"},"macAddress":"89:50:ac:7e:d0:b6","university":"Cornell University","bank":{"cardExpire":"02/28","cardNumber":"6011926454334632","cardType":"Discover","currency":"CAD","iban":"DE02970928927762628941"},"company":{"department":"Accounting","name":"Marvin Inc","title":"Quality Assurance Engineer","address":{"address":"747 Ninth Street","city":"San Francisco","state":"North Carolina","stateCode":"NC","postalCode":"68238","coordinates":{"lat":-53.992111,"lng":-32.617357},"country":"United States"}},"ein":"709-477","ssn":"453-478-272","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":176,"firstName":"Aaliyah","lastName":"Martinez","maidenName":"Adams","age":29,"gender":"female","email":"aaliyah.martinez@x.dummyjson.com","phone":"+91 862-924-5336","username":"aaliyaha","password":"aaliyahapass","birthDate":"1996-2-2","image":"https://dummyjson.com/icon/aaliyaha/128","bloodGroup":"B+","height":177.05,"weight":68.62,"eyeColor":"Green","hair":{"color":"Blonde","type":"Curly"},"ip":"164.70.78.194","address":{"address":"935 Fifth Street","city":"New York","state":"West Virginia","stateCode":"WV","postalCode":"60165","coordinates":{"lat":2.456241,"lng":-122.373016},"country":"United States"},"macAddress":"c:a3:46:aa:98:7c","university":"Georgetown University","bank":{"cardExpire":"04/29","cardNumber":"5587285781475675","cardType":"Mastercard","currency":"CNY","iban":"DE44094986173554781705"},"company":{"department":"Support","name":"Ankunding, Little and Flatley","title":"Web Developer","address":{"address":"624 Adams Street","city":"Jacksonville","state":"Nebraska","stateCode":"NE","postalCode":"72753","coordinates":{"lat":56.509799,"lng":-4.674365},"country":"United States"}},"ein":"286-236","ssn":"195-119-185","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":157,"firstName":"Aaron","lastName":"Cook","maidenName":"","age":28,"gender":"male","email":"aaron.cook@x.dummyjson.com","phone":"+81 362-539-6973","username":"aaronc","password":"aaroncpass","birthDate":"1997-1-26","image":"https://dummyjson.com/icon/aaronc/128","bloodGroup":"AB+","height":165.6,"weight":61.17,"eyeColor":"Green","hair":{"color":"Blue","type":"Curly"},"ip":"71.248.65.203","address":{"address":"169 First Street","city":"Phoenix","state":"Wyoming","stateCode":"WY","postalCode":"52331","coordinates":{"lat":-6.538887,"lng":-58.475605},"country":"United States"},"macAddress":"9e:3f:8b:b:83:af","university":"University of Pennsylvania","bank":{"cardExpire":"03/29","cardNumber":"6011771715186854","cardType":"Discover","currency":"AUD","iban":"DE28971190963043337518"},"company":{"department":"Support","name":"Leffler, Rolfson and Becker","title":"Support Specialist","address":{"address":"380 Maple Street","city":"San Antonio","state":"Michigan","stateCode":"MI","postalCode":"44238","coordinates":{"lat":-31.851481,"lng":-63.253251},"country":"United States"}},"ein":"862-277","ssn":"270-351-584","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":19,"firstName":"Abigail","lastName":"Rivera","maidenName":"","age":29,"gender":"female","email":"abigail.rivera@x.dummyjson.com","phone":"+91 228-363-7806","username":"abigailr","password":"abigailrpass","birthDate":"1996-10-11","image":"https://dummyjson.com/icon/abigailr/128","bloodGroup":"B+","height":186.39,"weight":74.61,"eyeColor":"Violet","hair":{"color":"Blue","type":"Kinky"},"ip":"19.183.240.94","address":{"address":"996 Oak Street","city":"Chicago","state":"New Mexico","stateCode":"NM","postalCode":"11407","coordinates":{"lat":44.321308,"lng":-3.723903},"country":"United States"},"macAddress":"1d:a6:58:2a:e5:e4","university":"California Institute of Technology (Caltech)","bank":{"cardExpire":"01/27","cardNumber":"6011399019022417","cardType":"Discover","currency":"EUR","iban":"IT11QP2B5J81QM1FBX029VI5DD68O"},"company":{"department":"Human Resources","name":"Prohaska - Thiel","title":"Business Analyst","address":{"address":"1402 Adams Street","city":"Austin","state":"Wisconsin","stateCode":"WI","postalCode":"51456","coordinates":{"lat":25.672938,"lng":-76.54967},"country":"United States"}},"ein":"173-637","ssn":"655-823-929","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Edge/97.0.1072.76 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":30,"firstName":"Addison","lastName":"Wright","maidenName":"","age":33,"gender":"female","email":"addison.wright@x.dummyjson.com","phone":"+1 514-384-3300","username":"addisonw","password":"addisonwpass","birthDate":"1992-1-3","image":"https://dummyjson.com/icon/addisonw/128","bloodGroup":"B+","height":179.32,"weight":76.93,"eyeColor":"Brown","hair":{"color":"Blonde","type":"Straight"},"ip":"11.35.69.81","address":{"address":"568 Tenth Street","city":"San Francisco","state":"Montana","stateCode":"MT","postalCode":"54698","coordinates":{"lat":20.946052,"lng":100.228822},"country":"United States"},"macAddress":"fb:0:94:21:16:c","university":"Syracuse University","bank":{"cardExpire":"06/28","cardNumber":"5274971895809762","cardType":"Mastercard","currency":"PKR","iban":"DE91480955939051635497"},"company":{"department":"Services","name":"Kreiger Inc","title":"Human Resources Manager","address":{"address":"1173 Eighth Street","city":"San Diego","state":"Michigan","stateCode":"MI","postalCode":"85777","coordinates":{"lat":65.324413,"lng":87.142893},"country":"United States"}},"ein":"415-286","ssn":"804-492-390","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":164,"firstName":"Addison","lastName":"Ward","maidenName":"Foster","age":30,"gender":"female","email":"addison.ward@x.dummyjson.com","phone":"+1 248-875-1802","username":"addisonf","password":"addisonfpass","birthDate":"1995-8-23","image":"https://dummyjson.com/icon/addisonf/128","bloodGroup":"B-","height":160.22,"weight":75.72,"eyeColor":"Amber","hair":{"color":"Green","type":"Wavy"},"ip":"74.79.100.79","address":{"address":"1320 Fifth Street","city":"San Francisco","state":"South Carolina","stateCode":"SC","postalCode":"20149","coordinates":{"lat":-39.289112,"lng":46.108923},"country":"United States"},"macAddress":"e2:a5:4:ce:d7:60","university":"University of Illinois--Urbana-Champaign","bank":{"cardExpire":"12/30","cardNumber":"6011006235805000","cardType":"Discover","currency":"AUD","iban":"DE46038536418760965942"},"company":{"department":"Human Resources","name":"Kshlerin, Mitchell and Wilderman","title":"Product Manager","address":{"address":"1388 Tenth Street","city":"Charlotte","state":"New York","stateCode":"NY","postalCode":"63709","coordinates":{"lat":-5.900293,"lng":-10.987888},"country":"United States"}},"ein":"104-679","ssn":"801-271-313","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":200,"firstName":"Adrian","lastName":"Flores","maidenName":"","age":44,"gender":"male","email":"adrian.flores@x.dummyjson.com","phone":"+61 524-858-7351","username":"adrianf","password":"adrianfpass","birthDate":"1981-5-1","image":"https://dummyjson.com/icon/adrianf/128","bloodGroup":"O+","height":183.05,"weight":97.74,"eyeColor":"Green","hair":{"color":"Purple","type":"Wavy"},"ip":"86.244.141.158","address":{"address":"1395 Madison Street","city":"New York","state":"Delaware","stateCode":"DE","postalCode":"60163","coordinates":{"lat":48.779884,"lng":-84.200415},"country":"United States"},"macAddress":"e1:22:78:3f:9b:8c","university":"Stanford University","bank":{"cardExpire":"08/27","cardNumber":"347972688413683","cardType":"American Express","currency":"JPY","iban":"DE47803706973935779318"},"company":{"department":"Legal","name":"Rippin Inc","title":"Technical Support Engineer","address":{"address":"279 Madison Street","city":"San Antonio","state":"Louisiana","stateCode":"LA","postalCode":"25808","coordinates":{"lat":32.513584,"lng":-145.587193},"country":"United States"}},"ein":"965-469","ssn":"272-696-785","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":7,"firstName":"Alexander","lastName":"Jones","maidenName":"","age":39,"gender":"male","email":"alexander.jones@x.dummyjson.com","phone":"+61 260-824-4986","username":"alexanderj","password":"alexanderjpass","birthDate":"1986-10-20","image":"https://dummyjson.com/icon/alexanderj/128","bloodGroup":"AB-","height":153.89,"weight":77.42,"eyeColor":"Blue","hair":{"color":"White","type":"Straight"},"ip":"166.204.84.32","address":{"address":"664 Maple Street","city":"Indianapolis","state":"Delaware","stateCode":"DE","postalCode":"86684","coordinates":{"lat":35.289664,"lng":7.063255},"country":"United States"},"macAddress":"d2:64:58:2d:1c:46","university":"University of Illinois--Urbana-Champaign","bank":{"cardExpire":"12/29","cardNumber":"5189302549548693","cardType":"Mastercard","currency":"PKR","iban":"DE67517655968963441488"},"company":{"department":"Engineering","name":"Dickens - Beahan","title":"Web Developer","address":{"address":"996 Eighth Street","city":"Washington","state":"Kansas","stateCode":"KS","postalCode":"27858","coordinates":{"lat":-75.462366,"lng":-128.025697},"country":"United States"}},"ein":"638-127","ssn":"722-993-925","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"moderator"},{"id":112,"firstName":"Alexander","lastName":"Hernandez","maidenName":"","age":42,"gender":"male","email":"alexander.hernandez@x.dummyjson.com","phone":"+49 410-245-8608","username":"alexanderh","password":"alexanderhpass","birthDate":"1983-7-4","image":"https://dummyjson.com/icon/alexanderh/128","bloodGroup":"B-","height":172.2,"weight":82.3,"eyeColor":"Blue","hair":{"color":"Brown","type":"Kinky"},"ip":"145.104.53.16","address":{"address":"329 Second Street","city":"Dallas","state":"Idaho","stateCode":"ID","postalCode":"49314","coordinates":{"lat":14.101714,"lng":-148.130379},"country":"United States"},"macAddress":"4c:83:2a:82:f:c6","university":"University of Florida","bank":{"cardExpire":"11/30","cardNumber":"3511024200905426","cardType":"JCB","currency":"JPY","iban":"DE42863681794561041810"},"company":{"department":"Sales","name":"Gibson LLC","title":"Chief Technology Officer","address":{"address":"176 Main Street","city":"Seattle","state":"Pennsylvania","stateCode":"PA","postalCode":"61558","coordinates":{"lat":25.794587,"lng":101.693435},"country":"United States"}},"ein":"355-181","ssn":"583-406-155","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":101,"firstName":"Alice","lastName":"Smith","maidenName":"Johnson","age":29,"gender":"female","email":"alice.smith@x.dummyjson.com","phone":"+61 611-556-8989","username":"alicej","password":"alicejpass","birthDate":"1996-9-8","image":"https://dummyjson.com/icon/alicej/128","bloodGroup":"AB-","height":171.67,"weight":56.25,"eyeColor":"Red","hair":{"color":"Black","type":"Straight"},"ip":"223.157.14.11","address":{"address":"1631 Fourth Street","city":"Houston","state":"Arkansas","stateCode":"AR","postalCode":"81896","coordinates":{"lat":-16.873954,"lng":118.766256},"country":"United States"},"macAddress":"f3:c3:7b:69:2e:ab","university":"Wake Forest University","bank":{"cardExpire":"07/27","cardNumber":"5560162465503729","cardType":"Mastercard","currency":"CNY","iban":"DE11729875884000312491"},"company":{"department":"Marketing","name":"Jast - Nader","title":"Product Manager","address":{"address":"144 Eighth Street","city":"Austin","state":"Delaware","stateCode":"DE","postalCode":"55767","coordinates":{"lat":25.070859,"lng":15.203994},"country":"United States"}},"ein":"560-590","ssn":"479-900-352","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":117,"firstName":"Amelia","lastName":"Perez","maidenName":"Gonzalez","age":44,"gender":"female","email":"amelia.perez@x.dummyjson.com","phone":"+49 751-988-9521","username":"ameliag","password":"ameliagpass","birthDate":"1981-1-29","image":"https://dummyjson.com/icon/ameliag/128","bloodGroup":"B+","height":186.66,"weight":80.38,"eyeColor":"Brown","hair":{"color":"Brown","type":"Wavy"},"ip":"249.222.49.78","address":{"address":"25 Elm Street","city":"New York","state":"New Hampshire","stateCode":"NH","postalCode":"88314","coordinates":{"lat":-55.895738,"lng":-117.829232},"country":"United States"},"macAddress":"1:64:41:63:ca:9e","university":"University of Michigan--Ann Arbor","bank":{"cardExpire":"05/30","cardNumber":"349189566293370","cardType":"American Express","currency":"EUR","iban":"IT88GLSNDVETYALH79DUSDQWYBNMA"},"company":{"department":"Services","name":"Swift - Stamm","title":"Chief Executive Officer","address":{"address":"1390 Pine Street","city":"Philadelphia","state":"Maine","stateCode":"ME","postalCode":"21632","coordinates":{"lat":-19.615702,"lng":42.511462},"country":"United States"}},"ein":"836-867","ssn":"769-496-865","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":38,"firstName":"Aria","lastName":"Roberts","maidenName":"","age":27,"gender":"female","email":"aria.roberts@x.dummyjson.com","phone":"+61 411-514-5320","username":"ariar","password":"ariarpass","birthDate":"1998-3-25","image":"https://dummyjson.com/icon/ariar/128","bloodGroup":"A-","height":199.62,"weight":88.96,"eyeColor":"Gray","hair":{"color":"Blue","type":"Curly"},"ip":"208.86.10.37","address":{"address":"560 Fifth Street","city":"Seattle","state":"Rhode Island","stateCode":"RI","postalCode":"70664","coordinates":{"lat":36.157244,"lng":-29.219594},"country":"United States"},"macAddress":"7d:16:14:f8:d5:4","university":"Princeton University","bank":{"cardExpire":"10/28","cardNumber":"372071021242970","cardType":"American Express","currency":"CAD","iban":"DE33897381873184367321"},"company":{"department":"Legal","name":"Sanford and Sons","title":"Database Administrator","address":{"address":"69 Ninth Street","city":"Chicago","state":"Ohio","stateCode":"OH","postalCode":"77252","coordinates":{"lat":-1.902962,"lng":15.129767},"country":"United States"}},"ein":"329-619","ssn":"631-656-511","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":66,"firstName":"Aria","lastName":"Ferguson","maidenName":"","age":28,"gender":"female","email":"aria.ferguson@x.dummyjson.com","phone":"+44 434-406-8551","username":"ariaf","password":"ariafpass","birthDate":"1997-6-1","image":"https://dummyjson.com/icon/ariaf/128","bloodGroup":"B+","height":161.81,"weight":97.12,"eyeColor":"Blue","hair":{"color":"Blue","type":"Wavy"},"ip":"180.24.111.167","address":{"address":"1553 Sixth Street","city":"San Diego","state":"Wyoming","stateCode":"WY","postalCode":"59501","coordinates":{"lat":-66.092723,"lng":169.9952},"country":"United States"},"macAddress":"e2:71:6d:81:6:db","university":"Cornell University","bank":{"cardExpire":"02/28","cardNumber":"5222769696858258","cardType":"Mastercard","currency":"GBP","iban":"GB93YU9GTP9S3UJCULWWWL"},"company":{"department":"Legal","name":"Wisozk, Schamberger and Huels","title":"Project Manager","address":{"address":"807 Eighth Street","city":"Phoenix","state":"New Jersey","stateCode":"NJ","postalCode":"75765","coordinates":{"lat":46.824227,"lng":-51.392185},"country":"United States"}},"ein":"952-671","ssn":"705-592-753","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":142,"firstName":"Aria","lastName":"Parker","maidenName":"Miller","age":28,"gender":"female","email":"aria.parker@x.dummyjson.com","phone":"+91 762-847-6884","username":"ariam","password":"ariampass","birthDate":"1997-7-6","image":"https://dummyjson.com/icon/ariam/128","bloodGroup":"AB-","height":164.79,"weight":92.15,"eyeColor":"Blue","hair":{"color":"Green","type":"Curly"},"ip":"112.164.28.147","address":{"address":"1504 Tenth Street","city":"Phoenix","state":"Alabama","stateCode":"AL","postalCode":"16573","coordinates":{"lat":56.943768,"lng":41.212736},"country":"United States"},"macAddress":"c1:1:6a:d:86:c4","university":"Stanford University","bank":{"cardExpire":"09/27","cardNumber":"6011811630030256","cardType":"Discover","currency":"INR","iban":"DE52636264791885715598"},"company":{"department":"Human Resources","name":"Oberbrunner, Mosciski and Witting","title":"Software Architect","address":{"address":"1103 Maple Street","city":"Los Angeles","state":"Kentucky","stateCode":"KY","postalCode":"37560","coordinates":{"lat":-5.555558,"lng":-6.162671},"country":"United States"}},"ein":"385-819","ssn":"889-374-959","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":188,"firstName":"Aria","lastName":"Flores","maidenName":"Martin","age":26,"gender":"female","email":"aria.flores@x.dummyjson.com","phone":"+61 415-771-8232","username":"ariamx","password":"ariamxpass","birthDate":"1999-11-8","image":"https://dummyjson.com/icon/ariamx/128","bloodGroup":"O-","height":160.06,"weight":92.02,"eyeColor":"Amber","hair":{"color":"Brown","type":"Wavy"},"ip":"86.67.36.191","address":{"address":"492 Pine Street","city":"Indianapolis","state":"Tennessee","stateCode":"TN","postalCode":"71284","coordinates":{"lat":-88.3996,"lng":22.908268},"country":"United States"},"macAddress":"9d:d1:19:e7:45:26","university":"Columbia University","bank":{"cardExpire":"07/30","cardNumber":"3568996021436297","cardType":"JCB","currency":"AUD","iban":"DE53096479676200434539"},"company":{"department":"Sales","name":"Gibson LLC","title":"Sales Manager","address":{"address":"1728 Sixth Street","city":"Fort Worth","state":"Nebraska","stateCode":"NE","postalCode":"74809","coordinates":{"lat":51.558679,"lng":-85.819219},"country":"United States"}},"ein":"784-961","ssn":"132-677-684","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":172,"firstName":"Ariana","lastName":"Ross","maidenName":"Ward","age":37,"gender":"female","email":"ariana.ross@x.dummyjson.com","phone":"+61 393-553-7155","username":"arianaw","password":"arianawpass","birthDate":"1988-9-26","image":"https://dummyjson.com/icon/arianaw/128","bloodGroup":"O-","height":164.81,"weight":50.3,"eyeColor":"Red","hair":{"color":"White","type":"Kinky"},"ip":"47.190.165.179","address":{"address":"911 First Street","city":"Chicago","state":"West Virginia","stateCode":"WV","postalCode":"59220","coordinates":{"lat":-39.772203,"lng":-90.030002},"country":"United States"},"macAddress":"e5:32:fa:4f:da:f3","university":"University of Virginia","bank":{"cardExpire":"08/27","cardNumber":"5267990819173310","cardType":"Mastercard","currency":"JPY","iban":"DE05893634226384406776"},"company":{"department":"Accounting","name":"Stiedemann LLC","title":"Engineer","address":{"address":"429 Madison Street","city":"Denver","state":"New Mexico","stateCode":"NM","postalCode":"86999","coordinates":{"lat":33.005004,"lng":125.026624},"country":"United States"}},"ein":"873-983","ssn":"479-571-715","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":173,"firstName":"Asher","lastName":"Scott","maidenName":"","age":31,"gender":"male","email":"asher.scott@x.dummyjson.com","phone":"+81 469-421-7639","username":"ashers","password":"asherspass","birthDate":"1994-8-18","image":"https://dummyjson.com/icon/ashers/128","bloodGroup":"O+","height":169.56,"weight":54.08,"eyeColor":"Blue","hair":{"color":"Blue","type":"Curly"},"ip":"150.136.12.36","address":{"address":"666 Main Street","city":"Dallas","state":"Vermont","stateCode":"VT","postalCode":"82460","coordinates":{"lat":-80.129031,"lng":-63.515107},"country":"United States"},"macAddress":"7f:1d:2a:a2:c0:29","university":"Columbia University","bank":{"cardExpire":"01/30","cardNumber":"6011589163616085","cardType":"Discover","currency":"EUR","iban":"FR915U90IRZVO9NSF11TNJ90JOZ"},"company":{"department":"Human Resources","name":"Ullrich LLC","title":"Sales Manager","address":{"address":"1640 Oak Street","city":"Washington","state":"Oklahoma","stateCode":"OK","postalCode":"29026","coordinates":{"lat":-29.790789,"lng":-43.572763},"country":"United States"}},"ein":"172-363","ssn":"744-472-971","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.3 Safari/605.1.15","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":88,"firstName":"Aubrey","lastName":"Wagner","maidenName":"","age":31,"gender":"female","email":"aubrey.wagner@x.dummyjson.com","phone":"+81 285-568-5834","username":"aubreyw","password":"aubreywpass","birthDate":"1994-4-1","image":"https://dummyjson.com/icon/aubreyw/128","bloodGroup":"B+","height":168.73,"weight":79.86,"eyeColor":"Red","hair":{"color":"Blonde","type":"Wavy"},"ip":"203.204.53.60","address":{"address":"1147 Adams Street","city":"Phoenix","state":"North Carolina","stateCode":"NC","postalCode":"72711","coordinates":{"lat":-55.796433,"lng":-163.621876},"country":"United States"},"macAddress":"5a:18:55:d7:84:b9","university":"Vanderbilt University","bank":{"cardExpire":"10/29","cardNumber":"3692710040595549","cardType":"Diners Club International","currency":"CAD","iban":"DE48679614573470291447"},"company":{"department":"Sales","name":"Cassin Group","title":"Engineer","address":{"address":"1580 Tenth Street","city":"San Jose","state":"New Jersey","stateCode":"NJ","postalCode":"33398","coordinates":{"lat":35.508597,"lng":12.058887},"country":"United States"}},"ein":"990-866","ssn":"678-854-911","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":158,"firstName":"Aubrey","lastName":"Gutierrez","maidenName":"Baker","age":37,"gender":"female","email":"aubrey.gutierrez@x.dummyjson.com","phone":"+92 881-268-9845","username":"aubreyb","password":"aubreybpass","birthDate":"1988-2-19","image":"https://dummyjson.com/icon/aubreyb/128","bloodGroup":"AB-","height":186.45,"weight":69.83,"eyeColor":"Brown","hair":{"color":"Black","type":"Wavy"},"ip":"19.183.244.21","address":{"address":"1207 Oak Street","city":"Philadelphia","state":"Connecticut","stateCode":"CT","postalCode":"78892","coordinates":{"lat":-3.033666,"lng":-35.006014},"country":"United States"},"macAddress":"41:7:7b:23:29:e9","university":"University of Illinois--Urbana-Champaign","bank":{"cardExpire":"10/29","cardNumber":"6011134098408991","cardType":"Discover","currency":"AUD","iban":"DE95703770320430230584"},"company":{"department":"Human Resources","name":"Kreiger and Sons","title":"Developer","address":{"address":"1549 Second Street","city":"Columbus","state":"Arkansas","stateCode":"AR","postalCode":"62481","coordinates":{"lat":85.690418,"lng":-48.156251},"country":"United States"}},"ein":"821-613","ssn":"642-178-241","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":205,"firstName":"Aubrey","lastName":"Garcia","maidenName":"Gray","age":29,"gender":"female","email":"aubrey.garcia@x.dummyjson.com","phone":"+1 470-576-9130","username":"aubreyg","password":"aubreygpass","birthDate":"1996-11-5","image":"https://dummyjson.com/icon/aubreyg/128","bloodGroup":"AB+","height":192.28,"weight":85.89,"eyeColor":"Brown","hair":{"color":"Red","type":"Curly"},"ip":"0.163.108.147","address":{"address":"1221 Washington Street","city":"Los Angeles","state":"South Carolina","stateCode":"SC","postalCode":"78498","coordinates":{"lat":80.449539,"lng":-142.231527},"country":"United States"},"macAddress":"fb:ae:f9:15:24:90","university":"Pepperdine University","bank":{"cardExpire":"01/29","cardNumber":"4922036660101826","cardType":"Visa","currency":"NZD","iban":"DE91641615994664908034"},"company":{"department":"Legal","name":"Moore Inc","title":"Web Developer","address":{"address":"240 Third Street","city":"San Francisco","state":"Minnesota","stateCode":"MN","postalCode":"58649","coordinates":{"lat":3.609112,"lng":-35.397672},"country":"United States"}},"ein":"428-615","ssn":"344-154-808","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":96,"firstName":"Aurora","lastName":"Lawson","maidenName":"","age":27,"gender":"female","email":"aurora.lawson@x.dummyjson.com","phone":"+92 802-452-4192","username":"auroral","password":"auroralpass","birthDate":"1998-6-16","image":"https://dummyjson.com/icon/auroral/128","bloodGroup":"O+","height":174.28,"weight":88.18,"eyeColor":"Violet","hair":{"color":"Green","type":"Wavy"},"ip":"161.244.58.227","address":{"address":"1140 Adams Street","city":"Dallas","state":"Minnesota","stateCode":"MN","postalCode":"29004","coordinates":{"lat":83.417744,"lng":-7.933044},"country":"United States"},"macAddress":"34:95:bd:59:f4:39","university":"Boston University","bank":{"cardExpire":"07/29","cardNumber":"5480171454066942","cardType":"Mastercard","currency":"GBP","iban":"GB36C9TE2MIXX12X8IJMLG"},"company":{"department":"Product Management","name":"Hudson - Marquardt","title":"Chief Information Officer","address":{"address":"164 Fifth Street","city":"Indianapolis","state":"New York","stateCode":"NY","postalCode":"27958","coordinates":{"lat":89.270633,"lng":-72.618747},"country":"United States"}},"ein":"477-337","ssn":"191-532-292","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:97.0) Gecko/20100101 Firefox/97.0","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":148,"firstName":"Aurora","lastName":"Barnes","maidenName":"Gomez","age":30,"gender":"female","email":"aurora.barnes@x.dummyjson.com","phone":"+91 403-842-9683","username":"aurorag","password":"auroragpass","birthDate":"1995-12-15","image":"https://dummyjson.com/icon/aurorag/128","bloodGroup":"B+","height":185.79,"weight":53.66,"eyeColor":"Green","hair":{"color":"Red","type":"Curly"},"ip":"204.17.198.20","address":{"address":"1184 Adams Street","city":"New York","state":"Idaho","stateCode":"ID","postalCode":"19201","coordinates":{"lat":-20.67407,"lng":107.281052},"country":"United States"},"macAddress":"8c:49:78:e2:70:b2","university":"Georgetown University","bank":{"cardExpire":"04/28","cardNumber":"3623396287064565","cardType":"Diners Club International","currency":"GBP","iban":"GB87US86D82O10U5WQ3949"},"company":{"department":"Sales","name":"Cassin Group","title":"Chief Financial Officer","address":{"address":"478 Ninth Street","city":"Phoenix","state":"Connecticut","stateCode":"CT","postalCode":"39433","coordinates":{"lat":-19.046529,"lng":48.682257},"country":"United States"}},"ein":"470-547","ssn":"310-708-861","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Edge/97.0.1072.76 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":180,"firstName":"Aurora","lastName":"Rodriguez","maidenName":"Nelson","age":32,"gender":"female","email":"aurora.rodriguez@x.dummyjson.com","phone":"+61 393-225-2755","username":"auroran","password":"auroranpass","birthDate":"1993-11-23","image":"https://dummyjson.com/icon/auroran/128","bloodGroup":"AB+","height":164.92,"weight":65.48,"eyeColor":"Brown","hair":{"color":"Black","type":"Kinky"},"ip":"127.15.107.0","address":{"address":"1388 Madison Street","city":"Chicago","state":"Missouri","stateCode":"MO","postalCode":"60765","coordinates":{"lat":11.918088,"lng":-78.222936},"country":"United States"},"macAddress":"a0:81:60:92:50:e9","university":"University of Virginia","bank":{"cardExpire":"01/29","cardNumber":"5491854809080174","cardType":"Mastercard","currency":"NZD","iban":"DE91340258026412696778"},"company":{"department":"Research and Development","name":"Runolfsson, Kohler and Welch","title":"Software Engineer","address":{"address":"1277 Third Street","city":"Chicago","state":"North Dakota","stateCode":"ND","postalCode":"37621","coordinates":{"lat":35.160252,"lng":-141.580146},"country":"United States"}},"ein":"225-878","ssn":"879-917-944","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":81,"firstName":"Austin","lastName":"Hudson","maidenName":"","age":30,"gender":"male","email":"austin.hudson@x.dummyjson.com","phone":"+81 405-412-4250","username":"austinh","password":"austinhpass","birthDate":"1995-5-1","image":"https://dummyjson.com/icon/austinh/128","bloodGroup":"A-","height":189.77,"weight":66.83,"eyeColor":"Blue","hair":{"color":"Blue","type":"Straight"},"ip":"147.130.253.116","address":{"address":"1468 Eighth Street","city":"Los Angeles","state":"Maryland","stateCode":"MD","postalCode":"64305","coordinates":{"lat":-28.392471,"lng":-44.144328},"country":"United States"},"macAddress":"e:c0:3:62:e2:d0","university":"University of Michigan--Ann Arbor","bank":{"cardExpire":"02/30","cardNumber":"6011463292832932","cardType":"Discover","currency":"GBP","iban":"GB912RDPFF9YXGMYS7IO14"},"company":{"department":"Sales","name":"Okuneva Group","title":"Legal Counsel","address":{"address":"1323 Adams Street","city":"Jacksonville","state":"Mississippi","stateCode":"MS","postalCode":"18643","coordinates":{"lat":-47.033335,"lng":-68.205081},"country":"United States"}},"ein":"536-921","ssn":"731-202-997","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":92,"firstName":"Autumn","lastName":"Gomez","maidenName":"","age":27,"gender":"female","email":"autumn.gomez@x.dummyjson.com","phone":"+1 340-455-2897","username":"autumng","password":"autumngpass","birthDate":"1998-2-1","image":"https://dummyjson.com/icon/autumng/128","bloodGroup":"A-","height":182.61,"weight":92.77,"eyeColor":"Amber","hair":{"color":"Purple","type":"Wavy"},"ip":"104.233.56.225","address":{"address":"1585 Washington Street","city":"Dallas","state":"Illinois","stateCode":"IL","postalCode":"53203","coordinates":{"lat":27.443768,"lng":-176.861979},"country":"United States"},"macAddress":"75:e4:8e:ea:ce:9d","university":"University of Chicago","bank":{"cardExpire":"09/29","cardNumber":"3618727858757814","cardType":"Diners Club International","currency":"GBP","iban":"GB512IQ7OY0FUSMWYQ1ZY7"},"company":{"department":"Product Management","name":"Kuhlman LLC","title":"Business Analyst","address":{"address":"1818 Jefferson Street","city":"Philadelphia","state":"New York","stateCode":"NY","postalCode":"69388","coordinates":{"lat":-46.202815,"lng":163.840848},"country":"United States"}},"ein":"411-642","ssn":"165-661-612","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":8,"firstName":"Ava","lastName":"Taylor","maidenName":"","age":28,"gender":"female","email":"ava.taylor@x.dummyjson.com","phone":"+1 458-853-7877","username":"avat","password":"avatpass","birthDate":"1997-8-25","image":"https://dummyjson.com/icon/avat/128","bloodGroup":"AB-","height":168.47,"weight":57.08,"eyeColor":"Hazel","hair":{"color":"Red","type":"Kinky"},"ip":"150.73.197.233","address":{"address":"1197 First Street","city":"Fort Worth","state":"Rhode Island","stateCode":"RI","postalCode":"24771","coordinates":{"lat":-81.194833,"lng":-87.948158},"country":"United States"},"macAddress":"8d:2e:c2:d6:e7:a8","university":"University of Wisconsin--Madison","bank":{"cardExpire":"08/30","cardNumber":"5349974103330333","cardType":"Mastercard","currency":"EUR","iban":"FR94ZM2MMGL1EVYQE1ZLCVCFH83"},"company":{"department":"Marketing","name":"Nikolaus Inc","title":"Chief Executive Officer","address":{"address":"930 Lincoln Street","city":"Austin","state":"Colorado","stateCode":"CO","postalCode":"47592","coordinates":{"lat":87.970083,"lng":-42.769351},"country":"United States"}},"ein":"297-762","ssn":"257-419-109","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"moderator"},{"id":54,"firstName":"Ava","lastName":"Harrison","maidenName":"","age":29,"gender":"female","email":"ava.harrison@x.dummyjson.com","phone":"+44 926-778-4653","username":"avah","password":"avahpass","birthDate":"1996-4-22","image":"https://dummyjson.com/icon/avah/128","bloodGroup":"O-","height":155.72,"weight":93.47,"eyeColor":"Hazel","hair":{"color":"Brown","type":"Curly"},"ip":"225.40.138.177","address":{"address":"1094 Adams Street","city":"San Antonio","state":"Vermont","stateCode":"VT","postalCode":"14336","coordinates":{"lat":-84.032892,"lng":-46.255902},"country":"United States"},"macAddress":"4e:2b:e4:33:7a:f8","university":"Harvard University","bank":{"cardExpire":"01/27","cardNumber":"3694482369735209","cardType":"Diners Club International","currency":"AUD","iban":"DE64412118002973670494"},"company":{"department":"Engineering","name":"Blanda - Jacobson","title":"Legal Counsel","address":{"address":"1374 Cedar Street","city":"Philadelphia","state":"Delaware","stateCode":"DE","postalCode":"21641","coordinates":{"lat":-56.564069,"lng":-134.42879},"country":"United States"}},"ein":"145-780","ssn":"621-536-422","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":121,"firstName":"Ava","lastName":"Harris","maidenName":"","age":30,"gender":"female","email":"ava.harris@x.dummyjson.com","phone":"+44 422-227-6412","username":"avahx","password":"avahxpass","birthDate":"1995-8-26","image":"https://dummyjson.com/icon/avahx/128","bloodGroup":"A-","height":199.36,"weight":63.3,"eyeColor":"Blue","hair":{"color":"Brown","type":"Wavy"},"ip":"23.127.175.229","address":{"address":"518 Elm Street","city":"San Antonio","state":"Florida","stateCode":"FL","postalCode":"35171","coordinates":{"lat":74.817644,"lng":15.72801},"country":"United States"},"macAddress":"4:c3:e9:35:23:2a","university":"University of Florida","bank":{"cardExpire":"02/30","cardNumber":"3622583668551978","cardType":"Diners Club International","currency":"JPY","iban":"DE72545287965967528178"},"company":{"department":"Marketing","name":"Lebsack Inc","title":"Engineer","address":{"address":"1495 First Street","city":"Columbus","state":"Alaska","stateCode":"AK","postalCode":"64989","coordinates":{"lat":18.943383,"lng":-136.717336},"country":"United States"}},"ein":"715-161","ssn":"906-771-261","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":16,"firstName":"Avery","lastName":"Perez","maidenName":"","age":26,"gender":"female","email":"avery.perez@x.dummyjson.com","phone":"+61 731-431-3457","username":"averyp","password":"averyppass","birthDate":"1999-3-10","image":"https://dummyjson.com/icon/averyp/128","bloodGroup":"O-","height":172.68,"weight":93.9,"eyeColor":"Brown","hair":{"color":"Green","type":"Curly"},"ip":"131.217.4.214","address":{"address":"1125 First Street","city":"Columbus","state":"Iowa","stateCode":"IA","postalCode":"30973","coordinates":{"lat":12.789127,"lng":85.792598},"country":"United States"},"macAddress":"b3:ff:f3:c5:37:46","university":"Harvard University","bank":{"cardExpire":"08/29","cardNumber":"378024038311910","cardType":"American Express","currency":"USD","iban":"DE42403186906981858976"},"company":{"department":"Accounting","name":"Herzog Inc","title":"Database Administrator","address":{"address":"183 Maple Street","city":"New York","state":"Rhode Island","stateCode":"RI","postalCode":"45238","coordinates":{"lat":-53.318189,"lng":105.835271},"country":"United States"}},"ein":"348-493","ssn":"679-523-686","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":42,"firstName":"Avery","lastName":"Carter","maidenName":"","age":29,"gender":"female","email":"avery.carter@x.dummyjson.com","phone":"+44 254-655-6112","username":"averyc","password":"averycpass","birthDate":"1996-8-21","image":"https://dummyjson.com/icon/averyc/128","bloodGroup":"B-","height":179.92,"weight":59.37,"eyeColor":"Blue","hair":{"color":"Blue","type":"Straight"},"ip":"187.69.252.251","address":{"address":"1999 Seventh Street","city":"San Diego","state":"West Virginia","stateCode":"WV","postalCode":"13916","coordinates":{"lat":-59.303292,"lng":-87.318538},"country":"United States"},"macAddress":"f0:9a:ba:d9:48:d5","university":"Yale University","bank":{"cardExpire":"09/30","cardNumber":"3617114029166871","cardType":"Diners Club International","currency":"AUD","iban":"DE93605312121879910330"},"company":{"department":"Support","name":"Schmidt - Hyatt","title":"Sales Manager","address":{"address":"979 Tenth Street","city":"San Jose","state":"New York","stateCode":"NY","postalCode":"59824","coordinates":{"lat":-5.788002,"lng":88.846665},"country":"United States"}},"ein":"854-428","ssn":"902-510-406","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"}],"total":208,"skip":0,"limit":30}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Retrieves all shopping carts associated with a specific user by their user ID.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/users/4/carts`
## Authentication
- **Required**: No
- This is a public endpoint that doesn't require authentication
## Parameters
### Path Variables
- `userId` (required) - The unique identifier of the user whose carts to retrieve
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
{
"carts": [
{
"id": 1,
"products": [
{
"id": 1,
"title": "Product Name",
"price": 549,
"quantity": 2,
"total": 1098
}
],
"total": 1098,
"discountedTotal": 985,
"userId": 1,
"totalProducts": 1,
"totalQuantity": 2
}
],
"total": 3,
"skip": 0,
"limit": 30
}
```
## Tests Included
- Validates response status code is 200
- Verifies all carts belong to specified user
- Checks carts array structure
- Confirms cart totals and product details
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjcsImV4cCI6MTc2OTk2NDc2N30.GZCUVvd0dz0StrtG1qYL4I5ptF4oYmGzmo6UUvIzx7o |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 949cd9cf-2eb4-46fd-ac29-8e2064149325 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:52:58 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 95 |
| x-ratelimit-reset | 1769961187 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"29-eepc+18O6U8zRJowEIQsenFBqoU" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=otJSXdvFVHGPE3INIobCB%2BkqzxseSUGQAnoNOCmgFpQPttEJVAtqNN9RryQGsQl5cHjPA4ntY3p0jDKVDcX0afXJ58w9UlNz5hS%2Bs24%3D"}]} |
| Content-Encoding | br |
| CF-RAY | 9c729e731d852891-AMM |
{"carts":[],"total":0,"skip":0,"limit":0}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Retrieves all posts created by a specific user by their user ID.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/users/4/posts`
## Authentication
- **Required**: No
- This is a public endpoint that doesn't require authentication
## Parameters
### Path Variables
- `userId` (required) - The unique identifier of the user whose posts to retrieve
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
{
"posts": [
{
"id": 1,
"title": "Post Title",
"body": "Post content...",
"tags": ["tag1", "tag2"],
"reactions": {
"likes": 10,
"dislikes": 2
},
"views": 150,
"userId": 1
}
],
"total": 5,
"skip": 0,
"limit": 30
}
```
## Tests Included
- Validates response status code is 200
- Verifies all posts belong to specified user
- Checks posts array structure
- Confirms post fields (title, body, tags, reactions)
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjcsImV4cCI6MTc2OTk2NDc2N30.GZCUVvd0dz0StrtG1qYL4I5ptF4oYmGzmo6UUvIzx7o |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 2126d97c-b01d-4171-ae4a-a889fc4682df |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:52:58 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 94 |
| x-ratelimit-reset | 1769961187 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"29-xwojxKfZ82dFWetrHAY/LBMOM7Y" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=KVyw9%2FzSYF1Q1nmvGchQSkxvFz3xtYkY3z5AjL0OCHFaD%2BKSKZPAnaqZvRGLqLoCsrBeKHG0MTaEPWPzXcvp%2Bjq06fIW8rU4kADJO2w%3D"}]} |
| Content-Encoding | br |
| CF-RAY | 9c729e74cf5e2891-AMM |
{"posts":[],"total":0,"skip":0,"limit":0}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Creates a new user in the system with the provided user details.
## Method & Endpoint
- **Method**: `POST`
- **Endpoint**: `https://dummyjson.com/users/add`
## Authentication
- **Required**: No
- This is a public endpoint for demonstration purposes
## Parameters
### Request Body (JSON)
```json
{
"firstName": "John",
"lastName": "Doe",
"email": "john.doe@example.com",
"username": "johndoe",
"password": "password123",
"age": 30,
"gender": "male",
"phone": "+1-555-123-4567"
}
```
**Required Fields**:
- `firstName` - User's first name
- `lastName` - User's last name
- `email` - User's email address
- `username` - Unique username
- `password` - User's password
**Optional Fields**:
- `age`, `gender`, `phone`, `birthDate`, `address`, `company`
## Expected Response
- **Status Code**: `201 Created`
- **Response Structure**: Returns the created user with an assigned ID
```json
{
"id": 209,
"firstName": "John",
"lastName": "Doe",
"email": "john.doe@example.com",
"username": "johndoe",
...
}
```
## Tests Included
- Validates response status code is 201
- Verifies user ID is assigned
- Checks all submitted fields are returned
- Confirms user creation timestamp
| Header Name | Header Value |
|---|---|
| Content-Type | application/json |
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjcsImV4cCI6MTc2OTk2NDc2N30.GZCUVvd0dz0StrtG1qYL4I5ptF4oYmGzmo6UUvIzx7o |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 6cc7d628-bc08-4bce-8e95-14816910861a |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 70 |
{
"firstName": "Muhammad",
"lastName": "Ovi",
"age": 250
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:52:58 GMT |
| Content-Type | application/json; charset=utf-8 |
| Content-Length | 769 |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 96 |
| x-ratelimit-reset | 1769961183 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"301-gKnmafr9l9B8nywhCgSqj6WVp/E" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=eBTT8ZDWqFA8i%2FIezK3n2qiQBL6OaD8ILtbkEFO6bHjjdDviI8wMaYVYFhR1jHuyznC33%2Ba0399voW%2B3pMZ8XnDwPxtoA3U2iQuyYc0%3D"}]} |
| CF-RAY | 9c729e7658ea2891-AMM |
{"id":209,"firstName":"Muhammad","lastName":"Ovi","maidenName":"","age":250,"gender":"","email":"","phone":"","username":"","password":"","birthDate":"","image":"","bloodGroup":"","height":null,"weight":null,"eyeColor":"","hair":{"color":"","type":""},"ip":"","address":{"address":"","city":"","state":"","stateCode":"","postalCode":"","coordinates":{"lat":null,"lng":null},"country":""},"macAddress":"","university":"","bank":{"cardExpire":"","cardNumber":"","cardType":"","currency":"","iban":""},"company":{"department":"","name":"","title":"","address":{"address":"","city":"","state":"","stateCode":"","postalCode":"","coordinates":{"lat":null,"lng":null},"country":""}},"ein":"","ssn":"","userAgent":"","crypto":{"coin":"","wallet":"","network":""},"role":"user"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 201 | 1 | 0 | 0 |
| firstName and lastName are correct | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 3 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Updates an existing user's information by their unique identifier.
## Method & Endpoint
- **Method**: `PUT`
- **Endpoint**: `https://dummyjson.com/users/4`
## Authentication
- **Required**: No
- This is a public endpoint for demonstration purposes
## Parameters
### Path Variables
- `userId` (required) - The unique identifier of the user to update
### Request Body (JSON)
```json
{
"firstName": "Jane",
"lastName": "Smith",
"email": "jane.smith@example.com",
"age": 32,
"phone": "+1-555-987-6543"
}
```
**Note**: Only include fields you want to update. Unspecified fields remain unchanged.
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**: Returns the updated user with all fields
```json
{
"id": 1,
"firstName": "Jane",
"lastName": "Smith",
"email": "jane.smith@example.com",
"age": 32,
"phone": "+1-555-987-6543",
...
}
```
## Tests Included
- Validates response status code is 200
- Verifies updated fields match request
- Checks user ID remains unchanged
- Confirms other fields are preserved
| Header Name | Header Value |
|---|---|
| Content-Type | application/json |
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjcsImV4cCI6MTc2OTk2NDc2N30.GZCUVvd0dz0StrtG1qYL4I5ptF4oYmGzmo6UUvIzx7o |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | a88df1e2-5615-4ea8-aae2-dc238f09d5ba |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 29 |
{
"lastName": "Owais"
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:52:59 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 93 |
| x-ratelimit-reset | 1769961187 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"577-AaYYXx8pEPShiBPHOWYz6WVHMB4" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=M6dKD8qa%2BL%2FdHzGYxgcvkbqns9JH87jDgspHzl7bqhpVRF2NmyIDl8rulPLiIOVnYuwWKTr8zXC%2FdbKvFTB7blHYe%2FBYOEGQmc6BhW4%3D"}]} |
| CF-RAY | 9c729e781af42891-AMM |
{"id":4,"firstName":"James","lastName":"Owais","maidenName":"","age":46,"gender":"male","email":"james.davis@x.dummyjson.com","phone":"+49 614-958-9364","username":"jamesd","password":"jamesdpass","birthDate":"1979-5-4","image":"https://dummyjson.com/icon/jamesd/128","bloodGroup":"AB+","height":193.31,"weight":62.1,"eyeColor":"Amber","hair":{"color":"Blonde","type":"Straight"},"ip":"101.118.131.66","address":{"address":"238 Jefferson Street","city":"Seattle","state":"Pennsylvania","stateCode":"PA","postalCode":"68354","coordinates":{"lat":16.782513,"lng":-139.34723},"country":"United States"},"macAddress":"10:7d:df:1f:97:58","university":"University of Southern California","bank":{"cardExpire":"07/30","cardNumber":"5303440212268149","cardType":"Mastercard","currency":"CAD","iban":"DE01300746880579852937"},"company":{"department":"Support","name":"Pagac and Sons","title":"Research Analyst","address":{"address":"1622 Lincoln Street","city":"Fort Worth","state":"Pennsylvania","stateCode":"PA","postalCode":"27768","coordinates":{"lat":54.91193,"lng":-79.498328},"country":"United States"}},"ein":"904-810","ssn":"116-951-314","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"admin"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Deletes a specific user from the system by their unique identifier.
## Method & Endpoint
- **Method**: `DELETE`
- **Endpoint**: `https://dummyjson.com/users/4`
## Authentication
- **Required**: No
- This is a public endpoint for demonstration purposes
## Parameters
### Path Variables
- `userId` (required) - The unique identifier of the user to delete
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**: Returns the deleted user information with deletion confirmation
```json
{
"id": 1,
"firstName": "Emily",
"lastName": "Johnson",
"email": "emily.johnson@x.dummyjson.com",
"username": "emilys",
"isDeleted": true,
"deletedOn": "2024-01-01T12:00:00.000Z",
...
}
```
## Tests Included
- Validates response status code is 200
- Verifies `isDeleted` flag is true
- Checks deletion timestamp is present
- Confirms deleted user details are returned
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjcsImV4cCI6MTc2OTk2NDc2N30.GZCUVvd0dz0StrtG1qYL4I5ptF4oYmGzmo6UUvIzx7o |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 098bbebe-00ad-455b-a1e8-1ef2838eea22 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:52:59 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 99 |
| x-ratelimit-reset | 1769961189 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"5af-JEaSO9ha3OJM6mvve8gh9wMGjFE" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=9WoXBpgJ5JF7%2F1MNbjiiQglauw5SXU3B6yMfhrZYiQalgqULZk7%2B1suWHKJyEFxrC5kKNJ%2FYagDpTYKsljiBWTFlHC3OPHs1%2Fkb6dmY%3D"}]} |
| CF-RAY | 9c729e79cd2e2891-AMM |
{"id":4,"firstName":"James","lastName":"Davis","maidenName":"","age":46,"gender":"male","email":"james.davis@x.dummyjson.com","phone":"+49 614-958-9364","username":"jamesd","password":"jamesdpass","birthDate":"1979-5-4","image":"https://dummyjson.com/icon/jamesd/128","bloodGroup":"AB+","height":193.31,"weight":62.1,"eyeColor":"Amber","hair":{"color":"Blonde","type":"Straight"},"ip":"101.118.131.66","address":{"address":"238 Jefferson Street","city":"Seattle","state":"Pennsylvania","stateCode":"PA","postalCode":"68354","coordinates":{"lat":16.782513,"lng":-139.34723},"country":"United States"},"macAddress":"10:7d:df:1f:97:58","university":"University of Southern California","bank":{"cardExpire":"07/30","cardNumber":"5303440212268149","cardType":"Mastercard","currency":"CAD","iban":"DE01300746880579852937"},"company":{"department":"Support","name":"Pagac and Sons","title":"Research Analyst","address":{"address":"1622 Lincoln Street","city":"Fort Worth","state":"Pennsylvania","stateCode":"PA","postalCode":"27768","coordinates":{"lat":54.91193,"lng":-79.498328},"country":"United States"}},"ein":"904-810","ssn":"116-951-314","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"admin","isDeleted":true,"deletedOn":"2026-02-01T15:52:59.245Z"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
# Login User and Get Tokens
## Overview
This endpoint authenticates users with the DummyJSON API and returns access tokens for subsequent authenticated requests. Upon successful authentication, the user receives both an access token and refresh token, along with their profile information.
---
## Request Details
### Endpoint
- **URL**: `https://dummyjson.com/auth/login`
- **Method**: `POST`
- **Content-Type**: `application/json`
### Required Body Parameters
| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `username` | string | Yes | The user's username for authentication |
| `password` | string | Yes | The user's password for authentication |
### Example Request Body
```json
{
"username": "emilys",
"password": "emilyspass"
}
```
---
## Response Structure
### Success Response (200 OK)
The API returns a JSON object containing authentication tokens and user profile information:
| Field | Type | Description |
|-------|------|-------------|
| `accessToken` | string | JWT token used for authenticating subsequent API requests |
| `refreshToken` | string | Token used to refresh the access token when it expires |
| `id` | number | Unique identifier for the authenticated user |
| `username` | string | The user's username |
| `email` | string | The user's email address |
| `firstName` | string | The user's first name |
| `lastName` | string | The user's last name |
| `gender` | string | The user's gender |
| `image` | string | URL to the user's profile image |
### Example Response
```json
{
"accessToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
"refreshToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
"id": 1,
"username": "emilys",
"email": "emily.johnson@x.dummyjson.com",
"firstName": "Emily",
"lastName": "Johnson",
"gender": "female",
"image": "https://dummyjson.com/icon/emilys/128"
}
```
---
## Authentication Flow
1. **Send Login Request**: Submit username and password to the `/auth/login` endpoint
2. **Receive Tokens**: Upon successful authentication, receive `accessToken` and `refreshToken`
3. **Automatic Storage**: The `accessToken` is automatically extracted from the response and stored in the `eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjcsImV4cCI6MTc2OTk2NDc2N30.GZCUVvd0dz0StrtG1qYL4I5ptF4oYmGzmo6UUvIzx7o` environment variable via the post-response script
4. **Use Token**: The stored token is then available for use in subsequent authenticated requests via the `eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjcsImV4cCI6MTc2OTk2NDc2N30.GZCUVvd0dz0StrtG1qYL4I5ptF4oYmGzmo6UUvIzx7o` variable
5. **Token Usage**: Include the access token in the `Authorization` header as `Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjcsImV4cCI6MTc2OTk2NDc2N30.GZCUVvd0dz0StrtG1qYL4I5ptF4oYmGzmo6UUvIzx7o` for protected endpoints
---
## Automated Tests
This request includes comprehensive automated tests that validate the response:
### Test Suite
1. **Status Code Validation**
- Verifies the response status code is `200 OK`
- Ensures successful authentication
2. **Access Token Validation**
- Checks that the `accessToken` field exists in the response
- Confirms the token is returned for authentication
3. **Required Fields Validation**
- Validates presence of essential fields: `id`, `username`, `accessToken`
- Ensures complete user data is returned
4. **Response Time Check**
- Verifies the API responds within 2000ms (2 seconds)
- Monitors performance and ensures acceptable response times
All tests run automatically after the request is sent, providing immediate feedback on the authentication process.
---
## Integration with Authentication Workflow
This endpoint is the **entry point** for the authentication workflow in this collection:
1. **First Step**: This is typically the first request to execute when working with authenticated endpoints
2. **Token Generation**: Generates the access token required for protected resources
3. **Environment Setup**: Automatically configures the environment with the necessary authentication credentials
4. **Subsequent Requests**: Other requests in the collection (like "Get Current auth User", "Refresh auth Session") depend on the token generated here
5. **Session Management**: The refresh token can be used with the "Refresh auth Session" endpoint to obtain a new access token without re-authenticating
---
## Notes
- **Test Credentials**: The example uses test credentials (`emilys` / `emilyspass`) from the DummyJSON demo API
- **Token Expiration**: Access tokens may expire after a certain period; use the refresh token to obtain a new one
- **Security**: In production environments, always use HTTPS and never hardcode credentials
- **Environment Variables**: Ensure the `https://dummyjson.com` variable is set to `https://dummyjson.com` in your active environment
| Header Name | Header Value |
|---|---|
| Content-Type | application/json |
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNjcsImV4cCI6MTc2OTk2NDc2N30.GZCUVvd0dz0StrtG1qYL4I5ptF4oYmGzmo6UUvIzx7o |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 19fd4dda-8af0-4b62-90ff-d6c20ee0b849 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 69 |
{
"username": "emilys",
"password": "emilyspass"
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:52:59 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 95 |
| x-ratelimit-reset | 1769961183 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| Set-Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNzksImV4cCI6MTc2OTk2NDc3OX0.au6-HNuanDOW1Q3iDl4MYxifr14HAULtIcahDIP9Pos; Max-Age=3600; Path=/; Expires=Sun, 01 Feb 2026 16:52:59 GMT; HttpOnly; Secure |
| Set-Cookie | refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNzksImV4cCI6MTc3MjU1MzE3OX0.lXrUo8H9EVY8ACmmXxT4vVL3zKyZDcUizHaLOzaAYlk; Max-Age=3600; Path=/; Expires=Sun, 01 Feb 2026 16:52:59 GMT; HttpOnly; Secure |
| etag | W/"3a2-jPZaVazHa/JrOzyuhAMlHMQHCkM" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=kmAomBx77PLtriBCdFEi9sjNb6WnzL1XErrg6%2B%2FfyiTIOIycHegMzfngVW3gQg4E12NAbqq77pBCy1eEkXcHaprnaJdmaf3Y8IL9SFQ%3D"}]} |
| Content-Encoding | br |
| CF-RAY | 9c729e7b7f452891-AMM |
{"accessToken":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNzksImV4cCI6MTc2OTk2NDc3OX0.au6-HNuanDOW1Q3iDl4MYxifr14HAULtIcahDIP9Pos","refreshToken":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNzksImV4cCI6MTc3MjU1MzE3OX0.lXrUo8H9EVY8ACmmXxT4vVL3zKyZDcUizHaLOzaAYlk","id":1,"username":"emilys","email":"emily.johnson@x.dummyjson.com","firstName":"Emily","lastName":"Johnson","gender":"female","image":"https://dummyjson.com/icon/emilys/128"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Access token exists | 1 | 0 | 0 |
| Required fields exist | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 4 | 0 | 0 |
| Test Name | Assertion Error |
|---|
# Get Authenticated User
## Description
This endpoint retrieves the complete profile information of the currently authenticated user. It returns detailed user data including personal information, contact details, address, company information, and account metadata.
## Authentication
**Required**: Bearer Token
This endpoint requires authentication via a Bearer token in the Authorization header. The token must be obtained first by logging in through the `/auth/login` endpoint.
```
Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNzksImV4cCI6MTc2OTk2NDc3OX0.au6-HNuanDOW1Q3iDl4MYxifr14HAULtIcahDIP9Pos
```
## Request
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/auth/me`
- **Headers**:
- `Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNzksImV4cCI6MTc2OTk2NDc3OX0.au6-HNuanDOW1Q3iDl4MYxifr14HAULtIcahDIP9Pos`
## Response
### Success Response (200 OK)
Returns a JSON object containing the authenticated user's complete profile:
```json
{
"id": 1,
"firstName": "Emily",
"lastName": "Johnson",
"maidenName": "Smith",
"age": 29,
"gender": "female",
"email": "emily.johnson@x.dummyjson.com",
"phone": "+81 965-431-3024",
"username": "emilys",
"birthDate": "1996-5-30",
"image": "https://dummyjson.com/icon/emilys/128",
"bloodGroup": "O-",
"height": 193.24,
"weight": 63.16,
"eyeColor": "Green",
"hair": {
"color": "Brown",
"type": "Curly"
},
"address": {
"address": "626 Main Street",
"city": "Phoenix",
"state": "Mississippi",
"stateCode": "MS",
"postalCode": "29112",
"coordinates": {
"lat": -77.16213,
"lng": -92.084824
},
"country": "United States"
},
"company": {
"department": "Engineering",
"name": "Dooley, Kozey and Cronin",
"title": "Sales Manager",
"address": { ... }
},
"bank": {
"cardExpire": "05/28",
"cardNumber": "3693233511855044",
"cardType": "Diners Club International",
"currency": "GBP",
"iban": "GB74MH2UZLR9TRPHYNU8F8"
},
"role": "admin"
}
```
### Response Fields
| Field | Type | Description |
|-------|------|-------------|
| `id` | integer | Unique user identifier |
| `username` | string | User's login username |
| `firstName` | string | User's first name |
| `lastName` | string | User's last name |
| `email` | string | User's email address |
| `phone` | string | User's phone number |
| `age` | integer | User's age |
| `gender` | string | User's gender |
| `birthDate` | string | User's date of birth |
| `image` | string | URL to user's profile image |
| `address` | object | User's address information including coordinates |
| `company` | object | User's company and employment details |
| `bank` | object | User's banking information |
| `role` | string | User's role/permission level |
## Use Cases
1. **Profile Display**: Fetch user data to display on a profile page or dashboard
2. **Session Validation**: Verify that the current authentication token is valid and retrieve associated user
3. **Personalization**: Get user preferences and information to customize the application experience
4. **Authorization Checks**: Retrieve user role and permissions for access control
5. **User Context**: Obtain user details for logging, analytics, or audit trails
## Example Usage
### JavaScript (Fetch API)
```javascript
const response = await fetch('https://dummyjson.com/auth/me', {
method: 'GET',
headers: {
'Authorization': `Bearer ${accessToken}`,
'Content-Type': 'application/json'
}
});
const userData = await response.json();
console.log(`Welcome, ${userData.firstName}!`);
```
### cURL
```bash
curl -X GET 'https://dummyjson.com/auth/me' \
-H 'Authorization: Bearer YOUR_ACCESS_TOKEN'
```
## Notes
- **Token Expiration**: If the Bearer token has expired, this endpoint will return an authentication error. Use the `/auth/refresh` endpoint to obtain a new token.
- **Sensitive Data**: The response includes sensitive information like banking details. Ensure proper security measures when handling this data.
- **Response Time**: Expected response time is under 2 seconds (validated by automated tests).
- **Required Fields**: The response always includes `id` and `username` fields (validated by automated tests).
- **No Parameters**: This endpoint does not accept any query parameters or request body.
## Error Responses
### 401 Unauthorized
Returned when the Bearer token is missing, invalid, or expired.
```json
{
"message": "Authentication required"
}
```
### 403 Forbidden
Returned when the token is valid but lacks necessary permissions.
## Related Endpoints
- `POST /auth/login` - Obtain access token
- `POST /auth/refresh` - Refresh expired token
- `PUT /users/{userId}` - Update user information
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNzksImV4cCI6MTc2OTk2NDc3OX0.au6-HNuanDOW1Q3iDl4MYxifr14HAULtIcahDIP9Pos |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | c30a3ca1-75be-451f-8711-0b181fd7ba64 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNzksImV4cCI6MTc2OTk2NDc3OX0.au6-HNuanDOW1Q3iDl4MYxifr14HAULtIcahDIP9Pos; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNzksImV4cCI6MTc3MjU1MzE3OX0.lXrUo8H9EVY8ACmmXxT4vVL3zKyZDcUizHaLOzaAYlk |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:52:59 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 98 |
| x-ratelimit-reset | 1769961189 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"58f-CoL/KoXlW3x1PtqQr3wqPsXj6DE" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=u2HTqKB84dv7%2FVV84d94wAhUI1iGmwyNam%2BN4VfnH08QqrhxDcd6yOg%2Fgu6l6cU4qYKfLsFig7vm9LsY8WWHrVgC%2Bi7ks%2BKRH%2BJXgi4%3D"}]} |
| CF-RAY | 9c729e7d08d92891-AMM |
{"id":1,"firstName":"Emily","lastName":"Johnson","maidenName":"Smith","age":29,"gender":"female","email":"emily.johnson@x.dummyjson.com","phone":"+81 965-431-3024","username":"emilys","password":"emilyspass","birthDate":"1996-5-30","image":"https://dummyjson.com/icon/emilys/128","bloodGroup":"O-","height":193.24,"weight":63.16,"eyeColor":"Green","hair":{"color":"Brown","type":"Curly"},"ip":"42.48.100.32","address":{"address":"626 Main Street","city":"Phoenix","state":"Mississippi","stateCode":"MS","postalCode":"29112","coordinates":{"lat":-77.16213,"lng":-92.084824},"country":"United States"},"macAddress":"47:fa:41:18:ec:eb","university":"University of Wisconsin--Madison","bank":{"cardExpire":"05/28","cardNumber":"3693233511855044","cardType":"Diners Club International","currency":"GBP","iban":"GB74MH2UZLR9TRPHYNU8F8"},"company":{"department":"Engineering","name":"Dooley, Kozey and Cronin","title":"Sales Manager","address":{"address":"263 Tenth Street","city":"San Francisco","state":"Wisconsin","stateCode":"WI","postalCode":"37657","coordinates":{"lat":71.814525,"lng":-161.150263},"country":"United States"}},"ein":"977-175","ssn":"900-590-289","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"admin"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| User content is correct | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 3 | 0 | 0 |
| Test Name | Assertion Error |
|---|
# Refresh Authentication Session
## Overview
This endpoint refreshes an existing authentication session by generating a new access token and refresh token pair. Use this endpoint when your current access token is about to expire or has expired, allowing you to maintain an authenticated session without requiring the user to log in again.
---
## Endpoint Details
**Method:** `POST`
**Path:** `https://dummyjson.com/auth/refresh`
---
## Request Body
The request requires a JSON payload with the following parameters:
| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `refreshToken` | string | Yes | The current valid refresh token (or access token) used to generate new tokens |
| `expiresInMins` | integer | Yes | The desired expiration time for the new access token in minutes (e.g., 30) |
### Example Request Body
```json
{
"refreshToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNzksImV4cCI6MTc2OTk2NDc3OX0.au6-HNuanDOW1Q3iDl4MYxifr14HAULtIcahDIP9Pos",
"expiresInMins": 30
}
```
---
## Response Format
### Success Response (200 OK)
Returns a JSON object containing new authentication tokens:
```json
{
"accessToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
"refreshToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."
}
```
| Field | Type | Description |
|-------|------|-------------|
| `accessToken` | string | New JWT access token for authenticated requests |
| `refreshToken` | string | New refresh token for future token refresh operations |
---
## Authentication Requirements
- Requires a valid refresh token (or access token) in the request body
- No additional authentication headers required for this endpoint
- The provided token must not be expired or invalid
---
## Use Cases
### When to Use This Endpoint
1. **Token Expiration Prevention**: Proactively refresh tokens before they expire to maintain uninterrupted access
2. **Expired Token Recovery**: Obtain new tokens when your access token has expired
3. **Session Extension**: Extend user sessions without requiring re-authentication
4. **Security Best Practices**: Regularly rotate tokens to minimize security risks
### Typical Workflow
```
1. User logs in → Receives accessToken and refreshToken
2. User makes authenticated requests using accessToken
3. Before accessToken expires → Call /auth/refresh
4. Receive new accessToken and refreshToken
5. Update stored tokens and continue making requests
```
---
## Important Notes
### Token Expiration
- Access tokens have a limited lifespan defined by `expiresInMins`
- The default expiration is typically 30 minutes
- Refresh tokens generally have a longer lifespan than access tokens
- Always store the new tokens returned from this endpoint
### Best Practices
- **Automatic Refresh**: Implement automatic token refresh logic in your application
- **Token Storage**: Securely store both access and refresh tokens (use environment variables in Postman)
- **Error Handling**: If refresh fails, redirect users to login again
- **Token Rotation**: Update both tokens after each refresh for enhanced security
### Error Scenarios
If the refresh token is invalid or expired, you will receive an error response and must authenticate again using the `/auth/login` endpoint.
---
## Related Endpoints
- **Login**: `POST https://dummyjson.com/auth/login` - Initial authentication to obtain tokens
- **Get Current User**: `GET https://dummyjson.com/auth/me` - Verify token validity and get user info
| Header Name | Header Value |
|---|---|
| Content-Type | application/json |
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNzksImV4cCI6MTc2OTk2NDc3OX0.au6-HNuanDOW1Q3iDl4MYxifr14HAULtIcahDIP9Pos |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 8dee1f02-0802-4b35-b9e5-e49e6e2136a4 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 414 |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNzksImV4cCI6MTc2OTk2NDc3OX0.au6-HNuanDOW1Q3iDl4MYxifr14HAULtIcahDIP9Pos; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNzksImV4cCI6MTc3MjU1MzE3OX0.lXrUo8H9EVY8ACmmXxT4vVL3zKyZDcUizHaLOzaAYlk |
{
"refreshToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNzksImV4cCI6MTc2OTk2NDc3OX0.au6-HNuanDOW1Q3iDl4MYxifr14HAULtIcahDIP9Pos",
"expiresInMins": 30
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:00 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 94 |
| x-ratelimit-reset | 1769961183 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| Set-Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExODAsImV4cCI6MTc2OTk2Mjk4MH0.a421am7-9c4bgdogT92hR4YICGdQAmH3mBrPbwPtKz8; Max-Age=1800; Path=/; Expires=Sun, 01 Feb 2026 16:23:00 GMT; HttpOnly; Secure |
| Set-Cookie | refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExODAsImV4cCI6MTc3MjU1MzE4MH0.YSCAHcUv1I0PH72s6qGZ-QdElXc_Xd9a8mvH1Vr61Zs; Max-Age=1800; Path=/; Expires=Sun, 01 Feb 2026 16:23:00 GMT; HttpOnly; Secure |
| etag | W/"2f4-l983pyC3Iorxl3TXlmeSpgkn5es" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=7Z26%2F622X%2BI%2FEJAJPcb9OWC%2BEHRn7OL9Y%2B9nc6saf4OBhzzeq8peiyqx4QHf1RpNWtkwLpMaw7bH1je8FdwnX05Hol9gh%2FzYuJnKGoQ%3D"}]} |
| Content-Encoding | br |
| CF-RAY | 9c729e7ecae02891-AMM |
{"accessToken":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExODAsImV4cCI6MTc2OTk2Mjk4MH0.a421am7-9c4bgdogT92hR4YICGdQAmH3mBrPbwPtKz8","refreshToken":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExODAsImV4cCI6MTc3MjU1MzE4MH0.YSCAHcUv1I0PH72s6qGZ-QdElXc_Xd9a8mvH1Vr61Zs"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Access token is present | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 3 | 0 | 0 |
| Test Name | Assertion Error |
|---|
# Negative Test: Refresh Authentication Session with Invalid Token
## Overview
This is a **negative test case** designed to validate the API's error handling when attempting to refresh an authentication session using an invalid or expired refresh token.
## Purpose
Tests the authentication refresh endpoint's ability to properly reject and handle invalid refresh token requests, ensuring the API maintains security standards by not allowing unauthorized session refreshes.
## Expected Behavior
- **Status Code**: `401 Unauthorized` or `403 Forbidden`
- **Response Body**: Should contain an error message indicating the token is invalid
- **Security**: The API must reject the request and not generate a new access token
## Request Details
### Endpoint
`POST https://dummyjson.com/auth/refresh`
### Request Body Parameters
| Parameter | Type | Value | Description |
|-----------|------|-------|-------------|
| `refreshToken` | string | `"expired_invalid_token_xyz"` | An intentionally invalid/expired refresh token |
| `expiresInMins` | integer | `30` | Requested token expiration time in minutes |
### Test Scenario
This request deliberately sends an invalid refresh token (`expired_invalid_token_xyz`) to verify the API properly rejects unauthorized refresh attempts.
## Test Validations
The following automated tests are executed on the response:
1. **Status Code Validation**: Verifies the response status code is either `401` or `403`
2. **Error Message Validation**: Confirms the response contains an error message field that is a string
## Use Case & Importance
### Security Validation
This negative test is critical for API security because it:
- **Prevents Token Forgery**: Ensures attackers cannot use fabricated tokens to gain unauthorized access
- **Validates Token Expiration**: Confirms expired tokens are properly rejected
- **Error Handling**: Verifies appropriate error messages are returned to clients
- **Session Security**: Protects against session hijacking attempts
### Real-World Scenarios
This test simulates situations where:
- A user's refresh token has expired
- An attacker attempts to use a stolen or guessed token
- A client application has cached an old/invalid token
- Network issues caused token corruption
By validating proper rejection of invalid tokens, this test ensures the authentication system maintains its security integrity and provides clear feedback for troubleshooting legitimate authentication issues.
| Header Name | Header Value |
|---|---|
| Content-Type | application/json |
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNzksImV4cCI6MTc2OTk2NDc3OX0.au6-HNuanDOW1Q3iDl4MYxifr14HAULtIcahDIP9Pos |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 52296a60-5cd6-480b-b76b-47bd654c7f2f |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 81 |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExODAsImV4cCI6MTc2OTk2Mjk4MH0.a421am7-9c4bgdogT92hR4YICGdQAmH3mBrPbwPtKz8; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExODAsImV4cCI6MTc3MjU1MzE4MH0.YSCAHcUv1I0PH72s6qGZ-QdElXc_Xd9a8mvH1Vr61Zs |
{
"refreshToken": "expired_invalid_token_xyz",
"expiresInMins": 30
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:00 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 99 |
| x-ratelimit-reset | 1769961190 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"23-pPrdIf6OEYUEvqJKlUDSyBAT260" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=sbwEVwsusfyeVjEZ%2F0PVfxbTBDUoXtYBXBIv3saNYL5OnLXJQYBQzjDX7YPLr20Kmr94DlxF42qoJRjV5ow4G5l%2B3ebXHpXNis4qdas%3D"}]} |
| Content-Encoding | br |
| CF-RAY | 9c729e808cf62891-AMM |
{"message":"Invalid refresh token"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 401 or 403 | 1 | 0 | 0 |
| Response has error message | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
# Get All Products
## Overview
This endpoint retrieves a complete list of all products available in the e-commerce catalog. It returns comprehensive product information including pricing, inventory, specifications, and customer reviews.
## Request Details
**Method:** `GET`
**URL:** `https://dummyjson.com/products`
**Authentication:** Not required
**Query Parameters:** None (base endpoint)
### Optional Query Parameters
While the base endpoint returns all products, you can use the following query parameters to customize the response:
- `limit` - Limit the number of products returned (e.g., `?limit=10`)
- `skip` - Skip a number of products for pagination (e.g., `?skip=10`)
- `select` - Select specific fields to return (e.g., `?select=title,price`)
- `sortBy` - Sort products by a specific field (e.g., `?sortBy=price`)
- `order` - Sort order: `asc` or `desc` (e.g., `?order=asc`)
## Response Structure
The endpoint returns a JSON object with the following structure:
```json
{
"products": [
{
"id": 1,
"title": "Product Name",
"description": "Product description",
"category": "Category name",
"price": 99.99,
"discountPercentage": 10.5,
"rating": 4.5,
"stock": 100,
"tags": ["tag1", "tag2"],
"brand": "Brand Name",
"sku": "SKU-CODE",
"weight": 5,
"dimensions": {
"width": 10.5,
"height": 15.2,
"depth": 8.3
},
"warrantyInformation": "1 year warranty",
"shippingInformation": "Ships in 1-2 business days",
"availabilityStatus": "In Stock",
"reviews": [
{
"rating": 5,
"comment": "Great product!",
"date": "2025-04-30T09:41:02.053Z",
"reviewerName": "John Doe",
"reviewerEmail": "john.doe@example.com"
}
],
"returnPolicy": "30 days return policy",
"minimumOrderQuantity": 1,
"meta": {
"createdAt": "2025-04-30T09:41:02.053Z",
"updatedAt": "2025-04-30T09:41:02.053Z",
"barcode": "1234567890123",
"qrCode": "https://example.com/qr-code.png"
},
"images": ["https://example.com/image1.jpg"],
"thumbnail": "https://example.com/thumbnail.jpg"
}
],
"total": 100,
"skip": 0,
"limit": 30
}
```
### Response Fields
- **products** (array): Array of product objects
- **total** (number): Total number of products available
- **skip** (number): Number of products skipped (for pagination)
- **limit** (number): Maximum number of products returned
### Product Object Fields
- **id**: Unique product identifier
- **title**: Product name
- **description**: Detailed product description
- **category**: Product category
- **price**: Product price in USD
- **discountPercentage**: Current discount percentage
- **rating**: Average customer rating (0-5)
- **stock**: Available inventory quantity
- **tags**: Array of product tags for categorization
- **brand**: Product brand name
- **sku**: Stock Keeping Unit identifier
- **weight**: Product weight
- **dimensions**: Physical dimensions (width, height, depth)
- **warrantyInformation**: Warranty details
- **shippingInformation**: Shipping time and details
- **availabilityStatus**: Current availability status
- **reviews**: Array of customer reviews with ratings and comments
- **returnPolicy**: Return policy information
- **minimumOrderQuantity**: Minimum quantity required for purchase
- **meta**: Metadata including creation date, barcode, and QR code
- **images**: Array of product image URLs
- **thumbnail**: Main product thumbnail URL
## Example Use Cases
### 1. Display Product Catalog
Retrieve all products to display in a product listing page or catalog view.
### 2. Inventory Management
Fetch complete product list to check stock levels and availability across all items.
### 3. Data Analysis
Pull all product data for analytics, reporting, or business intelligence purposes.
### 4. Search Index Building
Retrieve all products to build or update a search index for the e-commerce platform.
### 5. Product Comparison
Get complete product information to enable comparison features across multiple products.
## Response Validation
This endpoint includes automated tests that verify:
- ✅ Status code is 200 (OK)
- ✅ Response contains a `products` property
- ✅ `products` is an array
- ✅ Response time is under 2000ms
## Notes
- **Performance**: This endpoint returns all products by default. For large catalogs, consider using pagination parameters (`limit` and `skip`) to improve performance.
- **No Authentication Required**: This is a public endpoint that doesn't require authentication.
- **Rate Limiting**: Be mindful of API rate limits when making frequent requests.
- **Caching**: Consider implementing client-side caching for product data to reduce API calls.
- **Related Endpoints**:
- Use `/products/{id}` to get a single product by ID
- Use `/products/search?q={query}` to search for specific products
- Use `/products/category/{category}` to filter by category
- Use `/products/categories` to get all available categories
## Status Codes
- **200 OK**: Successfully retrieved products
- **500 Internal Server Error**: Server error occurred
## Example Request
```bash
GET https://dummyjson.com/products
```
## Example Response (Truncated)
```json
{
"products": [
{
"id": 1,
"title": "Essence Mascara Lash Princess",
"category": "beauty",
"price": 9.99,
"rating": 2.56,
"stock": 99
},
{
"id": 2,
"title": "Eyeshadow Palette with Mirror",
"category": "beauty",
"price": 19.99,
"rating": 2.86,
"stock": 34
}
],
"total": 194,
"skip": 0,
"limit": 30
}
```
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNzksImV4cCI6MTc2OTk2NDc3OX0.au6-HNuanDOW1Q3iDl4MYxifr14HAULtIcahDIP9Pos |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 7eb1e9aa-1da1-47c2-ac7c-5de414f7b0e7 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExODAsImV4cCI6MTc2OTk2Mjk4MH0.a421am7-9c4bgdogT92hR4YICGdQAmH3mBrPbwPtKz8; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExODAsImV4cCI6MTc3MjU1MzE4MH0.YSCAHcUv1I0PH72s6qGZ-QdElXc_Xd9a8mvH1Vr61Zs |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:00 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 99 |
| x-ratelimit-reset | 1769448742 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"ac3a-uk0FDUI0X0lS5liyUbIxqA7L7F4" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| Age | 512448 |
| Cache-Control | no-store |
| cf-cache-status | HIT |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=uZ7aFxpBYiRASanR2XkjqO0GbJ26%2Bgdi0t4JVg5sGC66bgSW%2Bz3jCrbB8WqcHy71jlzauW8fjlqFVlh7WSSuZHwbnELVbnXMnoZ6XJ4%3D"}]} |
| CF-RAY | 9c729e821ed22891-AMM |
{"products":[{"id":1,"title":"Essence Mascara Lash Princess","description":"The Essence Mascara Lash Princess is a popular mascara known for its volumizing and lengthening effects. Achieve dramatic lashes with this long-lasting and cruelty-free formula.","category":"beauty","price":9.99,"discountPercentage":10.48,"rating":2.56,"stock":99,"tags":["beauty","mascara"],"brand":"Essence","sku":"BEA-ESS-ESS-001","weight":4,"dimensions":{"width":15.14,"height":13.08,"depth":22.99},"warrantyInformation":"1 week warranty","shippingInformation":"Ships in 3-5 business days","availabilityStatus":"In Stock","reviews":[{"rating":3,"comment":"Would not recommend!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Eleanor Collins","reviewerEmail":"eleanor.collins@x.dummyjson.com"},{"rating":4,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Lucas Gordon","reviewerEmail":"lucas.gordon@x.dummyjson.com"},{"rating":5,"comment":"Highly impressed!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Eleanor Collins","reviewerEmail":"eleanor.collins@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":48,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"5784719087687","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/beauty/essence-mascara-lash-princess/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/beauty/essence-mascara-lash-princess/thumbnail.webp"},{"id":2,"title":"Eyeshadow Palette with Mirror","description":"The Eyeshadow Palette with Mirror offers a versatile range of eyeshadow shades for creating stunning eye looks. With a built-in mirror, it's convenient for on-the-go makeup application.","category":"beauty","price":19.99,"discountPercentage":18.19,"rating":2.86,"stock":34,"tags":["beauty","eyeshadow"],"brand":"Glamour Beauty","sku":"BEA-GLA-EYE-002","weight":9,"dimensions":{"width":9.26,"height":22.47,"depth":27.67},"warrantyInformation":"1 year warranty","shippingInformation":"Ships in 2 weeks","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Great product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Savannah Gomez","reviewerEmail":"savannah.gomez@x.dummyjson.com"},{"rating":4,"comment":"Awesome product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Christian Perez","reviewerEmail":"christian.perez@x.dummyjson.com"},{"rating":1,"comment":"Poor quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Nicholas Bailey","reviewerEmail":"nicholas.bailey@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":20,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"9170275171413","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/beauty/eyeshadow-palette-with-mirror/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/beauty/eyeshadow-palette-with-mirror/thumbnail.webp"},{"id":3,"title":"Powder Canister","description":"The Powder Canister is a finely milled setting powder designed to set makeup and control shine. With a lightweight and translucent formula, it provides a smooth and matte finish.","category":"beauty","price":14.99,"discountPercentage":9.84,"rating":4.64,"stock":89,"tags":["beauty","face powder"],"brand":"Velvet Touch","sku":"BEA-VEL-POW-003","weight":8,"dimensions":{"width":29.27,"height":27.93,"depth":20.59},"warrantyInformation":"3 months warranty","shippingInformation":"Ships in 1-2 business days","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Would buy again!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Alexander Jones","reviewerEmail":"alexander.jones@x.dummyjson.com"},{"rating":5,"comment":"Highly impressed!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Elijah Cruz","reviewerEmail":"elijah.cruz@x.dummyjson.com"},{"rating":1,"comment":"Very dissatisfied!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Avery Perez","reviewerEmail":"avery.perez@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":22,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"8418883906837","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/beauty/powder-canister/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/beauty/powder-canister/thumbnail.webp"},{"id":4,"title":"Red Lipstick","description":"The Red Lipstick is a classic and bold choice for adding a pop of color to your lips. With a creamy and pigmented formula, it provides a vibrant and long-lasting finish.","category":"beauty","price":12.99,"discountPercentage":12.16,"rating":4.36,"stock":91,"tags":["beauty","lipstick"],"brand":"Chic Cosmetics","sku":"BEA-CHI-LIP-004","weight":1,"dimensions":{"width":18.11,"height":28.38,"depth":22.17},"warrantyInformation":"3 year warranty","shippingInformation":"Ships in 1 week","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Great product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Liam Garcia","reviewerEmail":"liam.garcia@x.dummyjson.com"},{"rating":5,"comment":"Great product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Ruby Andrews","reviewerEmail":"ruby.andrews@x.dummyjson.com"},{"rating":5,"comment":"Would buy again!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Clara Berry","reviewerEmail":"clara.berry@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":40,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"9467746727219","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/beauty/red-lipstick/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/beauty/red-lipstick/thumbnail.webp"},{"id":5,"title":"Red Nail Polish","description":"The Red Nail Polish offers a rich and glossy red hue for vibrant and polished nails. With a quick-drying formula, it provides a salon-quality finish at home.","category":"beauty","price":8.99,"discountPercentage":11.44,"rating":4.32,"stock":79,"tags":["beauty","nail polish"],"brand":"Nail Couture","sku":"BEA-NAI-NAI-005","weight":8,"dimensions":{"width":21.63,"height":16.48,"depth":29.84},"warrantyInformation":"1 month warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":2,"comment":"Poor quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Benjamin Wilson","reviewerEmail":"benjamin.wilson@x.dummyjson.com"},{"rating":5,"comment":"Great product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Liam Smith","reviewerEmail":"liam.smith@x.dummyjson.com"},{"rating":1,"comment":"Very unhappy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Clara Berry","reviewerEmail":"clara.berry@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":22,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"4063010628104","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/beauty/red-nail-polish/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/beauty/red-nail-polish/thumbnail.webp"},{"id":6,"title":"Calvin Klein CK One","description":"CK One by Calvin Klein is a classic unisex fragrance, known for its fresh and clean scent. It's a versatile fragrance suitable for everyday wear.","category":"fragrances","price":49.99,"discountPercentage":1.89,"rating":4.37,"stock":29,"tags":["fragrances","perfumes"],"brand":"Calvin Klein","sku":"FRA-CAL-CAL-006","weight":7,"dimensions":{"width":29.36,"height":27.76,"depth":20.72},"warrantyInformation":"1 week warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":2,"comment":"Very disappointed!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Layla Young","reviewerEmail":"layla.young@x.dummyjson.com"},{"rating":4,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Daniel Cook","reviewerEmail":"daniel.cook@x.dummyjson.com"},{"rating":3,"comment":"Not as described!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Jacob Cooper","reviewerEmail":"jacob.cooper@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":9,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"2451534060749","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/fragrances/calvin-klein-ck-one/1.webp","https://cdn.dummyjson.com/product-images/fragrances/calvin-klein-ck-one/2.webp","https://cdn.dummyjson.com/product-images/fragrances/calvin-klein-ck-one/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/fragrances/calvin-klein-ck-one/thumbnail.webp"},{"id":7,"title":"Chanel Coco Noir Eau De","description":"Coco Noir by Chanel is an elegant and mysterious fragrance, featuring notes of grapefruit, rose, and sandalwood. Perfect for evening occasions.","category":"fragrances","price":129.99,"discountPercentage":16.51,"rating":4.26,"stock":58,"tags":["fragrances","perfumes"],"brand":"Chanel","sku":"FRA-CHA-CHA-007","weight":7,"dimensions":{"width":24.5,"height":25.7,"depth":25.98},"warrantyInformation":"3 year warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Highly impressed!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Ruby Andrews","reviewerEmail":"ruby.andrews@x.dummyjson.com"},{"rating":5,"comment":"Awesome product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Leah Henderson","reviewerEmail":"leah.henderson@x.dummyjson.com"},{"rating":5,"comment":"Very happy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Xavier Wright","reviewerEmail":"xavier.wright@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"4091737746820","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/fragrances/chanel-coco-noir-eau-de/1.webp","https://cdn.dummyjson.com/product-images/fragrances/chanel-coco-noir-eau-de/2.webp","https://cdn.dummyjson.com/product-images/fragrances/chanel-coco-noir-eau-de/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/fragrances/chanel-coco-noir-eau-de/thumbnail.webp"},{"id":8,"title":"Dior J'adore","description":"J'adore by Dior is a luxurious and floral fragrance, known for its blend of ylang-ylang, rose, and jasmine. It embodies femininity and sophistication.","category":"fragrances","price":89.99,"discountPercentage":14.72,"rating":3.8,"stock":98,"tags":["fragrances","perfumes"],"brand":"Dior","sku":"FRA-DIO-DIO-008","weight":4,"dimensions":{"width":27.67,"height":28.28,"depth":11.83},"warrantyInformation":"1 week warranty","shippingInformation":"Ships in 2 weeks","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Great value for money!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Nicholas Bailey","reviewerEmail":"nicholas.bailey@x.dummyjson.com"},{"rating":4,"comment":"Great value for money!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Penelope Harper","reviewerEmail":"penelope.harper@x.dummyjson.com"},{"rating":4,"comment":"Great product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Emma Miller","reviewerEmail":"emma.miller@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":10,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"1445086097250","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/fragrances/dior-j'adore/1.webp","https://cdn.dummyjson.com/product-images/fragrances/dior-j'adore/2.webp","https://cdn.dummyjson.com/product-images/fragrances/dior-j'adore/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/fragrances/dior-j'adore/thumbnail.webp"},{"id":9,"title":"Dolce Shine Eau de","description":"Dolce Shine by Dolce & Gabbana is a vibrant and fruity fragrance, featuring notes of mango, jasmine, and blonde woods. It's a joyful and youthful scent.","category":"fragrances","price":69.99,"discountPercentage":0.62,"rating":3.96,"stock":4,"tags":["fragrances","perfumes"],"brand":"Dolce & Gabbana","sku":"FRA-DOL-DOL-009","weight":6,"dimensions":{"width":27.28,"height":29.88,"depth":18.3},"warrantyInformation":"3 year warranty","shippingInformation":"Ships in 1 month","availabilityStatus":"Low Stock","reviews":[{"rating":4,"comment":"Would buy again!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Mateo Bennett","reviewerEmail":"mateo.bennett@x.dummyjson.com"},{"rating":4,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Nolan Gonzalez","reviewerEmail":"nolan.gonzalez@x.dummyjson.com"},{"rating":5,"comment":"Very happy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Aurora Lawson","reviewerEmail":"aurora.lawson@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":2,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"3023868210708","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/fragrances/dolce-shine-eau-de/1.webp","https://cdn.dummyjson.com/product-images/fragrances/dolce-shine-eau-de/2.webp","https://cdn.dummyjson.com/product-images/fragrances/dolce-shine-eau-de/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/fragrances/dolce-shine-eau-de/thumbnail.webp"},{"id":10,"title":"Gucci Bloom Eau de","description":"Gucci Bloom by Gucci is a floral and captivating fragrance, with notes of tuberose, jasmine, and Rangoon creeper. It's a modern and romantic scent.","category":"fragrances","price":79.99,"discountPercentage":14.39,"rating":2.74,"stock":91,"tags":["fragrances","perfumes"],"brand":"Gucci","sku":"FRA-GUC-GUC-010","weight":7,"dimensions":{"width":20.92,"height":21.68,"depth":11.2},"warrantyInformation":"6 months warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":1,"comment":"Very dissatisfied!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Cameron Perez","reviewerEmail":"cameron.perez@x.dummyjson.com"},{"rating":5,"comment":"Very happy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Daniel Cook","reviewerEmail":"daniel.cook@x.dummyjson.com"},{"rating":4,"comment":"Highly impressed!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Addison Wright","reviewerEmail":"addison.wright@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":2,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"3170832177880","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/fragrances/gucci-bloom-eau-de/1.webp","https://cdn.dummyjson.com/product-images/fragrances/gucci-bloom-eau-de/2.webp","https://cdn.dummyjson.com/product-images/fragrances/gucci-bloom-eau-de/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/fragrances/gucci-bloom-eau-de/thumbnail.webp"},{"id":11,"title":"Annibale Colombo Bed","description":"The Annibale Colombo Bed is a luxurious and elegant bed frame, crafted with high-quality materials for a comfortable and stylish bedroom.","category":"furniture","price":1899.99,"discountPercentage":8.57,"rating":4.77,"stock":88,"tags":["furniture","beds"],"brand":"Annibale Colombo","sku":"FUR-ANN-ANN-011","weight":10,"dimensions":{"width":28.16,"height":25.36,"depth":17.28},"warrantyInformation":"1 year warranty","shippingInformation":"Ships in 1 month","availabilityStatus":"In Stock","reviews":[{"rating":2,"comment":"Would not recommend!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Christopher West","reviewerEmail":"christopher.west@x.dummyjson.com"},{"rating":4,"comment":"Highly impressed!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Vivian Carter","reviewerEmail":"vivian.carter@x.dummyjson.com"},{"rating":1,"comment":"Poor quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Mason Wright","reviewerEmail":"mason.wright@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"3610757456581","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/furniture/annibale-colombo-bed/1.webp","https://cdn.dummyjson.com/product-images/furniture/annibale-colombo-bed/2.webp","https://cdn.dummyjson.com/product-images/furniture/annibale-colombo-bed/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/furniture/annibale-colombo-bed/thumbnail.webp"},{"id":12,"title":"Annibale Colombo Sofa","description":"The Annibale Colombo Sofa is a sophisticated and comfortable seating option, featuring exquisite design and premium upholstery for your living room.","category":"furniture","price":2499.99,"discountPercentage":14.4,"rating":3.92,"stock":60,"tags":["furniture","sofas"],"brand":"Annibale Colombo","sku":"FUR-ANN-ANN-012","weight":6,"dimensions":{"width":12.75,"height":20.55,"depth":19.06},"warrantyInformation":"Lifetime warranty","shippingInformation":"Ships in 1 week","availabilityStatus":"In Stock","reviews":[{"rating":3,"comment":"Very unhappy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Christian Perez","reviewerEmail":"christian.perez@x.dummyjson.com"},{"rating":5,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Lillian Bishop","reviewerEmail":"lillian.bishop@x.dummyjson.com"},{"rating":1,"comment":"Poor quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Lillian Simmons","reviewerEmail":"lillian.simmons@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"1777662847736","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/furniture/annibale-colombo-sofa/1.webp","https://cdn.dummyjson.com/product-images/furniture/annibale-colombo-sofa/2.webp","https://cdn.dummyjson.com/product-images/furniture/annibale-colombo-sofa/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/furniture/annibale-colombo-sofa/thumbnail.webp"},{"id":13,"title":"Bedside Table African Cherry","description":"The Bedside Table in African Cherry is a stylish and functional addition to your bedroom, providing convenient storage space and a touch of elegance.","category":"furniture","price":299.99,"discountPercentage":19.09,"rating":2.87,"stock":64,"tags":["furniture","bedside tables"],"brand":"Furniture Co.","sku":"FUR-FUR-BED-013","weight":2,"dimensions":{"width":13.47,"height":24.99,"depth":27.35},"warrantyInformation":"5 year warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Aaliyah Hanson","reviewerEmail":"aaliyah.hanson@x.dummyjson.com"},{"rating":4,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Liam Smith","reviewerEmail":"liam.smith@x.dummyjson.com"},{"rating":4,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Avery Barnes","reviewerEmail":"avery.barnes@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":3,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"6441287925979","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/furniture/bedside-table-african-cherry/1.webp","https://cdn.dummyjson.com/product-images/furniture/bedside-table-african-cherry/2.webp","https://cdn.dummyjson.com/product-images/furniture/bedside-table-african-cherry/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/furniture/bedside-table-african-cherry/thumbnail.webp"},{"id":14,"title":"Knoll Saarinen Executive Conference Chair","description":"The Knoll Saarinen Executive Conference Chair is a modern and ergonomic chair, perfect for your office or conference room with its timeless design.","category":"furniture","price":499.99,"discountPercentage":2.01,"rating":4.88,"stock":26,"tags":["furniture","office chairs"],"brand":"Knoll","sku":"FUR-KNO-KNO-014","weight":10,"dimensions":{"width":13.81,"height":7.5,"depth":5.62},"warrantyInformation":"2 year warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":2,"comment":"Waste of money!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Ella Cook","reviewerEmail":"ella.cook@x.dummyjson.com"},{"rating":2,"comment":"Very dissatisfied!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Clara Berry","reviewerEmail":"clara.berry@x.dummyjson.com"},{"rating":5,"comment":"Would buy again!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Elena Long","reviewerEmail":"elena.long@x.dummyjson.com"}],"returnPolicy":"60 days return policy","minimumOrderQuantity":5,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"8919386859966","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/furniture/knoll-saarinen-executive-conference-chair/1.webp","https://cdn.dummyjson.com/product-images/furniture/knoll-saarinen-executive-conference-chair/2.webp","https://cdn.dummyjson.com/product-images/furniture/knoll-saarinen-executive-conference-chair/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/furniture/knoll-saarinen-executive-conference-chair/thumbnail.webp"},{"id":15,"title":"Wooden Bathroom Sink With Mirror","description":"The Wooden Bathroom Sink with Mirror is a unique and stylish addition to your bathroom, featuring a wooden sink countertop and a matching mirror.","category":"furniture","price":799.99,"discountPercentage":8.8,"rating":3.59,"stock":7,"tags":["furniture","bathroom"],"brand":"Bath Trends","sku":"FUR-BAT-WOO-015","weight":10,"dimensions":{"width":7.98,"height":8.88,"depth":28.46},"warrantyInformation":"3 year warranty","shippingInformation":"Ships in 3-5 business days","availabilityStatus":"Low Stock","reviews":[{"rating":4,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Logan Torres","reviewerEmail":"logan.torres@x.dummyjson.com"},{"rating":5,"comment":"Very pleased!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Aria Parker","reviewerEmail":"aria.parker@x.dummyjson.com"},{"rating":3,"comment":"Poor quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Dylan Wells","reviewerEmail":"dylan.wells@x.dummyjson.com"}],"returnPolicy":"60 days return policy","minimumOrderQuantity":2,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"1958104402873","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/furniture/wooden-bathroom-sink-with-mirror/1.webp","https://cdn.dummyjson.com/product-images/furniture/wooden-bathroom-sink-with-mirror/2.webp","https://cdn.dummyjson.com/product-images/furniture/wooden-bathroom-sink-with-mirror/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/furniture/wooden-bathroom-sink-with-mirror/thumbnail.webp"},{"id":16,"title":"Apple","description":"Fresh and crisp apples, perfect for snacking or incorporating into various recipes.","category":"groceries","price":1.99,"discountPercentage":12.62,"rating":4.19,"stock":8,"tags":["fruits"],"sku":"GRO-BRD-APP-016","weight":9,"dimensions":{"width":13.66,"height":11.01,"depth":9.73},"warrantyInformation":"3 year warranty","shippingInformation":"Ships in 2 weeks","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Sophia Brown","reviewerEmail":"sophia.brown@x.dummyjson.com"},{"rating":1,"comment":"Very dissatisfied!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Scarlett Bowman","reviewerEmail":"scarlett.bowman@x.dummyjson.com"},{"rating":3,"comment":"Very unhappy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"William Gonzalez","reviewerEmail":"william.gonzalez@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":7,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"7962803553314","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/apple/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/apple/thumbnail.webp"},{"id":17,"title":"Beef Steak","description":"High-quality beef steak, great for grilling or cooking to your preferred level of doneness.","category":"groceries","price":12.99,"discountPercentage":9.61,"rating":4.47,"stock":86,"tags":["meat"],"sku":"GRO-BRD-BEE-017","weight":10,"dimensions":{"width":18.9,"height":5.77,"depth":18.57},"warrantyInformation":"3 year warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":3,"comment":"Would not recommend!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Eleanor Tyler","reviewerEmail":"eleanor.tyler@x.dummyjson.com"},{"rating":4,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Alexander Jones","reviewerEmail":"alexander.jones@x.dummyjson.com"},{"rating":5,"comment":"Great value for money!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Natalie Harris","reviewerEmail":"natalie.harris@x.dummyjson.com"}],"returnPolicy":"60 days return policy","minimumOrderQuantity":43,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"5640063409695","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/beef-steak/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/beef-steak/thumbnail.webp"},{"id":18,"title":"Cat Food","description":"Nutritious cat food formulated to meet the dietary needs of your feline friend.","category":"groceries","price":8.99,"discountPercentage":9.58,"rating":3.13,"stock":46,"tags":["pet supplies","cat food"],"sku":"GRO-BRD-FOO-018","weight":10,"dimensions":{"width":18.08,"height":9.26,"depth":21.86},"warrantyInformation":"1 year warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":3,"comment":"Would not recommend!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Noah Lewis","reviewerEmail":"noah.lewis@x.dummyjson.com"},{"rating":3,"comment":"Very unhappy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Ruby Andrews","reviewerEmail":"ruby.andrews@x.dummyjson.com"},{"rating":2,"comment":"Very disappointed!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Ethan Thompson","reviewerEmail":"ethan.thompson@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":18,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"1483991328610","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/cat-food/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/cat-food/thumbnail.webp"},{"id":19,"title":"Chicken Meat","description":"Fresh and tender chicken meat, suitable for various culinary preparations.","category":"groceries","price":9.99,"discountPercentage":13.7,"rating":3.19,"stock":97,"tags":["meat"],"sku":"GRO-BRD-CHI-019","weight":1,"dimensions":{"width":11.03,"height":22.11,"depth":16.01},"warrantyInformation":"1 year warranty","shippingInformation":"Ships in 1 month","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Great product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Mateo Bennett","reviewerEmail":"mateo.bennett@x.dummyjson.com"},{"rating":4,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Jackson Evans","reviewerEmail":"jackson.evans@x.dummyjson.com"},{"rating":3,"comment":"Not worth the price!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Sadie Morales","reviewerEmail":"sadie.morales@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":22,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"8829514594521","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/chicken-meat/1.webp","https://cdn.dummyjson.com/product-images/groceries/chicken-meat/2.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/chicken-meat/thumbnail.webp"},{"id":20,"title":"Cooking Oil","description":"Versatile cooking oil suitable for frying, sautéing, and various culinary applications.","category":"groceries","price":4.99,"discountPercentage":9.33,"rating":4.8,"stock":10,"tags":["cooking essentials"],"sku":"GRO-BRD-COO-020","weight":5,"dimensions":{"width":19.95,"height":27.54,"depth":24.86},"warrantyInformation":"Lifetime warranty","shippingInformation":"Ships in 1-2 business days","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Very happy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Victoria McDonald","reviewerEmail":"victoria.mcdonald@x.dummyjson.com"},{"rating":2,"comment":"Would not recommend!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Hazel Evans","reviewerEmail":"hazel.evans@x.dummyjson.com"},{"rating":5,"comment":"Would buy again!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Zoe Bennett","reviewerEmail":"zoe.bennett@x.dummyjson.com"}],"returnPolicy":"30 days return policy","minimumOrderQuantity":46,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"4874727824518","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/cooking-oil/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/cooking-oil/thumbnail.webp"},{"id":21,"title":"Cucumber","description":"Crisp and hydrating cucumbers, ideal for salads, snacks, or as a refreshing side.","category":"groceries","price":1.49,"discountPercentage":0.16,"rating":4.07,"stock":84,"tags":["vegetables"],"sku":"GRO-BRD-CUC-021","weight":4,"dimensions":{"width":12.8,"height":28.38,"depth":21.34},"warrantyInformation":"2 year warranty","shippingInformation":"Ships in 1-2 business days","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Great product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Lincoln Kelly","reviewerEmail":"lincoln.kelly@x.dummyjson.com"},{"rating":4,"comment":"Great value for money!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Savannah Gomez","reviewerEmail":"savannah.gomez@x.dummyjson.com"},{"rating":2,"comment":"Poor quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"James Davis","reviewerEmail":"james.davis@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":2,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"5300066378225","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/cucumber/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/cucumber/thumbnail.webp"},{"id":22,"title":"Dog Food","description":"Specially formulated dog food designed to provide essential nutrients for your canine companion.","category":"groceries","price":10.99,"discountPercentage":10.27,"rating":4.55,"stock":71,"tags":["pet supplies","dog food"],"sku":"GRO-BRD-FOO-022","weight":10,"dimensions":{"width":16.93,"height":27.15,"depth":9.29},"warrantyInformation":"No warranty","shippingInformation":"Ships in 1-2 business days","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Nicholas Edwards","reviewerEmail":"nicholas.edwards@x.dummyjson.com"},{"rating":5,"comment":"Awesome product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Zachary Lee","reviewerEmail":"zachary.lee@x.dummyjson.com"},{"rating":4,"comment":"Great product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Nova Cooper","reviewerEmail":"nova.cooper@x.dummyjson.com"}],"returnPolicy":"60 days return policy","minimumOrderQuantity":43,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"5906686116469","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/dog-food/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/dog-food/thumbnail.webp"},{"id":23,"title":"Eggs","description":"Fresh eggs, a versatile ingredient for baking, cooking, or breakfast.","category":"groceries","price":2.99,"discountPercentage":11.05,"rating":2.53,"stock":9,"tags":["dairy"],"sku":"GRO-BRD-EGG-023","weight":2,"dimensions":{"width":11.42,"height":7.44,"depth":16.95},"warrantyInformation":"1 week warranty","shippingInformation":"Ships in 1 week","availabilityStatus":"In Stock","reviews":[{"rating":3,"comment":"Disappointing product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Penelope King","reviewerEmail":"penelope.king@x.dummyjson.com"},{"rating":3,"comment":"Poor quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Eleanor Tyler","reviewerEmail":"eleanor.tyler@x.dummyjson.com"},{"rating":4,"comment":"Very pleased!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Benjamin Foster","reviewerEmail":"benjamin.foster@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":32,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"3478638588469","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/eggs/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/eggs/thumbnail.webp"},{"id":24,"title":"Fish Steak","description":"Quality fish steak, suitable for grilling, baking, or pan-searing.","category":"groceries","price":14.99,"discountPercentage":4.23,"rating":3.78,"stock":74,"tags":["seafood"],"sku":"GRO-BRD-FIS-024","weight":6,"dimensions":{"width":14.95,"height":26.31,"depth":11.27},"warrantyInformation":"1 month warranty","shippingInformation":"Ships in 3-5 business days","availabilityStatus":"In Stock","reviews":[{"rating":2,"comment":"Would not buy again!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Caleb Perkins","reviewerEmail":"caleb.perkins@x.dummyjson.com"},{"rating":5,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Isabella Jackson","reviewerEmail":"isabella.jackson@x.dummyjson.com"},{"rating":4,"comment":"Great value for money!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Nathan Dixon","reviewerEmail":"nathan.dixon@x.dummyjson.com"}],"returnPolicy":"60 days return policy","minimumOrderQuantity":50,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"9595036192098","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/fish-steak/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/fish-steak/thumbnail.webp"},{"id":25,"title":"Green Bell Pepper","description":"Fresh and vibrant green bell pepper, perfect for adding color and flavor to your dishes.","category":"groceries","price":1.29,"discountPercentage":0.16,"rating":3.25,"stock":33,"tags":["vegetables"],"sku":"GRO-BRD-GRE-025","weight":2,"dimensions":{"width":15.33,"height":26.65,"depth":14.44},"warrantyInformation":"1 month warranty","shippingInformation":"Ships in 1 week","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Avery Carter","reviewerEmail":"avery.carter@x.dummyjson.com"},{"rating":3,"comment":"Would not recommend!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Henry Hill","reviewerEmail":"henry.hill@x.dummyjson.com"},{"rating":5,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Addison Wright","reviewerEmail":"addison.wright@x.dummyjson.com"}],"returnPolicy":"30 days return policy","minimumOrderQuantity":12,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"2365227493323","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/green-bell-pepper/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/green-bell-pepper/thumbnail.webp"},{"id":26,"title":"Green Chili Pepper","description":"Spicy green chili pepper, ideal for adding heat to your favorite recipes.","category":"groceries","price":0.99,"discountPercentage":1,"rating":3.66,"stock":3,"tags":["vegetables"],"sku":"GRO-BRD-GRE-026","weight":7,"dimensions":{"width":15.38,"height":18.12,"depth":19.92},"warrantyInformation":"2 year warranty","shippingInformation":"Ships in 1 week","availabilityStatus":"Low Stock","reviews":[{"rating":4,"comment":"Great product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Luna Russell","reviewerEmail":"luna.russell@x.dummyjson.com"},{"rating":1,"comment":"Waste of money!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Noah Lewis","reviewerEmail":"noah.lewis@x.dummyjson.com"},{"rating":3,"comment":"Very disappointed!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Clara Berry","reviewerEmail":"clara.berry@x.dummyjson.com"}],"returnPolicy":"30 days return policy","minimumOrderQuantity":39,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"9335000538563","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/green-chili-pepper/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/green-chili-pepper/thumbnail.webp"},{"id":27,"title":"Honey Jar","description":"Pure and natural honey in a convenient jar, perfect for sweetening beverages or drizzling over food.","category":"groceries","price":6.99,"discountPercentage":14.4,"rating":3.97,"stock":34,"tags":["condiments"],"sku":"GRO-BRD-HON-027","weight":2,"dimensions":{"width":9.28,"height":21.72,"depth":17.74},"warrantyInformation":"1 month warranty","shippingInformation":"Ships in 1-2 business days","availabilityStatus":"In Stock","reviews":[{"rating":1,"comment":"Very disappointed!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Autumn Gomez","reviewerEmail":"autumn.gomez@x.dummyjson.com"},{"rating":4,"comment":"Highly impressed!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Benjamin Wilson","reviewerEmail":"benjamin.wilson@x.dummyjson.com"},{"rating":2,"comment":"Very disappointed!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Nicholas Edwards","reviewerEmail":"nicholas.edwards@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":47,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"6354306346329","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/honey-jar/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/honey-jar/thumbnail.webp"},{"id":28,"title":"Ice Cream","description":"Creamy and delicious ice cream, available in various flavors for a delightful treat.","category":"groceries","price":5.49,"discountPercentage":8.69,"rating":3.39,"stock":27,"tags":["desserts"],"sku":"GRO-BRD-CRE-028","weight":1,"dimensions":{"width":14.83,"height":15.07,"depth":24.2},"warrantyInformation":"1 month warranty","shippingInformation":"Ships in 2 weeks","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Very pleased!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Elijah Cruz","reviewerEmail":"elijah.cruz@x.dummyjson.com"},{"rating":4,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Jace Smith","reviewerEmail":"jace.smith@x.dummyjson.com"},{"rating":5,"comment":"Highly impressed!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Sadie Morales","reviewerEmail":"sadie.morales@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":42,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"0788954559076","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/ice-cream/1.webp","https://cdn.dummyjson.com/product-images/groceries/ice-cream/2.webp","https://cdn.dummyjson.com/product-images/groceries/ice-cream/3.webp","https://cdn.dummyjson.com/product-images/groceries/ice-cream/4.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/ice-cream/thumbnail.webp"},{"id":29,"title":"Juice","description":"Refreshing fruit juice, packed with vitamins and great for staying hydrated.","category":"groceries","price":3.99,"discountPercentage":12.06,"rating":3.94,"stock":50,"tags":["beverages"],"sku":"GRO-BRD-JUI-029","weight":1,"dimensions":{"width":18.56,"height":21.46,"depth":28.02},"warrantyInformation":"6 months warranty","shippingInformation":"Ships in 1 week","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Nolan Gonzalez","reviewerEmail":"nolan.gonzalez@x.dummyjson.com"},{"rating":4,"comment":"Would buy again!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Bella Grant","reviewerEmail":"bella.grant@x.dummyjson.com"},{"rating":5,"comment":"Awesome product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Aria Flores","reviewerEmail":"aria.flores@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":25,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"6936112580956","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/juice/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/juice/thumbnail.webp"},{"id":30,"title":"Kiwi","description":"Nutrient-rich kiwi, perfect for snacking or adding a tropical twist to your dishes.","category":"groceries","price":2.49,"discountPercentage":15.22,"rating":4.93,"stock":99,"tags":["fruits"],"sku":"GRO-BRD-KIW-030","weight":5,"dimensions":{"width":19.4,"height":18.67,"depth":17.13},"warrantyInformation":"6 months warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Emily Brown","reviewerEmail":"emily.brown@x.dummyjson.com"},{"rating":2,"comment":"Would not buy again!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Jackson Morales","reviewerEmail":"jackson.morales@x.dummyjson.com"},{"rating":4,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Nora Russell","reviewerEmail":"nora.russell@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":30,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"2530169917252","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/kiwi/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/kiwi/thumbnail.webp"}],"total":194,"skip":0,"limit":30}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Products content is correct | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 3 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Retrieves detailed information about a specific product by its unique identifier.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/products/20`
## Authentication
- **Required**: No
- This is a public endpoint that doesn't require authentication
## Parameters
### Path Variables
- `productId` (required) - The unique identifier of the product to retrieve
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
{
"id": 1,
"title": "Product Name",
"description": "Product description",
"price": 549,
"discountPercentage": 12.96,
"rating": 4.69,
"stock": 94,
"brand": "Brand Name",
"category": "Category Name",
"thumbnail": "image_url",
"images": ["image1_url", "image2_url"]
}
```
## Tests Included
- Validates response status code is 200
- Verifies product object structure and required fields
- Checks data types for numeric and string fields
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNzksImV4cCI6MTc2OTk2NDc3OX0.au6-HNuanDOW1Q3iDl4MYxifr14HAULtIcahDIP9Pos |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 08749ffb-ce65-4c2d-80ee-bd439f3a4f1c |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExODAsImV4cCI6MTc2OTk2Mjk4MH0.a421am7-9c4bgdogT92hR4YICGdQAmH3mBrPbwPtKz8; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExODAsImV4cCI6MTc3MjU1MzE4MH0.YSCAHcUv1I0PH72s6qGZ-QdElXc_Xd9a8mvH1Vr61Zs |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:00 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 98 |
| x-ratelimit-reset | 1769961190 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"55c-epT06uXY62/BP4rliBoJwBxhmRc" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=rLrXqXCaNM%2BEgwb8d17kDCDcpfCCbG64jjaJl0t9B9BPCYmM0vPY1mnbAoawQUbiFbQQ2MQ7AV6BMkjEJivfdSziNnYes0kEzKDi5mA%3D"}]} |
| CF-RAY | 9c729e82cf862891-AMM |
{"id":20,"title":"Cooking Oil","description":"Versatile cooking oil suitable for frying, sautéing, and various culinary applications.","category":"groceries","price":4.99,"discountPercentage":9.33,"rating":4.8,"stock":10,"tags":["cooking essentials"],"sku":"GRO-BRD-COO-020","weight":5,"dimensions":{"width":19.95,"height":27.54,"depth":24.86},"warrantyInformation":"Lifetime warranty","shippingInformation":"Ships in 1-2 business days","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Very happy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Victoria McDonald","reviewerEmail":"victoria.mcdonald@x.dummyjson.com"},{"rating":2,"comment":"Would not recommend!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Hazel Evans","reviewerEmail":"hazel.evans@x.dummyjson.com"},{"rating":5,"comment":"Would buy again!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Zoe Bennett","reviewerEmail":"zoe.bennett@x.dummyjson.com"}],"returnPolicy":"30 days return policy","minimumOrderQuantity":46,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"4874727824518","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/cooking-oil/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/cooking-oil/thumbnail.webp"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Searches for products based on a query string, returning all products that match the search criteria.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/products/search?q=phone`
## Authentication
- **Required**: No
- This is a public endpoint that doesn't require authentication
## Parameters
### Query Parameters
- `q` (required) - The search query string to find matching products
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
{
"products": [
{
"id": 1,
"title": "Product Name",
"description": "Product description",
"price": 549,
"category": "Category Name",
...
}
],
"total": 4,
"skip": 0,
"limit": 30
}
```
## Tests Included
- Validates response status code is 200
- Verifies products array exists
- Checks pagination metadata (total, skip, limit)
- Confirms search results match query criteria
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNzksImV4cCI6MTc2OTk2NDc3OX0.au6-HNuanDOW1Q3iDl4MYxifr14HAULtIcahDIP9Pos |
| Content-Type | text/plain |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 479bf6e7-461c-40bd-8897-d947b3fa9647 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 61 |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExODAsImV4cCI6MTc2OTk2Mjk4MH0.a421am7-9c4bgdogT92hR4YICGdQAmH3mBrPbwPtKz8; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExODAsImV4cCI6MTc3MjU1MzE4MH0.YSCAHcUv1I0PH72s6qGZ-QdElXc_Xd9a8mvH1Vr61Zs |
{
"username": "emilys",
"password": "emilyspass"
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:01 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 93 |
| x-ratelimit-reset | 1769961183 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"91a2-RFRCC1oz+o2Uvyk0nOQo9Pf5Q2g" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=9KtJUbqI1PD5CpfRHdjwwhjrD%2BvSWvp9MKEe%2BUcFRfofV0kVysE%2BcxTl4eL%2BuP9RpRjod6Zy0DSyG%2FeWNylHrCkKYI3NpPqkDESigx4%3D"}]} |
| CF-RAY | 9c729e84694d2891-AMM |
{"products":[{"id":101,"title":"Apple AirPods Max Silver","description":"The Apple AirPods Max in Silver are premium over-ear headphones with high-fidelity audio, adaptive EQ, and active noise cancellation. Experience immersive sound in style.","category":"mobile-accessories","price":549.99,"discountPercentage":13.67,"rating":3.47,"stock":59,"tags":["electronics","over-ear headphones"],"brand":"Apple","sku":"MOB-APP-APP-101","weight":2,"dimensions":{"width":24.88,"height":14.9,"depth":27.54},"warrantyInformation":"No warranty","shippingInformation":"Ships in 2 weeks","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Henry Adams","reviewerEmail":"henry.adams@x.dummyjson.com"},{"rating":4,"comment":"Very happy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Elijah Cruz","reviewerEmail":"elijah.cruz@x.dummyjson.com"},{"rating":4,"comment":"Would buy again!","date":"2025-04-30T09:41:02.053Z","reviewerName":"William Lopez","reviewerEmail":"william.lopez@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"4062176053732","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/mobile-accessories/apple-airpods-max-silver/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/mobile-accessories/apple-airpods-max-silver/thumbnail.webp"},{"id":104,"title":"Apple iPhone Charger","description":"The Apple iPhone Charger is a high-quality charger designed for fast and efficient charging of your iPhone. Ensure your device stays powered up and ready to go.","category":"mobile-accessories","price":19.99,"discountPercentage":18.52,"rating":4.15,"stock":31,"tags":["electronics","chargers"],"brand":"Apple","sku":"MOB-APP-APP-104","weight":1,"dimensions":{"width":13.63,"height":26.25,"depth":5.95},"warrantyInformation":"1 year warranty","shippingInformation":"Ships in 2 weeks","availabilityStatus":"In Stock","reviews":[{"rating":1,"comment":"Very disappointed!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Sadie Morales","reviewerEmail":"sadie.morales@x.dummyjson.com"},{"rating":5,"comment":"Great product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Lily Torres","reviewerEmail":"lily.torres@x.dummyjson.com"},{"rating":2,"comment":"Waste of money!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Luke Cooper","reviewerEmail":"luke.cooper@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":14,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"0879776541417","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/mobile-accessories/apple-iphone-charger/1.webp","https://cdn.dummyjson.com/product-images/mobile-accessories/apple-iphone-charger/2.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/mobile-accessories/apple-iphone-charger/thumbnail.webp"},{"id":105,"title":"Apple MagSafe Battery Pack","description":"The Apple MagSafe Battery Pack is a portable and convenient way to add extra battery life to your MagSafe-compatible iPhone. Attach it magnetically for a secure connection.","category":"mobile-accessories","price":99.99,"discountPercentage":17.17,"rating":3.62,"stock":1,"tags":["electronics","power banks"],"brand":"Apple","sku":"MOB-APP-APP-105","weight":6,"dimensions":{"width":15.4,"height":11.89,"depth":19.67},"warrantyInformation":"2 year warranty","shippingInformation":"Ships overnight","availabilityStatus":"Low Stock","reviews":[{"rating":2,"comment":"Would not recommend!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Stella Morris","reviewerEmail":"stella.morris@x.dummyjson.com"},{"rating":2,"comment":"Not as described!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Henry Adams","reviewerEmail":"henry.adams@x.dummyjson.com"},{"rating":5,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Cameron Burke","reviewerEmail":"cameron.burke@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":4,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"5157424897794","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/mobile-accessories/apple-magsafe-battery-pack/1.webp","https://cdn.dummyjson.com/product-images/mobile-accessories/apple-magsafe-battery-pack/2.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/mobile-accessories/apple-magsafe-battery-pack/thumbnail.webp"},{"id":107,"title":"Beats Flex Wireless Earphones","description":"The Beats Flex Wireless Earphones offer a comfortable and versatile audio experience. With magnetic earbuds and up to 12 hours of battery life, they are ideal for everyday use.","category":"mobile-accessories","price":49.99,"discountPercentage":5.73,"rating":4.24,"stock":50,"tags":["electronics","wireless earphones"],"brand":"Beats","sku":"MOB-BEA-BEA-107","weight":8,"dimensions":{"width":17.86,"height":25.74,"depth":23.09},"warrantyInformation":"1 year warranty","shippingInformation":"Ships in 1-2 business days","availabilityStatus":"In Stock","reviews":[{"rating":2,"comment":"Disappointing product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"William Gonzalez","reviewerEmail":"william.gonzalez@x.dummyjson.com"},{"rating":5,"comment":"Very pleased!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Gabriel Mitchell","reviewerEmail":"gabriel.mitchell@x.dummyjson.com"},{"rating":2,"comment":"Not worth the price!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Gabriel Adams","reviewerEmail":"gabriel.adams@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":17,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"1741271692174","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/mobile-accessories/beats-flex-wireless-earphones/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/mobile-accessories/beats-flex-wireless-earphones/thumbnail.webp"},{"id":108,"title":"iPhone 12 Silicone Case with MagSafe Plum","description":"The iPhone 12 Silicone Case with MagSafe in Plum is a stylish and protective case designed for the iPhone 12. It features MagSafe technology for easy attachment of accessories.","category":"mobile-accessories","price":29.99,"discountPercentage":13.85,"rating":3.62,"stock":69,"tags":["electronics","phone accessories"],"brand":"Apple","sku":"MOB-APP-IPH-108","weight":7,"dimensions":{"width":12.49,"height":11.29,"depth":23.52},"warrantyInformation":"3 months warranty","shippingInformation":"Ships in 3-5 business days","availabilityStatus":"In Stock","reviews":[{"rating":2,"comment":"Would not buy again!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Penelope King","reviewerEmail":"penelope.king@x.dummyjson.com"},{"rating":5,"comment":"Great value for money!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Isabella Anderson","reviewerEmail":"isabella.anderson@x.dummyjson.com"},{"rating":5,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Claire Foster","reviewerEmail":"claire.foster@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":4,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"8156838251449","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/mobile-accessories/iphone-12-silicone-case-with-magsafe-plum/1.webp","https://cdn.dummyjson.com/product-images/mobile-accessories/iphone-12-silicone-case-with-magsafe-plum/2.webp","https://cdn.dummyjson.com/product-images/mobile-accessories/iphone-12-silicone-case-with-magsafe-plum/3.webp","https://cdn.dummyjson.com/product-images/mobile-accessories/iphone-12-silicone-case-with-magsafe-plum/4.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/mobile-accessories/iphone-12-silicone-case-with-magsafe-plum/thumbnail.webp"},{"id":110,"title":"Selfie Lamp with iPhone","description":"The Selfie Lamp with iPhone is a portable and adjustable LED light designed to enhance your selfies and video calls. Attach it to your iPhone for well-lit photos.","category":"mobile-accessories","price":14.99,"discountPercentage":19.4,"rating":3.55,"stock":58,"tags":["electronics","selfie accessories"],"brand":"GadgetMaster","sku":"MOB-GAD-SEL-110","weight":10,"dimensions":{"width":5.26,"height":13.84,"depth":22.83},"warrantyInformation":"Lifetime warranty","shippingInformation":"Ships in 2 weeks","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Luke Cooper","reviewerEmail":"luke.cooper@x.dummyjson.com"},{"rating":3,"comment":"Poor quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Caleb Perkins","reviewerEmail":"caleb.perkins@x.dummyjson.com"},{"rating":4,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Benjamin Wilson","reviewerEmail":"benjamin.wilson@x.dummyjson.com"}],"returnPolicy":"60 days return policy","minimumOrderQuantity":22,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"4372781189895","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/mobile-accessories/selfie-lamp-with-iphone/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/mobile-accessories/selfie-lamp-with-iphone/thumbnail.webp"},{"id":111,"title":"Selfie Stick Monopod","description":"The Selfie Stick Monopod is a extendable and foldable device for capturing the perfect selfie or group photo. Compatible with smartphones and cameras.","category":"mobile-accessories","price":12.99,"discountPercentage":19.12,"rating":3.88,"stock":11,"tags":["electronics","selfie accessories"],"brand":"SnapTech","sku":"MOB-SNA-SEL-111","weight":2,"dimensions":{"width":24.76,"height":26.38,"depth":21.39},"warrantyInformation":"3 year warranty","shippingInformation":"Ships in 1-2 business days","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Great product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Ryan Graham","reviewerEmail":"ryan.graham@x.dummyjson.com"},{"rating":4,"comment":"Great product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Nora Russell","reviewerEmail":"nora.russell@x.dummyjson.com"},{"rating":1,"comment":"Very dissatisfied!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Luna Perez","reviewerEmail":"luna.perez@x.dummyjson.com"}],"returnPolicy":"30 days return policy","minimumOrderQuantity":8,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"7063982050226","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/mobile-accessories/selfie-stick-monopod/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/mobile-accessories/selfie-stick-monopod/thumbnail.webp"},{"id":121,"title":"iPhone 5s","description":"The iPhone 5s is a classic smartphone known for its compact design and advanced features during its release. While it's an older model, it still provides a reliable user experience.","category":"smartphones","price":199.99,"discountPercentage":12.91,"rating":2.83,"stock":25,"tags":["smartphones","apple"],"brand":"Apple","sku":"SMA-APP-IPH-121","weight":2,"dimensions":{"width":5.29,"height":18.38,"depth":17.72},"warrantyInformation":"Lifetime warranty","shippingInformation":"Ships in 1 month","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Jace Smith","reviewerEmail":"jace.smith@x.dummyjson.com"},{"rating":1,"comment":"Not as described!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Logan Torres","reviewerEmail":"logan.torres@x.dummyjson.com"},{"rating":5,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Harper Kelly","reviewerEmail":"harper.kelly@x.dummyjson.com"}],"returnPolicy":"60 days return policy","minimumOrderQuantity":3,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"8814683940853","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/iphone-5s/1.webp","https://cdn.dummyjson.com/product-images/smartphones/iphone-5s/2.webp","https://cdn.dummyjson.com/product-images/smartphones/iphone-5s/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/iphone-5s/thumbnail.webp"},{"id":122,"title":"iPhone 6","description":"The iPhone 6 is a stylish and capable smartphone with a larger display and improved performance. It introduced new features and design elements, making it a popular choice in its time.","category":"smartphones","price":299.99,"discountPercentage":6.69,"rating":3.41,"stock":60,"tags":["smartphones","apple"],"brand":"Apple","sku":"SMA-APP-IPH-122","weight":7,"dimensions":{"width":11,"height":9.1,"depth":9.67},"warrantyInformation":"1 month warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":3,"comment":"Disappointing product!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Stella Morris","reviewerEmail":"stella.morris@x.dummyjson.com"},{"rating":4,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Nolan Gonzalez","reviewerEmail":"nolan.gonzalez@x.dummyjson.com"},{"rating":5,"comment":"Great value for money!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Benjamin Foster","reviewerEmail":"benjamin.foster@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":5,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"9922357685013","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/iphone-6/1.webp","https://cdn.dummyjson.com/product-images/smartphones/iphone-6/2.webp","https://cdn.dummyjson.com/product-images/smartphones/iphone-6/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/iphone-6/thumbnail.webp"},{"id":123,"title":"iPhone 13 Pro","description":"The iPhone 13 Pro is a cutting-edge smartphone with a powerful camera system, high-performance chip, and stunning display. It offers advanced features for users who demand top-notch technology.","category":"smartphones","price":1099.99,"discountPercentage":9.37,"rating":4.12,"stock":56,"tags":["smartphones","apple"],"brand":"Apple","sku":"SMA-APP-IPH-123","weight":8,"dimensions":{"width":12.63,"height":5.28,"depth":14.29},"warrantyInformation":"3 year warranty","shippingInformation":"Ships in 2 weeks","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Would buy again!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Christian Perez","reviewerEmail":"christian.perez@x.dummyjson.com"},{"rating":3,"comment":"Not worth the price!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Liam Gonzalez","reviewerEmail":"liam.gonzalez@x.dummyjson.com"},{"rating":5,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Tristan Scott","reviewerEmail":"tristan.scott@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"4998438802308","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/iphone-13-pro/1.webp","https://cdn.dummyjson.com/product-images/smartphones/iphone-13-pro/2.webp","https://cdn.dummyjson.com/product-images/smartphones/iphone-13-pro/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/iphone-13-pro/thumbnail.webp"},{"id":124,"title":"iPhone X","description":"The iPhone X is a flagship smartphone featuring a bezel-less OLED display, facial recognition technology (Face ID), and impressive performance. It represents a milestone in iPhone design and innovation.","category":"smartphones","price":899.99,"discountPercentage":19.59,"rating":2.51,"stock":37,"tags":["smartphones","apple"],"brand":"Apple","sku":"SMA-APP-IPH-124","weight":1,"dimensions":{"width":21.88,"height":24.19,"depth":14.19},"warrantyInformation":"3 months warranty","shippingInformation":"Ships in 3-5 business days","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Tyler Davis","reviewerEmail":"tyler.davis@x.dummyjson.com"},{"rating":5,"comment":"Great product!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Aria Parker","reviewerEmail":"aria.parker@x.dummyjson.com"},{"rating":2,"comment":"Not as described!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Lily Torres","reviewerEmail":"lily.torres@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":2,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"3034949322264","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/iphone-x/1.webp","https://cdn.dummyjson.com/product-images/smartphones/iphone-x/2.webp","https://cdn.dummyjson.com/product-images/smartphones/iphone-x/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/iphone-x/thumbnail.webp"},{"id":125,"title":"Oppo A57","description":"The Oppo A57 is a mid-range smartphone known for its sleek design and capable features. It offers a balance of performance and affordability, making it a popular choice.","category":"smartphones","price":249.99,"discountPercentage":2.43,"rating":3.94,"stock":19,"tags":["smartphones","oppo"],"brand":"Oppo","sku":"SMA-OPP-OPP-125","weight":5,"dimensions":{"width":7.2,"height":10.74,"depth":23.68},"warrantyInformation":"Lifetime warranty","shippingInformation":"Ships in 3-5 business days","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Scarlett Wright","reviewerEmail":"scarlett.wright@x.dummyjson.com"},{"rating":5,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Jacob Cooper","reviewerEmail":"jacob.cooper@x.dummyjson.com"},{"rating":2,"comment":"Poor quality!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Zoe Nicholson","reviewerEmail":"zoe.nicholson@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":3,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"0651223722522","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/oppo-a57/1.webp","https://cdn.dummyjson.com/product-images/smartphones/oppo-a57/2.webp","https://cdn.dummyjson.com/product-images/smartphones/oppo-a57/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/oppo-a57/thumbnail.webp"},{"id":126,"title":"Oppo F19 Pro Plus","description":"The Oppo F19 Pro Plus is a feature-rich smartphone with a focus on camera capabilities. It boasts advanced photography features and a powerful performance for a premium user experience.","category":"smartphones","price":399.99,"discountPercentage":18.64,"rating":3.51,"stock":78,"tags":["smartphones","oppo"],"brand":"Oppo","sku":"SMA-OPP-OPP-126","weight":6,"dimensions":{"width":6.78,"height":25.17,"depth":8.4},"warrantyInformation":"3 year warranty","shippingInformation":"Ships in 1 week","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Very happy with my purchase!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Emily Johnson","reviewerEmail":"emily.johnson@x.dummyjson.com"},{"rating":5,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Jaxon Barnes","reviewerEmail":"jaxon.barnes@x.dummyjson.com"},{"rating":4,"comment":"Would buy again!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Nova Cooper","reviewerEmail":"nova.cooper@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"8576893968169","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/oppo-f19-pro-plus/1.webp","https://cdn.dummyjson.com/product-images/smartphones/oppo-f19-pro-plus/2.webp","https://cdn.dummyjson.com/product-images/smartphones/oppo-f19-pro-plus/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/oppo-f19-pro-plus/thumbnail.webp"},{"id":127,"title":"Oppo K1","description":"The Oppo K1 series offers a range of smartphones with various features and specifications. Known for their stylish design and reliable performance, the Oppo K1 series caters to diverse user preferences.","category":"smartphones","price":299.99,"discountPercentage":18.29,"rating":4.25,"stock":55,"tags":["smartphones","oppo"],"brand":"Oppo","sku":"SMA-OPP-OPP-127","weight":5,"dimensions":{"width":13.89,"height":10.63,"depth":16.6},"warrantyInformation":"1 month warranty","shippingInformation":"Ships in 1-2 business days","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Very pleased!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Christopher West","reviewerEmail":"christopher.west@x.dummyjson.com"},{"rating":4,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Mia Miller","reviewerEmail":"mia.miller@x.dummyjson.com"},{"rating":2,"comment":"Very dissatisfied!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Ella Adams","reviewerEmail":"ella.adams@x.dummyjson.com"}],"returnPolicy":"30 days return policy","minimumOrderQuantity":5,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"3106827888743","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/oppo-k1/1.webp","https://cdn.dummyjson.com/product-images/smartphones/oppo-k1/2.webp","https://cdn.dummyjson.com/product-images/smartphones/oppo-k1/3.webp","https://cdn.dummyjson.com/product-images/smartphones/oppo-k1/4.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/oppo-k1/thumbnail.webp"},{"id":128,"title":"Realme C35","description":"The Realme C35 is a budget-friendly smartphone with a focus on providing essential features for everyday use. It offers a reliable performance and user-friendly experience.","category":"smartphones","price":149.99,"discountPercentage":15.3,"rating":4.2,"stock":48,"tags":["smartphones","realme"],"brand":"Realme","sku":"SMA-REA-REA-128","weight":2,"dimensions":{"width":25.28,"height":8.14,"depth":29.53},"warrantyInformation":"3 year warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Great product!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Penelope King","reviewerEmail":"penelope.king@x.dummyjson.com"},{"rating":2,"comment":"Very unhappy with my purchase!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Asher Scott","reviewerEmail":"asher.scott@x.dummyjson.com"},{"rating":4,"comment":"Highly impressed!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Henry Adams","reviewerEmail":"henry.adams@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":3,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"7825844344364","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/realme-c35/1.webp","https://cdn.dummyjson.com/product-images/smartphones/realme-c35/2.webp","https://cdn.dummyjson.com/product-images/smartphones/realme-c35/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/realme-c35/thumbnail.webp"},{"id":129,"title":"Realme X","description":"The Realme X is a mid-range smartphone known for its sleek design and impressive display. It offers a good balance of performance and camera capabilities for users seeking a quality device.","category":"smartphones","price":299.99,"discountPercentage":6.95,"rating":3.7,"stock":12,"tags":["smartphones","realme"],"brand":"Realme","sku":"SMA-REA-REA-129","weight":4,"dimensions":{"width":25.59,"height":21.42,"depth":12.75},"warrantyInformation":"1 month warranty","shippingInformation":"Ships in 3-5 business days","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Would buy again!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Hazel Evans","reviewerEmail":"hazel.evans@x.dummyjson.com"},{"rating":5,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Brayden Fleming","reviewerEmail":"brayden.fleming@x.dummyjson.com"},{"rating":5,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Madison Stewart","reviewerEmail":"madison.stewart@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":3,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"4948452391831","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/realme-x/1.webp","https://cdn.dummyjson.com/product-images/smartphones/realme-x/2.webp","https://cdn.dummyjson.com/product-images/smartphones/realme-x/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/realme-x/thumbnail.webp"},{"id":130,"title":"Realme XT","description":"The Realme XT is a feature-rich smartphone with a focus on camera technology. It comes equipped with advanced camera sensors, delivering high-quality photos and videos for photography enthusiasts.","category":"smartphones","price":349.99,"discountPercentage":11.51,"rating":4.58,"stock":80,"tags":["smartphones","realme"],"brand":"Realme","sku":"SMA-REA-REA-130","weight":3,"dimensions":{"width":24.98,"height":26.73,"depth":6.5},"warrantyInformation":"3 year warranty","shippingInformation":"Ships in 1 month","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Emily Brown","reviewerEmail":"emily.brown@x.dummyjson.com"},{"rating":3,"comment":"Not as described!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Ella Cook","reviewerEmail":"ella.cook@x.dummyjson.com"},{"rating":5,"comment":"Would buy again!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Layla Sullivan","reviewerEmail":"layla.sullivan@x.dummyjson.com"}],"returnPolicy":"60 days return policy","minimumOrderQuantity":3,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"6151817227632","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/realme-xt/1.webp","https://cdn.dummyjson.com/product-images/smartphones/realme-xt/2.webp","https://cdn.dummyjson.com/product-images/smartphones/realme-xt/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/realme-xt/thumbnail.webp"},{"id":131,"title":"Samsung Galaxy S7","description":"The Samsung Galaxy S7 is a flagship smartphone known for its sleek design and advanced features. It features a high-resolution display, powerful camera, and robust performance.","category":"smartphones","price":299.99,"discountPercentage":19.55,"rating":3.3,"stock":67,"tags":["smartphones","samsung galaxy"],"brand":"Samsung","sku":"SMA-SAM-SAM-131","weight":10,"dimensions":{"width":13.55,"height":24.24,"depth":5.63},"warrantyInformation":"3 months warranty","shippingInformation":"Ships in 3-5 business days","availabilityStatus":"In Stock","reviews":[{"rating":1,"comment":"Not as described!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Julian James","reviewerEmail":"julian.james@x.dummyjson.com"},{"rating":4,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Lucas Gordon","reviewerEmail":"lucas.gordon@x.dummyjson.com"},{"rating":4,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Ava Taylor","reviewerEmail":"ava.taylor@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"7557912146622","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s7/1.webp","https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s7/2.webp","https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s7/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s7/thumbnail.webp"},{"id":132,"title":"Samsung Galaxy S8","description":"The Samsung Galaxy S8 is a premium smartphone with an Infinity Display, offering a stunning visual experience. It boasts advanced camera capabilities and cutting-edge technology.","category":"smartphones","price":499.99,"discountPercentage":19.45,"rating":4.4,"stock":0,"tags":["smartphones","samsung galaxy"],"brand":"Samsung","sku":"SMA-SAM-SAM-132","weight":6,"dimensions":{"width":23.05,"height":26.88,"depth":15.73},"warrantyInformation":"2 year warranty","shippingInformation":"Ships in 1 week","availabilityStatus":"Out of Stock","reviews":[{"rating":4,"comment":"Highly impressed!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Owen Fisher","reviewerEmail":"owen.fisher@x.dummyjson.com"},{"rating":4,"comment":"Highly impressed!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Clara Berry","reviewerEmail":"clara.berry@x.dummyjson.com"},{"rating":4,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Tyler Davis","reviewerEmail":"tyler.davis@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":4,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"5995499013336","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s8/1.webp","https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s8/2.webp","https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s8/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s8/thumbnail.webp"},{"id":133,"title":"Samsung Galaxy S10","description":"The Samsung Galaxy S10 is a flagship device featuring a dynamic AMOLED display, versatile camera system, and powerful performance. It represents innovation and excellence in smartphone technology.","category":"smartphones","price":699.99,"discountPercentage":5.59,"rating":3.06,"stock":19,"tags":["smartphones","samsung galaxy"],"brand":"Samsung","sku":"SMA-SAM-SAM-133","weight":9,"dimensions":{"width":27.41,"height":15.26,"depth":27.02},"warrantyInformation":"No warranty","shippingInformation":"Ships in 2 weeks","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Tristan Scott","reviewerEmail":"tristan.scott@x.dummyjson.com"},{"rating":5,"comment":"Would buy again!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Christopher West","reviewerEmail":"christopher.west@x.dummyjson.com"},{"rating":2,"comment":"Would not recommend!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Amelia Perez","reviewerEmail":"amelia.perez@x.dummyjson.com"}],"returnPolicy":"30 days return policy","minimumOrderQuantity":2,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"4676898229465","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s10/1.webp","https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s10/2.webp","https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s10/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s10/thumbnail.webp"},{"id":134,"title":"Vivo S1","description":"The Vivo S1 is a stylish and mid-range smartphone offering a blend of design and performance. It features a vibrant display, capable camera system, and reliable functionality.","category":"smartphones","price":249.99,"discountPercentage":10.17,"rating":3.5,"stock":50,"tags":["smartphones","vivo"],"brand":"Vivo","sku":"SMA-VIV-VIV-134","weight":4,"dimensions":{"width":14.06,"height":11.79,"depth":6.78},"warrantyInformation":"6 months warranty","shippingInformation":"Ships in 3-5 business days","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Samantha Martinez","reviewerEmail":"samantha.martinez@x.dummyjson.com"},{"rating":3,"comment":"Very disappointed!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Logan Lee","reviewerEmail":"logan.lee@x.dummyjson.com"},{"rating":4,"comment":"Would buy again!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Sophia Jones","reviewerEmail":"sophia.jones@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"8575699153333","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/vivo-s1/1.webp","https://cdn.dummyjson.com/product-images/smartphones/vivo-s1/2.webp","https://cdn.dummyjson.com/product-images/smartphones/vivo-s1/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/vivo-s1/thumbnail.webp"},{"id":135,"title":"Vivo V9","description":"The Vivo V9 is a smartphone known for its sleek design and emphasis on capturing high-quality selfies. It features a notch display, dual-camera setup, and a modern design.","category":"smartphones","price":299.99,"discountPercentage":17.67,"rating":3.6,"stock":82,"tags":["smartphones","vivo"],"brand":"Vivo","sku":"SMA-VIV-VIV-135","weight":4,"dimensions":{"width":19.85,"height":21.83,"depth":13.04},"warrantyInformation":"2 year warranty","shippingInformation":"Ships in 1 month","availabilityStatus":"In Stock","reviews":[{"rating":2,"comment":"Very unhappy with my purchase!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Logan Lawson","reviewerEmail":"logan.lawson@x.dummyjson.com"},{"rating":5,"comment":"Awesome product!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Layla Young","reviewerEmail":"layla.young@x.dummyjson.com"},{"rating":4,"comment":"Great value for money!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Asher Scott","reviewerEmail":"asher.scott@x.dummyjson.com"}],"returnPolicy":"60 days return policy","minimumOrderQuantity":2,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"4295398764784","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/vivo-v9/1.webp","https://cdn.dummyjson.com/product-images/smartphones/vivo-v9/2.webp","https://cdn.dummyjson.com/product-images/smartphones/vivo-v9/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/vivo-v9/thumbnail.webp"},{"id":136,"title":"Vivo X21","description":"The Vivo X21 is a premium smartphone with a focus on cutting-edge technology. It features an in-display fingerprint sensor, a high-resolution display, and advanced camera capabilities.","category":"smartphones","price":499.99,"discountPercentage":17.41,"rating":4.26,"stock":7,"tags":["smartphones","vivo"],"brand":"Vivo","sku":"SMA-VIV-VIV-136","weight":10,"dimensions":{"width":22.49,"height":21.62,"depth":27.88},"warrantyInformation":"1 year warranty","shippingInformation":"Ships in 1-2 business days","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Very pleased!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Liam Gonzalez","reviewerEmail":"liam.gonzalez@x.dummyjson.com"},{"rating":4,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Aurora Barnes","reviewerEmail":"aurora.barnes@x.dummyjson.com"},{"rating":2,"comment":"Not as described!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Evelyn Walker","reviewerEmail":"evelyn.walker@x.dummyjson.com"}],"returnPolicy":"60 days return policy","minimumOrderQuantity":3,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"9944308291810","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/vivo-x21/1.webp","https://cdn.dummyjson.com/product-images/smartphones/vivo-x21/2.webp","https://cdn.dummyjson.com/product-images/smartphones/vivo-x21/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/vivo-x21/thumbnail.webp"}],"total":23,"skip":0,"limit":23}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response has products array | 1 | 0 | 0 |
| Search result is not empty | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 4 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Retrieves a paginated list of products with specific fields selected, demonstrating pagination and field filtering capabilities.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/products?limit=10&skip=10&select=title,price`
## Authentication
- **Required**: No
- This is a public endpoint that doesn't require authentication
## Parameters
### Query Parameters
- `limit` (optional) - Number of products to return (default: 30)
- `skip` (optional) - Number of products to skip for pagination (default: 0)
- `select` (optional) - Comma-separated list of fields to include in response
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
{
"products": [
{
"id": 11,
"title": "Product Name",
"price": 549
}
],
"total": 194,
"skip": 10,
"limit": 10
}
```
## Tests Included
- Validates response status code is 200
- Verifies correct number of products returned (limit)
- Checks pagination offset (skip)
- Confirms only selected fields are present in response
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNzksImV4cCI6MTc2OTk2NDc3OX0.au6-HNuanDOW1Q3iDl4MYxifr14HAULtIcahDIP9Pos |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | dfd02d9e-099d-496e-802a-1023bc74f6fa |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExODAsImV4cCI6MTc2OTk2Mjk4MH0.a421am7-9c4bgdogT92hR4YICGdQAmH3mBrPbwPtKz8; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExODAsImV4cCI6MTc3MjU1MzE4MH0.YSCAHcUv1I0PH72s6qGZ-QdElXc_Xd9a8mvH1Vr61Zs |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:01 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 97 |
| x-ratelimit-reset | 1769961190 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"24c-Ixzqnac0wdL7dYxmEYVxYgj0DEw" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=WUVpiRgqNdAchZ88bxyo7S8%2FRsvfjFKEunYdknLKGJ71JX3dmQtomyc%2BPLoIhSiGeNUnfo4J0w5PgZF%2For8xK8S5i7Zoq5DMQOE4pro%3D"}]} |
| Content-Encoding | br |
| CF-RAY | 9c729e863b522891-AMM |
{"products":[{"id":11,"title":"Annibale Colombo Bed","price":1899.99},{"id":12,"title":"Annibale Colombo Sofa","price":2499.99},{"id":13,"title":"Bedside Table African Cherry","price":299.99},{"id":14,"title":"Knoll Saarinen Executive Conference Chair","price":499.99},{"id":15,"title":"Wooden Bathroom Sink With Mirror","price":799.99},{"id":16,"title":"Apple","price":1.99},{"id":17,"title":"Beef Steak","price":12.99},{"id":18,"title":"Cat Food","price":8.99},{"id":19,"title":"Chicken Meat","price":9.99},{"id":20,"title":"Cooking Oil","price":4.99}],"total":194,"skip":10,"limit":10}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNzksImV4cCI6MTc2OTk2NDc3OX0.au6-HNuanDOW1Q3iDl4MYxifr14HAULtIcahDIP9Pos |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 3fe6d748-d84c-46e3-9dd3-961471add719 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExODAsImV4cCI6MTc2OTk2Mjk4MH0.a421am7-9c4bgdogT92hR4YICGdQAmH3mBrPbwPtKz8; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExODAsImV4cCI6MTc3MjU1MzE4MH0.YSCAHcUv1I0PH72s6qGZ-QdElXc_Xd9a8mvH1Vr61Zs |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:01 GMT |
| Content-Type | application/json; charset=utf-8 |
| Content-Length | 47 |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 96 |
| x-ratelimit-reset | 1769961190 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"2f-Dm0cDEBeWcz70gE8IkcQnAojjLY" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=uDBw7TC8aVZMGmoAND7F1a6WnXmSDhf8DoiNqXHPZt%2FnjlELUeSkYO6v8WAnhCCKYr09rdKQtnbSaNywEfGpyTdp7PBy3drErSY5ezY%3D"}]} |
| CF-RAY | 9c729e87fd342891-AMM |
{"message":"Invalid 'skip' - must be a number"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 400 for invalid limit or skip | 1 | 0 | 0 |
| Error message is returned | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Retrieves all products sorted by a specific field in ascending or descending order.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/products?sortBy=title&order=asc`
## Authentication
- **Required**: No
- This is a public endpoint that doesn't require authentication
## Parameters
### Query Parameters
- `sortBy` (optional) - Field name to sort by (e.g., title, price, rating)
- `order` (optional) - Sort order: `asc` (ascending) or `desc` (descending)
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
{
"products": [
{
"id": 1,
"title": "A Product Name",
"price": 549,
...
}
],
"total": 194,
"skip": 0,
"limit": 30
}
```
## Tests Included
- Validates response status code is 200
- Verifies products array is sorted correctly
- Checks sort order matches requested order (asc/desc)
- Confirms all product fields are present
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNzksImV4cCI6MTc2OTk2NDc3OX0.au6-HNuanDOW1Q3iDl4MYxifr14HAULtIcahDIP9Pos |
| Content-Type | text/plain |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | bcf9ab48-b6b4-4b0b-a9b6-d3a923093231 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 61 |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExODAsImV4cCI6MTc2OTk2Mjk4MH0.a421am7-9c4bgdogT92hR4YICGdQAmH3mBrPbwPtKz8; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExODAsImV4cCI6MTc3MjU1MzE4MH0.YSCAHcUv1I0PH72s6qGZ-QdElXc_Xd9a8mvH1Vr61Zs |
{
"username": "emilys",
"password": "emilyspass"
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:01 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 97 |
| x-ratelimit-reset | 1769961189 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"bb19-WvfGDU1qnETYvaDH9O+xwBDBd50" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=2wN6b6AqlQtXIUkFGPALvGU13z2mhVlHiAt3wyJcLV8vPhc%2BY9AiMxty32JIb%2Fxh4FNzQeeVTx8ong7PnZNxTulP1hzxaB0CwlqnhbE%3D"}]} |
| CF-RAY | 9c729e899f132891-AMM |
{"products":[{"id":167,"title":"300 Touring","description":"The 300 Touring is a stylish and comfortable sedan, known for its luxurious features and smooth performance.","category":"vehicle","price":28999.99,"discountPercentage":3.98,"rating":4.05,"stock":54,"tags":["sedans","vehicles"],"brand":"Chrysler","sku":"VEH-CHR-TOU-167","weight":9,"dimensions":{"width":19.2,"height":26.17,"depth":17.28},"warrantyInformation":"3 year warranty","shippingInformation":"Ships in 2 weeks","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Very pleased!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Luna Russell","reviewerEmail":"luna.russell@x.dummyjson.com"},{"rating":5,"comment":"Great product!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Harper Garcia","reviewerEmail":"harper.garcia@x.dummyjson.com"},{"rating":2,"comment":"Not as described!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Harper Turner","reviewerEmail":"harper.turner@x.dummyjson.com"}],"returnPolicy":"30 days return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"6337799339397","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/vehicle/300-touring/1.webp","https://cdn.dummyjson.com/product-images/vehicle/300-touring/2.webp","https://cdn.dummyjson.com/product-images/vehicle/300-touring/3.webp","https://cdn.dummyjson.com/product-images/vehicle/300-touring/4.webp","https://cdn.dummyjson.com/product-images/vehicle/300-touring/5.webp","https://cdn.dummyjson.com/product-images/vehicle/300-touring/6.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/vehicle/300-touring/thumbnail.webp"},{"id":99,"title":"Amazon Echo Plus","description":"The Amazon Echo Plus is a smart speaker with built-in Alexa voice control. It features premium sound quality and serves as a hub for controlling smart home devices.","category":"mobile-accessories","price":99.99,"discountPercentage":12.07,"rating":4.99,"stock":61,"tags":["electronics","smart speakers"],"brand":"Amazon","sku":"MOB-AMA-AMA-099","weight":5,"dimensions":{"width":12.68,"height":15.24,"depth":27.46},"warrantyInformation":"6 months warranty","shippingInformation":"Ships in 1 week","availabilityStatus":"In Stock","reviews":[{"rating":2,"comment":"Would not recommend!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Chloe Morales","reviewerEmail":"chloe.morales@x.dummyjson.com"},{"rating":3,"comment":"Very disappointed!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Mateo Perez","reviewerEmail":"mateo.perez@x.dummyjson.com"},{"rating":4,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Evelyn Walker","reviewerEmail":"evelyn.walker@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":9,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"2256117192038","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/mobile-accessories/amazon-echo-plus/1.webp","https://cdn.dummyjson.com/product-images/mobile-accessories/amazon-echo-plus/2.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/mobile-accessories/amazon-echo-plus/thumbnail.webp"},{"id":137,"title":"American Football","description":"The American Football is a classic ball used in American football games. It is designed for throwing and catching, making it an essential piece of equipment for the sport.","category":"sports-accessories","price":19.99,"discountPercentage":4.93,"rating":4.91,"stock":53,"tags":["sports equipment","american football"],"sku":"SPO-BRD-AME-137","weight":2,"dimensions":{"width":6.88,"height":5.82,"depth":21.96},"warrantyInformation":"6 months warranty","shippingInformation":"Ships in 1 month","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Awesome product!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Scarlett Bowman","reviewerEmail":"scarlett.bowman@x.dummyjson.com"},{"rating":4,"comment":"Would buy again!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Tristan Scott","reviewerEmail":"tristan.scott@x.dummyjson.com"},{"rating":4,"comment":"Very pleased!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Eleanor Tyler","reviewerEmail":"eleanor.tyler@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"0984311727547","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/sports-accessories/american-football/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/sports-accessories/american-football/thumbnail.webp"},{"id":11,"title":"Annibale Colombo Bed","description":"The Annibale Colombo Bed is a luxurious and elegant bed frame, crafted with high-quality materials for a comfortable and stylish bedroom.","category":"furniture","price":1899.99,"discountPercentage":8.57,"rating":4.77,"stock":88,"tags":["furniture","beds"],"brand":"Annibale Colombo","sku":"FUR-ANN-ANN-011","weight":10,"dimensions":{"width":28.16,"height":25.36,"depth":17.28},"warrantyInformation":"1 year warranty","shippingInformation":"Ships in 1 month","availabilityStatus":"In Stock","reviews":[{"rating":2,"comment":"Would not recommend!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Christopher West","reviewerEmail":"christopher.west@x.dummyjson.com"},{"rating":4,"comment":"Highly impressed!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Vivian Carter","reviewerEmail":"vivian.carter@x.dummyjson.com"},{"rating":1,"comment":"Poor quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Mason Wright","reviewerEmail":"mason.wright@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"3610757456581","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/furniture/annibale-colombo-bed/1.webp","https://cdn.dummyjson.com/product-images/furniture/annibale-colombo-bed/2.webp","https://cdn.dummyjson.com/product-images/furniture/annibale-colombo-bed/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/furniture/annibale-colombo-bed/thumbnail.webp"},{"id":12,"title":"Annibale Colombo Sofa","description":"The Annibale Colombo Sofa is a sophisticated and comfortable seating option, featuring exquisite design and premium upholstery for your living room.","category":"furniture","price":2499.99,"discountPercentage":14.4,"rating":3.92,"stock":60,"tags":["furniture","sofas"],"brand":"Annibale Colombo","sku":"FUR-ANN-ANN-012","weight":6,"dimensions":{"width":12.75,"height":20.55,"depth":19.06},"warrantyInformation":"Lifetime warranty","shippingInformation":"Ships in 1 week","availabilityStatus":"In Stock","reviews":[{"rating":3,"comment":"Very unhappy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Christian Perez","reviewerEmail":"christian.perez@x.dummyjson.com"},{"rating":5,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Lillian Bishop","reviewerEmail":"lillian.bishop@x.dummyjson.com"},{"rating":1,"comment":"Poor quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Lillian Simmons","reviewerEmail":"lillian.simmons@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"1777662847736","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/furniture/annibale-colombo-sofa/1.webp","https://cdn.dummyjson.com/product-images/furniture/annibale-colombo-sofa/2.webp","https://cdn.dummyjson.com/product-images/furniture/annibale-colombo-sofa/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/furniture/annibale-colombo-sofa/thumbnail.webp"},{"id":16,"title":"Apple","description":"Fresh and crisp apples, perfect for snacking or incorporating into various recipes.","category":"groceries","price":1.99,"discountPercentage":12.62,"rating":4.19,"stock":8,"tags":["fruits"],"sku":"GRO-BRD-APP-016","weight":9,"dimensions":{"width":13.66,"height":11.01,"depth":9.73},"warrantyInformation":"3 year warranty","shippingInformation":"Ships in 2 weeks","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Sophia Brown","reviewerEmail":"sophia.brown@x.dummyjson.com"},{"rating":1,"comment":"Very dissatisfied!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Scarlett Bowman","reviewerEmail":"scarlett.bowman@x.dummyjson.com"},{"rating":3,"comment":"Very unhappy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"William Gonzalez","reviewerEmail":"william.gonzalez@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":7,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"7962803553314","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/apple/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/apple/thumbnail.webp"},{"id":101,"title":"Apple AirPods Max Silver","description":"The Apple AirPods Max in Silver are premium over-ear headphones with high-fidelity audio, adaptive EQ, and active noise cancellation. Experience immersive sound in style.","category":"mobile-accessories","price":549.99,"discountPercentage":13.67,"rating":3.47,"stock":59,"tags":["electronics","over-ear headphones"],"brand":"Apple","sku":"MOB-APP-APP-101","weight":2,"dimensions":{"width":24.88,"height":14.9,"depth":27.54},"warrantyInformation":"No warranty","shippingInformation":"Ships in 2 weeks","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Henry Adams","reviewerEmail":"henry.adams@x.dummyjson.com"},{"rating":4,"comment":"Very happy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Elijah Cruz","reviewerEmail":"elijah.cruz@x.dummyjson.com"},{"rating":4,"comment":"Would buy again!","date":"2025-04-30T09:41:02.053Z","reviewerName":"William Lopez","reviewerEmail":"william.lopez@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"4062176053732","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/mobile-accessories/apple-airpods-max-silver/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/mobile-accessories/apple-airpods-max-silver/thumbnail.webp"},{"id":100,"title":"Apple Airpods","description":"The Apple Airpods offer a seamless wireless audio experience. With easy pairing, high-quality sound, and Siri integration, they are perfect for on-the-go listening.","category":"mobile-accessories","price":129.99,"discountPercentage":15.54,"rating":4.15,"stock":67,"tags":["electronics","wireless earphones"],"brand":"Apple","sku":"MOB-APP-APP-100","weight":4,"dimensions":{"width":25.79,"height":18.38,"depth":11.53},"warrantyInformation":"3 year warranty","shippingInformation":"Ships in 3-5 business days","availabilityStatus":"In Stock","reviews":[{"rating":3,"comment":"Would not buy again!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Christopher West","reviewerEmail":"christopher.west@x.dummyjson.com"},{"rating":5,"comment":"Great product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Emma Wilson","reviewerEmail":"emma.wilson@x.dummyjson.com"},{"rating":4,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Xavier Wright","reviewerEmail":"xavier.wright@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":4,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"1104115683955","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/mobile-accessories/apple-airpods/1.webp","https://cdn.dummyjson.com/product-images/mobile-accessories/apple-airpods/2.webp","https://cdn.dummyjson.com/product-images/mobile-accessories/apple-airpods/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/mobile-accessories/apple-airpods/thumbnail.webp"},{"id":102,"title":"Apple Airpower Wireless Charger","description":"The Apple AirPower Wireless Charger provides a convenient way to charge your compatible Apple devices wirelessly. Simply place your devices on the charging mat for effortless charging.","category":"mobile-accessories","price":79.99,"discountPercentage":4.48,"rating":3.68,"stock":1,"tags":["electronics","wireless chargers"],"brand":"Apple","sku":"MOB-APP-APP-102","weight":5,"dimensions":{"width":25.25,"height":25.44,"depth":10.98},"warrantyInformation":"2 year warranty","shippingInformation":"Ships in 1 week","availabilityStatus":"Low Stock","reviews":[{"rating":5,"comment":"Would buy again!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Christian Perez","reviewerEmail":"christian.perez@x.dummyjson.com"},{"rating":4,"comment":"Awesome product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Ruby Andrews","reviewerEmail":"ruby.andrews@x.dummyjson.com"},{"rating":3,"comment":"Not worth the price!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Harper Turner","reviewerEmail":"harper.turner@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":7,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"3323662242939","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/mobile-accessories/apple-airpower-wireless-charger/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/mobile-accessories/apple-airpower-wireless-charger/thumbnail.webp"},{"id":103,"title":"Apple HomePod Mini Cosmic Grey","description":"The Apple HomePod Mini in Cosmic Grey is a compact smart speaker that delivers impressive audio and integrates seamlessly with the Apple ecosystem for a smart home experience.","category":"mobile-accessories","price":99.99,"discountPercentage":18.1,"rating":4.62,"stock":27,"tags":["electronics","smart speakers"],"brand":"Apple","sku":"MOB-APP-APP-103","weight":10,"dimensions":{"width":16.02,"height":29.2,"depth":19.81},"warrantyInformation":"3 months warranty","shippingInformation":"Ships in 1 month","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Great product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Max Russell","reviewerEmail":"max.russell@x.dummyjson.com"},{"rating":3,"comment":"Would not buy again!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Isaac Lawrence","reviewerEmail":"isaac.lawrence@x.dummyjson.com"},{"rating":4,"comment":"Very pleased!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Avery Carter","reviewerEmail":"avery.carter@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":8,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"6135642608024","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/mobile-accessories/apple-homepod-mini-cosmic-grey/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/mobile-accessories/apple-homepod-mini-cosmic-grey/thumbnail.webp"},{"id":78,"title":"Apple MacBook Pro 14 Inch Space Grey","description":"The MacBook Pro 14 Inch in Space Grey is a powerful and sleek laptop, featuring Apple's M1 Pro chip for exceptional performance and a stunning Retina display.","category":"laptops","price":1999.99,"discountPercentage":4.69,"rating":3.65,"stock":24,"tags":["laptops","apple"],"brand":"Apple","sku":"LAP-APP-APP-078","weight":9,"dimensions":{"width":20.03,"height":9.54,"depth":14.82},"warrantyInformation":"3 year warranty","shippingInformation":"Ships in 2 weeks","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Very happy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Hazel Evans","reviewerEmail":"hazel.evans@x.dummyjson.com"},{"rating":5,"comment":"Very happy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Christopher West","reviewerEmail":"christopher.west@x.dummyjson.com"},{"rating":4,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Aubrey Garcia","reviewerEmail":"aubrey.garcia@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"5275211560367","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/laptops/apple-macbook-pro-14-inch-space-grey/1.webp","https://cdn.dummyjson.com/product-images/laptops/apple-macbook-pro-14-inch-space-grey/2.webp","https://cdn.dummyjson.com/product-images/laptops/apple-macbook-pro-14-inch-space-grey/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/laptops/apple-macbook-pro-14-inch-space-grey/thumbnail.webp"},{"id":105,"title":"Apple MagSafe Battery Pack","description":"The Apple MagSafe Battery Pack is a portable and convenient way to add extra battery life to your MagSafe-compatible iPhone. Attach it magnetically for a secure connection.","category":"mobile-accessories","price":99.99,"discountPercentage":17.17,"rating":3.62,"stock":1,"tags":["electronics","power banks"],"brand":"Apple","sku":"MOB-APP-APP-105","weight":6,"dimensions":{"width":15.4,"height":11.89,"depth":19.67},"warrantyInformation":"2 year warranty","shippingInformation":"Ships overnight","availabilityStatus":"Low Stock","reviews":[{"rating":2,"comment":"Would not recommend!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Stella Morris","reviewerEmail":"stella.morris@x.dummyjson.com"},{"rating":2,"comment":"Not as described!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Henry Adams","reviewerEmail":"henry.adams@x.dummyjson.com"},{"rating":5,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Cameron Burke","reviewerEmail":"cameron.burke@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":4,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"5157424897794","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/mobile-accessories/apple-magsafe-battery-pack/1.webp","https://cdn.dummyjson.com/product-images/mobile-accessories/apple-magsafe-battery-pack/2.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/mobile-accessories/apple-magsafe-battery-pack/thumbnail.webp"},{"id":106,"title":"Apple Watch Series 4 Gold","description":"The Apple Watch Series 4 in Gold is a stylish and advanced smartwatch with features like heart rate monitoring, fitness tracking, and a beautiful Retina display.","category":"mobile-accessories","price":349.99,"discountPercentage":12.02,"rating":2.74,"stock":33,"tags":["electronics","smartwatches"],"brand":"Apple","sku":"MOB-APP-APP-106","weight":6,"dimensions":{"width":27.69,"height":28.03,"depth":7.11},"warrantyInformation":"6 months warranty","shippingInformation":"Ships in 1 month","availabilityStatus":"In Stock","reviews":[{"rating":3,"comment":"Very unhappy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Chloe Morales","reviewerEmail":"chloe.morales@x.dummyjson.com"},{"rating":4,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Ava Harrison","reviewerEmail":"ava.harrison@x.dummyjson.com"},{"rating":4,"comment":"Would buy again!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Nicholas Bailey","reviewerEmail":"nicholas.bailey@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":3,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"3921248718888","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/mobile-accessories/apple-watch-series-4-gold/1.webp","https://cdn.dummyjson.com/product-images/mobile-accessories/apple-watch-series-4-gold/2.webp","https://cdn.dummyjson.com/product-images/mobile-accessories/apple-watch-series-4-gold/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/mobile-accessories/apple-watch-series-4-gold/thumbnail.webp"},{"id":104,"title":"Apple iPhone Charger","description":"The Apple iPhone Charger is a high-quality charger designed for fast and efficient charging of your iPhone. Ensure your device stays powered up and ready to go.","category":"mobile-accessories","price":19.99,"discountPercentage":18.52,"rating":4.15,"stock":31,"tags":["electronics","chargers"],"brand":"Apple","sku":"MOB-APP-APP-104","weight":1,"dimensions":{"width":13.63,"height":26.25,"depth":5.95},"warrantyInformation":"1 year warranty","shippingInformation":"Ships in 2 weeks","availabilityStatus":"In Stock","reviews":[{"rating":1,"comment":"Very disappointed!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Sadie Morales","reviewerEmail":"sadie.morales@x.dummyjson.com"},{"rating":5,"comment":"Great product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Lily Torres","reviewerEmail":"lily.torres@x.dummyjson.com"},{"rating":2,"comment":"Waste of money!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Luke Cooper","reviewerEmail":"luke.cooper@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":14,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"0879776541417","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/mobile-accessories/apple-iphone-charger/1.webp","https://cdn.dummyjson.com/product-images/mobile-accessories/apple-iphone-charger/2.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/mobile-accessories/apple-iphone-charger/thumbnail.webp"},{"id":79,"title":"Asus Zenbook Pro Dual Screen Laptop","description":"The Asus Zenbook Pro Dual Screen Laptop is a high-performance device with dual screens, providing productivity and versatility for creative professionals.","category":"laptops","price":1799.99,"discountPercentage":11.14,"rating":3.95,"stock":45,"tags":["laptops"],"brand":"Asus","sku":"LAP-ASU-ASU-079","weight":9,"dimensions":{"width":16.6,"height":11.49,"depth":10.89},"warrantyInformation":"3 year warranty","shippingInformation":"Ships in 1 month","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Very happy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Michael Johnson","reviewerEmail":"michael.johnson@x.dummyjson.com"},{"rating":5,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Zoe Bennett","reviewerEmail":"zoe.bennett@x.dummyjson.com"},{"rating":4,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Mila Hernandez","reviewerEmail":"mila.hernandez@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"7392988535158","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/laptops/asus-zenbook-pro-dual-screen-laptop/1.webp","https://cdn.dummyjson.com/product-images/laptops/asus-zenbook-pro-dual-screen-laptop/2.webp","https://cdn.dummyjson.com/product-images/laptops/asus-zenbook-pro-dual-screen-laptop/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/laptops/asus-zenbook-pro-dual-screen-laptop/thumbnail.webp"},{"id":118,"title":"Attitude Super Leaves Hand Soap","description":"Attitude Super Leaves Hand Soap is a natural and nourishing hand soap enriched with the goodness of super leaves. It cleanses and moisturizes your hands, leaving them feeling fresh and soft.","category":"skin-care","price":8.99,"discountPercentage":18.49,"rating":3.19,"stock":94,"tags":["personal care","hand soap"],"brand":"Attitude","sku":"SKI-ATT-ATT-118","weight":1,"dimensions":{"width":14.05,"height":8.3,"depth":16.62},"warrantyInformation":"6 months warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Liam Garcia","reviewerEmail":"liam.garcia@x.dummyjson.com"},{"rating":4,"comment":"Great product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Victoria McDonald","reviewerEmail":"victoria.mcdonald@x.dummyjson.com"},{"rating":5,"comment":"Very happy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Hannah Robinson","reviewerEmail":"hannah.robinson@x.dummyjson.com"}],"returnPolicy":"60 days return policy","minimumOrderQuantity":41,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"3566048905322","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/skin-care/attitude-super-leaves-hand-soap/1.webp","https://cdn.dummyjson.com/product-images/skin-care/attitude-super-leaves-hand-soap/2.webp","https://cdn.dummyjson.com/product-images/skin-care/attitude-super-leaves-hand-soap/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/skin-care/attitude-super-leaves-hand-soap/thumbnail.webp"},{"id":48,"title":"Bamboo Spatula","description":"The Bamboo Spatula is a versatile kitchen tool made from eco-friendly bamboo. Ideal for flipping, stirring, and serving various dishes.","category":"kitchen-accessories","price":7.99,"discountPercentage":2.84,"rating":3.27,"stock":37,"tags":["kitchen tools","utensils"],"sku":"KIT-BRD-BAM-048","weight":3,"dimensions":{"width":21.32,"height":23.03,"depth":25.94},"warrantyInformation":"1 month warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Awesome product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Lucas Ramirez","reviewerEmail":"lucas.ramirez@x.dummyjson.com"},{"rating":5,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Caleb Perkins","reviewerEmail":"caleb.perkins@x.dummyjson.com"},{"rating":4,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Nolan Gonzalez","reviewerEmail":"nolan.gonzalez@x.dummyjson.com"}],"returnPolicy":"60 days return policy","minimumOrderQuantity":29,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"3988181417733","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/kitchen-accessories/bamboo-spatula/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/kitchen-accessories/bamboo-spatula/thumbnail.webp"},{"id":138,"title":"Baseball Ball","description":"The Baseball Ball is a standard baseball used in baseball games. It features a durable leather cover and is designed for pitching, hitting, and fielding in the game of baseball.","category":"sports-accessories","price":8.99,"discountPercentage":1.71,"rating":2.57,"stock":100,"tags":["sports equipment","baseball"],"sku":"SPO-BRD-BAS-138","weight":5,"dimensions":{"width":14.42,"height":22.65,"depth":15.89},"warrantyInformation":"6 months warranty","shippingInformation":"Ships in 1 week","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Scarlett Wright","reviewerEmail":"scarlett.wright@x.dummyjson.com"},{"rating":4,"comment":"Great value for money!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Carter Baker","reviewerEmail":"carter.baker@x.dummyjson.com"},{"rating":1,"comment":"Poor quality!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Aria Flores","reviewerEmail":"aria.flores@x.dummyjson.com"}],"returnPolicy":"30 days return policy","minimumOrderQuantity":11,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"8981184448425","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/sports-accessories/baseball-ball/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/sports-accessories/baseball-ball/thumbnail.webp"},{"id":139,"title":"Baseball Glove","description":"The Baseball Glove is a protective glove worn by baseball players. It is designed to catch and field the baseball, providing players with comfort and control during the game.","category":"sports-accessories","price":24.99,"discountPercentage":2.9,"rating":3.96,"stock":22,"tags":["sports equipment","baseball"],"sku":"SPO-BRD-BAS-139","weight":1,"dimensions":{"width":23.84,"height":11.12,"depth":5.85},"warrantyInformation":"Lifetime warranty","shippingInformation":"Ships in 2 weeks","availabilityStatus":"In Stock","reviews":[{"rating":1,"comment":"Very unhappy with my purchase!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Hazel Gardner","reviewerEmail":"hazel.gardner@x.dummyjson.com"},{"rating":4,"comment":"Great value for money!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Scarlett Wright","reviewerEmail":"scarlett.wright@x.dummyjson.com"},{"rating":3,"comment":"Would not recommend!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Nathan Reed","reviewerEmail":"nathan.reed@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":8,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"1607433635330","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/sports-accessories/baseball-glove/1.webp","https://cdn.dummyjson.com/product-images/sports-accessories/baseball-glove/2.webp","https://cdn.dummyjson.com/product-images/sports-accessories/baseball-glove/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/sports-accessories/baseball-glove/thumbnail.webp"},{"id":140,"title":"Basketball","description":"The Basketball is a standard ball used in basketball games. It is designed for dribbling, shooting, and passing in the game of basketball, suitable for both indoor and outdoor play.","category":"sports-accessories","price":14.99,"discountPercentage":7.44,"rating":4.66,"stock":75,"tags":["sports equipment","basketball"],"sku":"SPO-BRD-BAS-140","weight":7,"dimensions":{"width":27.86,"height":10.64,"depth":18.75},"warrantyInformation":"1 year warranty","shippingInformation":"Ships in 1 week","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Mia Rodriguez","reviewerEmail":"mia.rodriguez@x.dummyjson.com"},{"rating":2,"comment":"Would not buy again!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Ella Adams","reviewerEmail":"ella.adams@x.dummyjson.com"},{"rating":4,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Aubrey Garcia","reviewerEmail":"aubrey.garcia@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":11,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"3219724919696","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/sports-accessories/basketball/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/sports-accessories/basketball/thumbnail.webp"},{"id":141,"title":"Basketball Rim","description":"The Basketball Rim is a sturdy hoop and net assembly mounted on a basketball backboard. It provides a target for shooting and scoring in the game of basketball.","category":"sports-accessories","price":39.99,"discountPercentage":7.74,"rating":4.6,"stock":43,"tags":["sports equipment","basketball"],"sku":"SPO-BRD-BAS-141","weight":1,"dimensions":{"width":15.83,"height":20.87,"depth":7.27},"warrantyInformation":"3 months warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Mason Wright","reviewerEmail":"mason.wright@x.dummyjson.com"},{"rating":5,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Tristan Scott","reviewerEmail":"tristan.scott@x.dummyjson.com"},{"rating":1,"comment":"Would not buy again!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Max Parker","reviewerEmail":"max.parker@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":9,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"6916173283925","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/sports-accessories/basketball-rim/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/sports-accessories/basketball-rim/thumbnail.webp"},{"id":107,"title":"Beats Flex Wireless Earphones","description":"The Beats Flex Wireless Earphones offer a comfortable and versatile audio experience. With magnetic earbuds and up to 12 hours of battery life, they are ideal for everyday use.","category":"mobile-accessories","price":49.99,"discountPercentage":5.73,"rating":4.24,"stock":50,"tags":["electronics","wireless earphones"],"brand":"Beats","sku":"MOB-BEA-BEA-107","weight":8,"dimensions":{"width":17.86,"height":25.74,"depth":23.09},"warrantyInformation":"1 year warranty","shippingInformation":"Ships in 1-2 business days","availabilityStatus":"In Stock","reviews":[{"rating":2,"comment":"Disappointing product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"William Gonzalez","reviewerEmail":"william.gonzalez@x.dummyjson.com"},{"rating":5,"comment":"Very pleased!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Gabriel Mitchell","reviewerEmail":"gabriel.mitchell@x.dummyjson.com"},{"rating":2,"comment":"Not worth the price!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Gabriel Adams","reviewerEmail":"gabriel.adams@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":17,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"1741271692174","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/mobile-accessories/beats-flex-wireless-earphones/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/mobile-accessories/beats-flex-wireless-earphones/thumbnail.webp"},{"id":13,"title":"Bedside Table African Cherry","description":"The Bedside Table in African Cherry is a stylish and functional addition to your bedroom, providing convenient storage space and a touch of elegance.","category":"furniture","price":299.99,"discountPercentage":19.09,"rating":2.87,"stock":64,"tags":["furniture","bedside tables"],"brand":"Furniture Co.","sku":"FUR-FUR-BED-013","weight":2,"dimensions":{"width":13.47,"height":24.99,"depth":27.35},"warrantyInformation":"5 year warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Aaliyah Hanson","reviewerEmail":"aaliyah.hanson@x.dummyjson.com"},{"rating":4,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Liam Smith","reviewerEmail":"liam.smith@x.dummyjson.com"},{"rating":4,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Avery Barnes","reviewerEmail":"avery.barnes@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":3,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"6441287925979","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/furniture/bedside-table-african-cherry/1.webp","https://cdn.dummyjson.com/product-images/furniture/bedside-table-african-cherry/2.webp","https://cdn.dummyjson.com/product-images/furniture/bedside-table-african-cherry/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/furniture/bedside-table-african-cherry/thumbnail.webp"},{"id":17,"title":"Beef Steak","description":"High-quality beef steak, great for grilling or cooking to your preferred level of doneness.","category":"groceries","price":12.99,"discountPercentage":9.61,"rating":4.47,"stock":86,"tags":["meat"],"sku":"GRO-BRD-BEE-017","weight":10,"dimensions":{"width":18.9,"height":5.77,"depth":18.57},"warrantyInformation":"3 year warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":3,"comment":"Would not recommend!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Eleanor Tyler","reviewerEmail":"eleanor.tyler@x.dummyjson.com"},{"rating":4,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Alexander Jones","reviewerEmail":"alexander.jones@x.dummyjson.com"},{"rating":5,"comment":"Great value for money!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Natalie Harris","reviewerEmail":"natalie.harris@x.dummyjson.com"}],"returnPolicy":"60 days return policy","minimumOrderQuantity":43,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"5640063409695","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/beef-steak/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/beef-steak/thumbnail.webp"},{"id":185,"title":"Black & Brown Slipper","description":"The Black & Brown Slipper is a comfortable and stylish choice for casual wear. Featuring a blend of black and brown colors, it adds a touch of sophistication to your relaxation.","category":"womens-shoes","price":19.99,"discountPercentage":3.33,"rating":2.53,"stock":3,"tags":["footwear","slippers"],"brand":"Comfort Trends","sku":"WOM-COM-BLA-185","weight":5,"dimensions":{"width":21.35,"height":26.21,"depth":17},"warrantyInformation":"Lifetime warranty","shippingInformation":"Ships in 1 month","availabilityStatus":"Low Stock","reviews":[{"rating":5,"comment":"Highly impressed!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Isaac Lawrence","reviewerEmail":"isaac.lawrence@x.dummyjson.com"},{"rating":2,"comment":"Not worth the price!","date":"2025-04-30T09:41:02.054Z","reviewerName":"William Gonzalez","reviewerEmail":"william.gonzalez@x.dummyjson.com"},{"rating":4,"comment":"Very happy with my purchase!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Sophia Jones","reviewerEmail":"sophia.jones@x.dummyjson.com"}],"returnPolicy":"60 days return policy","minimumOrderQuantity":47,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"5732146194724","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/womens-shoes/black-&-brown-slipper/1.webp","https://cdn.dummyjson.com/product-images/womens-shoes/black-&-brown-slipper/2.webp","https://cdn.dummyjson.com/product-images/womens-shoes/black-&-brown-slipper/3.webp","https://cdn.dummyjson.com/product-images/womens-shoes/black-&-brown-slipper/4.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/womens-shoes/black-&-brown-slipper/thumbnail.webp"},{"id":49,"title":"Black Aluminium Cup","description":"The Black Aluminium Cup is a stylish and durable cup suitable for both hot and cold beverages. Its sleek black design adds a modern touch to your drinkware collection.","category":"kitchen-accessories","price":5.99,"discountPercentage":15.65,"rating":4.46,"stock":75,"tags":["drinkware","cups"],"sku":"KIT-BRD-BLA-049","weight":7,"dimensions":{"width":5.88,"height":5.11,"depth":10.03},"warrantyInformation":"1 year warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":3,"comment":"Very disappointed!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Alexander Hernandez","reviewerEmail":"alexander.hernandez@x.dummyjson.com"},{"rating":5,"comment":"Great value for money!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Aurora Rodriguez","reviewerEmail":"aurora.rodriguez@x.dummyjson.com"},{"rating":1,"comment":"Not worth the price!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Benjamin Foster","reviewerEmail":"benjamin.foster@x.dummyjson.com"}],"returnPolicy":"30 days return policy","minimumOrderQuantity":48,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"5606164195748","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/kitchen-accessories/black-aluminium-cup/1.webp","https://cdn.dummyjson.com/product-images/kitchen-accessories/black-aluminium-cup/2.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/kitchen-accessories/black-aluminium-cup/thumbnail.webp"},{"id":154,"title":"Black Sun Glasses","description":"The Black Sun Glasses are a classic and stylish choice, featuring a sleek black frame and tinted lenses. They provide both UV protection and a fashionable look.","category":"sunglasses","price":29.99,"discountPercentage":4.94,"rating":4.41,"stock":60,"tags":["eyewear","sunglasses"],"brand":"Fashion Shades","sku":"SUN-FAS-BLA-154","weight":1,"dimensions":{"width":18.51,"height":15.69,"depth":10.11},"warrantyInformation":"No warranty","shippingInformation":"Ships in 1-2 business days","availabilityStatus":"In Stock","reviews":[{"rating":3,"comment":"Would not recommend!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Jonathan Pierce","reviewerEmail":"jonathan.pierce@x.dummyjson.com"},{"rating":2,"comment":"Disappointing product!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Owen Fisher","reviewerEmail":"owen.fisher@x.dummyjson.com"},{"rating":4,"comment":"Very happy with my purchase!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Samantha Martinez","reviewerEmail":"samantha.martinez@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":17,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"1045032983803","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/sunglasses/black-sun-glasses/1.webp","https://cdn.dummyjson.com/product-images/sunglasses/black-sun-glasses/2.webp","https://cdn.dummyjson.com/product-images/sunglasses/black-sun-glasses/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/sunglasses/black-sun-glasses/thumbnail.webp"},{"id":50,"title":"Black Whisk","description":"The Black Whisk is a kitchen essential for whisking and beating ingredients. Its ergonomic handle and sleek design make it a practical and stylish tool.","category":"kitchen-accessories","price":9.99,"discountPercentage":10.24,"rating":3.9,"stock":73,"tags":["kitchen tools","utensils"],"sku":"KIT-BRD-BLA-050","weight":1,"dimensions":{"width":13.03,"height":5.99,"depth":20.64},"warrantyInformation":"3 months warranty","shippingInformation":"Ships in 1 month","availabilityStatus":"In Stock","reviews":[{"rating":3,"comment":"Not worth the price!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Cameron Perez","reviewerEmail":"cameron.perez@x.dummyjson.com"},{"rating":1,"comment":"Waste of money!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Benjamin Foster","reviewerEmail":"benjamin.foster@x.dummyjson.com"},{"rating":5,"comment":"Very pleased!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Paisley Bell","reviewerEmail":"paisley.bell@x.dummyjson.com"}],"returnPolicy":"30 days return policy","minimumOrderQuantity":40,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"3112495795209","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/kitchen-accessories/black-whisk/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/kitchen-accessories/black-whisk/thumbnail.webp"},{"id":177,"title":"Black Women's Gown","description":"The Black Women's Gown is an elegant and timeless evening gown. With a sleek black design, it's perfect for formal events and special occasions, exuding sophistication and style.","category":"womens-dresses","price":129.99,"discountPercentage":10.48,"rating":3.64,"stock":25,"tags":["clothing","gowns"],"sku":"WOM-BRD-BLA-177","weight":2,"dimensions":{"width":7.86,"height":9.02,"depth":25.82},"warrantyInformation":"Lifetime warranty","shippingInformation":"Ships in 1 week","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Great value for money!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Ethan Fletcher","reviewerEmail":"ethan.fletcher@x.dummyjson.com"},{"rating":3,"comment":"Very dissatisfied!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Julian Newton","reviewerEmail":"julian.newton@x.dummyjson.com"},{"rating":5,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Savannah Gomez","reviewerEmail":"savannah.gomez@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":5,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"0630346013554","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/womens-dresses/black-women's-gown/1.webp","https://cdn.dummyjson.com/product-images/womens-dresses/black-women's-gown/2.webp","https://cdn.dummyjson.com/product-images/womens-dresses/black-women's-gown/3.webp","https://cdn.dummyjson.com/product-images/womens-dresses/black-women's-gown/4.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/womens-dresses/black-women's-gown/thumbnail.webp"},{"id":83,"title":"Blue & Black Check Shirt","description":"The Blue & Black Check Shirt is a stylish and comfortable men's shirt featuring a classic check pattern. Made from high-quality fabric, it's suitable for both casual and semi-formal occasions.","category":"mens-shirts","price":29.99,"discountPercentage":15.35,"rating":3.64,"stock":38,"tags":["clothing","men's shirts"],"brand":"Fashion Trends","sku":"MEN-FAS-BLU-083","weight":4,"dimensions":{"width":27.49,"height":23.73,"depth":28.61},"warrantyInformation":"3 year warranty","shippingInformation":"Ships in 3-5 business days","availabilityStatus":"In Stock","reviews":[{"rating":1,"comment":"Waste of money!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Logan Lee","reviewerEmail":"logan.lee@x.dummyjson.com"},{"rating":5,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Zachary Lee","reviewerEmail":"zachary.lee@x.dummyjson.com"},{"rating":4,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Aurora Rodriguez","reviewerEmail":"aurora.rodriguez@x.dummyjson.com"}],"returnPolicy":"30 days return policy","minimumOrderQuantity":18,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"7148674604957","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/mens-shirts/blue-&-black-check-shirt/1.webp","https://cdn.dummyjson.com/product-images/mens-shirts/blue-&-black-check-shirt/2.webp","https://cdn.dummyjson.com/product-images/mens-shirts/blue-&-black-check-shirt/3.webp","https://cdn.dummyjson.com/product-images/mens-shirts/blue-&-black-check-shirt/4.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/mens-shirts/blue-&-black-check-shirt/thumbnail.webp"}],"total":194,"skip":0,"limit":30}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| undefined | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 3 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Retrieves a complete list of all available product categories in the system.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/products/categories`
## Authentication
- **Required**: No
- This is a public endpoint that doesn't require authentication
## Parameters
- No parameters required
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
[
{
"slug": "beauty",
"name": "Beauty",
"url": "https://dummyjson.com/products/category/beauty"
},
{
"slug": "fragrances",
"name": "Fragrances",
"url": "https://dummyjson.com/products/category/fragrances"
}
]
```
## Tests Included
- Validates response status code is 200
- Verifies response is an array
- Checks each category has required fields (slug, name, url)
- Confirms categories are not empty
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNzksImV4cCI6MTc2OTk2NDc3OX0.au6-HNuanDOW1Q3iDl4MYxifr14HAULtIcahDIP9Pos |
| Content-Type | text/plain |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 782b1313-85e1-4fa5-a6ad-2b02691a047d |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 61 |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExODAsImV4cCI6MTc2OTk2Mjk4MH0.a421am7-9c4bgdogT92hR4YICGdQAmH3mBrPbwPtKz8; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExODAsImV4cCI6MTc3MjU1MzE4MH0.YSCAHcUv1I0PH72s6qGZ-QdElXc_Xd9a8mvH1Vr61Zs |
{
"username": "emilys",
"password": "emilyspass"
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:02 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 96 |
| x-ratelimit-reset | 1769961189 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"9d0-QmRzWSDU7v9xEumlsVypMgUm22A" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=G5oMuGhSYQb2WOcZq8GAS1X79bDoQ1%2BBb5Os57WvTsnJRm0cM5o4TIUyDvIjLTjAZWlIG5JYbx3CbSByKrAlGBNgvttLMtefVU%2BG8gg%3D"}]} |
| CF-RAY | 9c729e8b58d72891-AMM |
[{"slug":"beauty","name":"Beauty","url":"https://dummyjson.com/products/category/beauty"},{"slug":"fragrances","name":"Fragrances","url":"https://dummyjson.com/products/category/fragrances"},{"slug":"furniture","name":"Furniture","url":"https://dummyjson.com/products/category/furniture"},{"slug":"groceries","name":"Groceries","url":"https://dummyjson.com/products/category/groceries"},{"slug":"home-decoration","name":"Home Decoration","url":"https://dummyjson.com/products/category/home-decoration"},{"slug":"kitchen-accessories","name":"Kitchen Accessories","url":"https://dummyjson.com/products/category/kitchen-accessories"},{"slug":"laptops","name":"Laptops","url":"https://dummyjson.com/products/category/laptops"},{"slug":"mens-shirts","name":"Mens Shirts","url":"https://dummyjson.com/products/category/mens-shirts"},{"slug":"mens-shoes","name":"Mens Shoes","url":"https://dummyjson.com/products/category/mens-shoes"},{"slug":"mens-watches","name":"Mens Watches","url":"https://dummyjson.com/products/category/mens-watches"},{"slug":"mobile-accessories","name":"Mobile Accessories","url":"https://dummyjson.com/products/category/mobile-accessories"},{"slug":"motorcycle","name":"Motorcycle","url":"https://dummyjson.com/products/category/motorcycle"},{"slug":"skin-care","name":"Skin Care","url":"https://dummyjson.com/products/category/skin-care"},{"slug":"smartphones","name":"Smartphones","url":"https://dummyjson.com/products/category/smartphones"},{"slug":"sports-accessories","name":"Sports Accessories","url":"https://dummyjson.com/products/category/sports-accessories"},{"slug":"sunglasses","name":"Sunglasses","url":"https://dummyjson.com/products/category/sunglasses"},{"slug":"tablets","name":"Tablets","url":"https://dummyjson.com/products/category/tablets"},{"slug":"tops","name":"Tops","url":"https://dummyjson.com/products/category/tops"},{"slug":"vehicle","name":"Vehicle","url":"https://dummyjson.com/products/category/vehicle"},{"slug":"womens-bags","name":"Womens Bags","url":"https://dummyjson.com/products/category/womens-bags"},{"slug":"womens-dresses","name":"Womens Dresses","url":"https://dummyjson.com/products/category/womens-dresses"},{"slug":"womens-jewellery","name":"Womens Jewellery","url":"https://dummyjson.com/products/category/womens-jewellery"},{"slug":"womens-shoes","name":"Womens Shoes","url":"https://dummyjson.com/products/category/womens-shoes"},{"slug":"womens-watches","name":"Womens Watches","url":"https://dummyjson.com/products/category/womens-watches"}]
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Retrieves a simplified list of product category names/slugs without additional metadata.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/products/category-list`
## Authentication
- **Required**: No
- This is a public endpoint that doesn't require authentication
## Parameters
- No parameters required
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
[
"beauty",
"fragrances",
"furniture",
"groceries",
"home-decoration",
"kitchen-accessories"
]
```
## Tests Included
- Validates response status code is 200
- Verifies response is an array of strings
- Checks array contains category names
- Confirms list is not empty
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNzksImV4cCI6MTc2OTk2NDc3OX0.au6-HNuanDOW1Q3iDl4MYxifr14HAULtIcahDIP9Pos |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 33eb38b1-25e9-4bb7-b53a-aebba278de80 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExODAsImV4cCI6MTc2OTk2Mjk4MH0.a421am7-9c4bgdogT92hR4YICGdQAmH3mBrPbwPtKz8; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExODAsImV4cCI6MTc3MjU1MzE4MH0.YSCAHcUv1I0PH72s6qGZ-QdElXc_Xd9a8mvH1Vr61Zs |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:02 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 92 |
| x-ratelimit-reset | 1769961183 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"156-8GSmapwnkZIOOiVZRKE52oLajsg" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=FDDzpXoVzKbinLBD3eJjQ80JKbIOLuJkmIkXFf5nTZCiVjzbgnRWeoY6AnKMxfTDG5sdtznkwPJ4jI9OGhqD7tMy7z9XHRKkb%2F44GoI%3D"}]} |
| Content-Encoding | br |
| CF-RAY | 9c729e8cea542891-AMM |
["beauty","fragrances","furniture","groceries","home-decoration","kitchen-accessories","laptops","mens-shirts","mens-shoes","mens-watches","mobile-accessories","motorcycle","skin-care","smartphones","sports-accessories","sunglasses","tablets","tops","vehicle","womens-bags","womens-dresses","womens-jewellery","womens-shoes","womens-watches"]
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNzksImV4cCI6MTc2OTk2NDc3OX0.au6-HNuanDOW1Q3iDl4MYxifr14HAULtIcahDIP9Pos |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | ff6f0a87-9262-4033-b1a3-0c4d85ca8b88 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExODAsImV4cCI6MTc2OTk2Mjk4MH0.a421am7-9c4bgdogT92hR4YICGdQAmH3mBrPbwPtKz8; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExODAsImV4cCI6MTc3MjU1MzE4MH0.YSCAHcUv1I0PH72s6qGZ-QdElXc_Xd9a8mvH1Vr61Zs |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:02 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 91 |
| x-ratelimit-reset | 1769961183 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"38-zuKX0Tdz5jj2uKVDzDwMn/UTK0c" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=6i0X2TrPasZYW61KXeRRdK8hFtxyQjDeOUb5wUNe5D3CpHItnQJ2wXsWU5tdSZjORhiBP32IF6OITG2NMEIghvXXiaMgsh%2Ff8UBrRt8%3D"}]} |
| Content-Encoding | br |
| CF-RAY | 9c729e8e8c172891-AMM |
{"message":"Product with id 'category-array' not found"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 404 | 1 | 0 | 0 |
| Response has error or empty products array | 1 | 0 | 0 |
| Error message exists | 1 | 0 | 0 |
| Total | 3 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Retrieves all products that belong to a specific category.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/products/category/smartphones`
## Authentication
- **Required**: No
- This is a public endpoint that doesn't require authentication
## Parameters
### Path Variables
- `category` (required) - The category slug to filter products by (e.g., smartphones, laptops, beauty)
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
{
"products": [
{
"id": 1,
"title": "Product Name",
"category": "smartphones",
"price": 549,
...
}
],
"total": 5,
"skip": 0,
"limit": 30
}
```
## Tests Included
- Validates response status code is 200
- Verifies all products belong to requested category
- Checks products array structure
- Confirms pagination metadata is present
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNzksImV4cCI6MTc2OTk2NDc3OX0.au6-HNuanDOW1Q3iDl4MYxifr14HAULtIcahDIP9Pos |
| Content-Type | text/plain |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 51525772-d1b3-4b31-aa98-1424e71d7752 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 61 |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExODAsImV4cCI6MTc2OTk2Mjk4MH0.a421am7-9c4bgdogT92hR4YICGdQAmH3mBrPbwPtKz8; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExODAsImV4cCI6MTc3MjU1MzE4MH0.YSCAHcUv1I0PH72s6qGZ-QdElXc_Xd9a8mvH1Vr61Zs |
{
"username": "emilys",
"password": "emilyspass"
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:02 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 92 |
| x-ratelimit-reset | 1769961187 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"65a9-15t+98sxzVSOrDMD753lm6EmGiw" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=657QuNakg9vyS6q2BNAcJeNoLHXxk%2Bi%2F4k93%2BNXdapnIof5qC2WTrC9oIwMC0f1VGh%2BHwrSgSq0VobhWIFpYnaC7ofoJ%2BaYl4E5yflU%3D"}]} |
| CF-RAY | 9c729e902e112891-AMM |
{"products":[{"id":121,"title":"iPhone 5s","description":"The iPhone 5s is a classic smartphone known for its compact design and advanced features during its release. While it's an older model, it still provides a reliable user experience.","category":"smartphones","price":199.99,"discountPercentage":12.91,"rating":2.83,"stock":25,"tags":["smartphones","apple"],"brand":"Apple","sku":"SMA-APP-IPH-121","weight":2,"dimensions":{"width":5.29,"height":18.38,"depth":17.72},"warrantyInformation":"Lifetime warranty","shippingInformation":"Ships in 1 month","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Jace Smith","reviewerEmail":"jace.smith@x.dummyjson.com"},{"rating":1,"comment":"Not as described!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Logan Torres","reviewerEmail":"logan.torres@x.dummyjson.com"},{"rating":5,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Harper Kelly","reviewerEmail":"harper.kelly@x.dummyjson.com"}],"returnPolicy":"60 days return policy","minimumOrderQuantity":3,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"8814683940853","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/iphone-5s/1.webp","https://cdn.dummyjson.com/product-images/smartphones/iphone-5s/2.webp","https://cdn.dummyjson.com/product-images/smartphones/iphone-5s/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/iphone-5s/thumbnail.webp"},{"id":122,"title":"iPhone 6","description":"The iPhone 6 is a stylish and capable smartphone with a larger display and improved performance. It introduced new features and design elements, making it a popular choice in its time.","category":"smartphones","price":299.99,"discountPercentage":6.69,"rating":3.41,"stock":60,"tags":["smartphones","apple"],"brand":"Apple","sku":"SMA-APP-IPH-122","weight":7,"dimensions":{"width":11,"height":9.1,"depth":9.67},"warrantyInformation":"1 month warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":3,"comment":"Disappointing product!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Stella Morris","reviewerEmail":"stella.morris@x.dummyjson.com"},{"rating":4,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Nolan Gonzalez","reviewerEmail":"nolan.gonzalez@x.dummyjson.com"},{"rating":5,"comment":"Great value for money!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Benjamin Foster","reviewerEmail":"benjamin.foster@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":5,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"9922357685013","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/iphone-6/1.webp","https://cdn.dummyjson.com/product-images/smartphones/iphone-6/2.webp","https://cdn.dummyjson.com/product-images/smartphones/iphone-6/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/iphone-6/thumbnail.webp"},{"id":123,"title":"iPhone 13 Pro","description":"The iPhone 13 Pro is a cutting-edge smartphone with a powerful camera system, high-performance chip, and stunning display. It offers advanced features for users who demand top-notch technology.","category":"smartphones","price":1099.99,"discountPercentage":9.37,"rating":4.12,"stock":56,"tags":["smartphones","apple"],"brand":"Apple","sku":"SMA-APP-IPH-123","weight":8,"dimensions":{"width":12.63,"height":5.28,"depth":14.29},"warrantyInformation":"3 year warranty","shippingInformation":"Ships in 2 weeks","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Would buy again!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Christian Perez","reviewerEmail":"christian.perez@x.dummyjson.com"},{"rating":3,"comment":"Not worth the price!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Liam Gonzalez","reviewerEmail":"liam.gonzalez@x.dummyjson.com"},{"rating":5,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Tristan Scott","reviewerEmail":"tristan.scott@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"4998438802308","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/iphone-13-pro/1.webp","https://cdn.dummyjson.com/product-images/smartphones/iphone-13-pro/2.webp","https://cdn.dummyjson.com/product-images/smartphones/iphone-13-pro/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/iphone-13-pro/thumbnail.webp"},{"id":124,"title":"iPhone X","description":"The iPhone X is a flagship smartphone featuring a bezel-less OLED display, facial recognition technology (Face ID), and impressive performance. It represents a milestone in iPhone design and innovation.","category":"smartphones","price":899.99,"discountPercentage":19.59,"rating":2.51,"stock":37,"tags":["smartphones","apple"],"brand":"Apple","sku":"SMA-APP-IPH-124","weight":1,"dimensions":{"width":21.88,"height":24.19,"depth":14.19},"warrantyInformation":"3 months warranty","shippingInformation":"Ships in 3-5 business days","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Tyler Davis","reviewerEmail":"tyler.davis@x.dummyjson.com"},{"rating":5,"comment":"Great product!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Aria Parker","reviewerEmail":"aria.parker@x.dummyjson.com"},{"rating":2,"comment":"Not as described!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Lily Torres","reviewerEmail":"lily.torres@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":2,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"3034949322264","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/iphone-x/1.webp","https://cdn.dummyjson.com/product-images/smartphones/iphone-x/2.webp","https://cdn.dummyjson.com/product-images/smartphones/iphone-x/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/iphone-x/thumbnail.webp"},{"id":125,"title":"Oppo A57","description":"The Oppo A57 is a mid-range smartphone known for its sleek design and capable features. It offers a balance of performance and affordability, making it a popular choice.","category":"smartphones","price":249.99,"discountPercentage":2.43,"rating":3.94,"stock":19,"tags":["smartphones","oppo"],"brand":"Oppo","sku":"SMA-OPP-OPP-125","weight":5,"dimensions":{"width":7.2,"height":10.74,"depth":23.68},"warrantyInformation":"Lifetime warranty","shippingInformation":"Ships in 3-5 business days","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Scarlett Wright","reviewerEmail":"scarlett.wright@x.dummyjson.com"},{"rating":5,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Jacob Cooper","reviewerEmail":"jacob.cooper@x.dummyjson.com"},{"rating":2,"comment":"Poor quality!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Zoe Nicholson","reviewerEmail":"zoe.nicholson@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":3,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"0651223722522","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/oppo-a57/1.webp","https://cdn.dummyjson.com/product-images/smartphones/oppo-a57/2.webp","https://cdn.dummyjson.com/product-images/smartphones/oppo-a57/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/oppo-a57/thumbnail.webp"},{"id":126,"title":"Oppo F19 Pro Plus","description":"The Oppo F19 Pro Plus is a feature-rich smartphone with a focus on camera capabilities. It boasts advanced photography features and a powerful performance for a premium user experience.","category":"smartphones","price":399.99,"discountPercentage":18.64,"rating":3.51,"stock":78,"tags":["smartphones","oppo"],"brand":"Oppo","sku":"SMA-OPP-OPP-126","weight":6,"dimensions":{"width":6.78,"height":25.17,"depth":8.4},"warrantyInformation":"3 year warranty","shippingInformation":"Ships in 1 week","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Very happy with my purchase!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Emily Johnson","reviewerEmail":"emily.johnson@x.dummyjson.com"},{"rating":5,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Jaxon Barnes","reviewerEmail":"jaxon.barnes@x.dummyjson.com"},{"rating":4,"comment":"Would buy again!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Nova Cooper","reviewerEmail":"nova.cooper@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"8576893968169","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/oppo-f19-pro-plus/1.webp","https://cdn.dummyjson.com/product-images/smartphones/oppo-f19-pro-plus/2.webp","https://cdn.dummyjson.com/product-images/smartphones/oppo-f19-pro-plus/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/oppo-f19-pro-plus/thumbnail.webp"},{"id":127,"title":"Oppo K1","description":"The Oppo K1 series offers a range of smartphones with various features and specifications. Known for their stylish design and reliable performance, the Oppo K1 series caters to diverse user preferences.","category":"smartphones","price":299.99,"discountPercentage":18.29,"rating":4.25,"stock":55,"tags":["smartphones","oppo"],"brand":"Oppo","sku":"SMA-OPP-OPP-127","weight":5,"dimensions":{"width":13.89,"height":10.63,"depth":16.6},"warrantyInformation":"1 month warranty","shippingInformation":"Ships in 1-2 business days","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Very pleased!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Christopher West","reviewerEmail":"christopher.west@x.dummyjson.com"},{"rating":4,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Mia Miller","reviewerEmail":"mia.miller@x.dummyjson.com"},{"rating":2,"comment":"Very dissatisfied!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Ella Adams","reviewerEmail":"ella.adams@x.dummyjson.com"}],"returnPolicy":"30 days return policy","minimumOrderQuantity":5,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"3106827888743","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/oppo-k1/1.webp","https://cdn.dummyjson.com/product-images/smartphones/oppo-k1/2.webp","https://cdn.dummyjson.com/product-images/smartphones/oppo-k1/3.webp","https://cdn.dummyjson.com/product-images/smartphones/oppo-k1/4.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/oppo-k1/thumbnail.webp"},{"id":128,"title":"Realme C35","description":"The Realme C35 is a budget-friendly smartphone with a focus on providing essential features for everyday use. It offers a reliable performance and user-friendly experience.","category":"smartphones","price":149.99,"discountPercentage":15.3,"rating":4.2,"stock":48,"tags":["smartphones","realme"],"brand":"Realme","sku":"SMA-REA-REA-128","weight":2,"dimensions":{"width":25.28,"height":8.14,"depth":29.53},"warrantyInformation":"3 year warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Great product!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Penelope King","reviewerEmail":"penelope.king@x.dummyjson.com"},{"rating":2,"comment":"Very unhappy with my purchase!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Asher Scott","reviewerEmail":"asher.scott@x.dummyjson.com"},{"rating":4,"comment":"Highly impressed!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Henry Adams","reviewerEmail":"henry.adams@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":3,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"7825844344364","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/realme-c35/1.webp","https://cdn.dummyjson.com/product-images/smartphones/realme-c35/2.webp","https://cdn.dummyjson.com/product-images/smartphones/realme-c35/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/realme-c35/thumbnail.webp"},{"id":129,"title":"Realme X","description":"The Realme X is a mid-range smartphone known for its sleek design and impressive display. It offers a good balance of performance and camera capabilities for users seeking a quality device.","category":"smartphones","price":299.99,"discountPercentage":6.95,"rating":3.7,"stock":12,"tags":["smartphones","realme"],"brand":"Realme","sku":"SMA-REA-REA-129","weight":4,"dimensions":{"width":25.59,"height":21.42,"depth":12.75},"warrantyInformation":"1 month warranty","shippingInformation":"Ships in 3-5 business days","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Would buy again!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Hazel Evans","reviewerEmail":"hazel.evans@x.dummyjson.com"},{"rating":5,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Brayden Fleming","reviewerEmail":"brayden.fleming@x.dummyjson.com"},{"rating":5,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Madison Stewart","reviewerEmail":"madison.stewart@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":3,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"4948452391831","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/realme-x/1.webp","https://cdn.dummyjson.com/product-images/smartphones/realme-x/2.webp","https://cdn.dummyjson.com/product-images/smartphones/realme-x/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/realme-x/thumbnail.webp"},{"id":130,"title":"Realme XT","description":"The Realme XT is a feature-rich smartphone with a focus on camera technology. It comes equipped with advanced camera sensors, delivering high-quality photos and videos for photography enthusiasts.","category":"smartphones","price":349.99,"discountPercentage":11.51,"rating":4.58,"stock":80,"tags":["smartphones","realme"],"brand":"Realme","sku":"SMA-REA-REA-130","weight":3,"dimensions":{"width":24.98,"height":26.73,"depth":6.5},"warrantyInformation":"3 year warranty","shippingInformation":"Ships in 1 month","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Emily Brown","reviewerEmail":"emily.brown@x.dummyjson.com"},{"rating":3,"comment":"Not as described!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Ella Cook","reviewerEmail":"ella.cook@x.dummyjson.com"},{"rating":5,"comment":"Would buy again!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Layla Sullivan","reviewerEmail":"layla.sullivan@x.dummyjson.com"}],"returnPolicy":"60 days return policy","minimumOrderQuantity":3,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"6151817227632","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/realme-xt/1.webp","https://cdn.dummyjson.com/product-images/smartphones/realme-xt/2.webp","https://cdn.dummyjson.com/product-images/smartphones/realme-xt/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/realme-xt/thumbnail.webp"},{"id":131,"title":"Samsung Galaxy S7","description":"The Samsung Galaxy S7 is a flagship smartphone known for its sleek design and advanced features. It features a high-resolution display, powerful camera, and robust performance.","category":"smartphones","price":299.99,"discountPercentage":19.55,"rating":3.3,"stock":67,"tags":["smartphones","samsung galaxy"],"brand":"Samsung","sku":"SMA-SAM-SAM-131","weight":10,"dimensions":{"width":13.55,"height":24.24,"depth":5.63},"warrantyInformation":"3 months warranty","shippingInformation":"Ships in 3-5 business days","availabilityStatus":"In Stock","reviews":[{"rating":1,"comment":"Not as described!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Julian James","reviewerEmail":"julian.james@x.dummyjson.com"},{"rating":4,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Lucas Gordon","reviewerEmail":"lucas.gordon@x.dummyjson.com"},{"rating":4,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Ava Taylor","reviewerEmail":"ava.taylor@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"7557912146622","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s7/1.webp","https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s7/2.webp","https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s7/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s7/thumbnail.webp"},{"id":132,"title":"Samsung Galaxy S8","description":"The Samsung Galaxy S8 is a premium smartphone with an Infinity Display, offering a stunning visual experience. It boasts advanced camera capabilities and cutting-edge technology.","category":"smartphones","price":499.99,"discountPercentage":19.45,"rating":4.4,"stock":0,"tags":["smartphones","samsung galaxy"],"brand":"Samsung","sku":"SMA-SAM-SAM-132","weight":6,"dimensions":{"width":23.05,"height":26.88,"depth":15.73},"warrantyInformation":"2 year warranty","shippingInformation":"Ships in 1 week","availabilityStatus":"Out of Stock","reviews":[{"rating":4,"comment":"Highly impressed!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Owen Fisher","reviewerEmail":"owen.fisher@x.dummyjson.com"},{"rating":4,"comment":"Highly impressed!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Clara Berry","reviewerEmail":"clara.berry@x.dummyjson.com"},{"rating":4,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Tyler Davis","reviewerEmail":"tyler.davis@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":4,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"5995499013336","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s8/1.webp","https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s8/2.webp","https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s8/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s8/thumbnail.webp"},{"id":133,"title":"Samsung Galaxy S10","description":"The Samsung Galaxy S10 is a flagship device featuring a dynamic AMOLED display, versatile camera system, and powerful performance. It represents innovation and excellence in smartphone technology.","category":"smartphones","price":699.99,"discountPercentage":5.59,"rating":3.06,"stock":19,"tags":["smartphones","samsung galaxy"],"brand":"Samsung","sku":"SMA-SAM-SAM-133","weight":9,"dimensions":{"width":27.41,"height":15.26,"depth":27.02},"warrantyInformation":"No warranty","shippingInformation":"Ships in 2 weeks","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Tristan Scott","reviewerEmail":"tristan.scott@x.dummyjson.com"},{"rating":5,"comment":"Would buy again!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Christopher West","reviewerEmail":"christopher.west@x.dummyjson.com"},{"rating":2,"comment":"Would not recommend!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Amelia Perez","reviewerEmail":"amelia.perez@x.dummyjson.com"}],"returnPolicy":"30 days return policy","minimumOrderQuantity":2,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"4676898229465","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s10/1.webp","https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s10/2.webp","https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s10/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s10/thumbnail.webp"},{"id":134,"title":"Vivo S1","description":"The Vivo S1 is a stylish and mid-range smartphone offering a blend of design and performance. It features a vibrant display, capable camera system, and reliable functionality.","category":"smartphones","price":249.99,"discountPercentage":10.17,"rating":3.5,"stock":50,"tags":["smartphones","vivo"],"brand":"Vivo","sku":"SMA-VIV-VIV-134","weight":4,"dimensions":{"width":14.06,"height":11.79,"depth":6.78},"warrantyInformation":"6 months warranty","shippingInformation":"Ships in 3-5 business days","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Samantha Martinez","reviewerEmail":"samantha.martinez@x.dummyjson.com"},{"rating":3,"comment":"Very disappointed!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Logan Lee","reviewerEmail":"logan.lee@x.dummyjson.com"},{"rating":4,"comment":"Would buy again!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Sophia Jones","reviewerEmail":"sophia.jones@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"8575699153333","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/vivo-s1/1.webp","https://cdn.dummyjson.com/product-images/smartphones/vivo-s1/2.webp","https://cdn.dummyjson.com/product-images/smartphones/vivo-s1/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/vivo-s1/thumbnail.webp"},{"id":135,"title":"Vivo V9","description":"The Vivo V9 is a smartphone known for its sleek design and emphasis on capturing high-quality selfies. It features a notch display, dual-camera setup, and a modern design.","category":"smartphones","price":299.99,"discountPercentage":17.67,"rating":3.6,"stock":82,"tags":["smartphones","vivo"],"brand":"Vivo","sku":"SMA-VIV-VIV-135","weight":4,"dimensions":{"width":19.85,"height":21.83,"depth":13.04},"warrantyInformation":"2 year warranty","shippingInformation":"Ships in 1 month","availabilityStatus":"In Stock","reviews":[{"rating":2,"comment":"Very unhappy with my purchase!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Logan Lawson","reviewerEmail":"logan.lawson@x.dummyjson.com"},{"rating":5,"comment":"Awesome product!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Layla Young","reviewerEmail":"layla.young@x.dummyjson.com"},{"rating":4,"comment":"Great value for money!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Asher Scott","reviewerEmail":"asher.scott@x.dummyjson.com"}],"returnPolicy":"60 days return policy","minimumOrderQuantity":2,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"4295398764784","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/vivo-v9/1.webp","https://cdn.dummyjson.com/product-images/smartphones/vivo-v9/2.webp","https://cdn.dummyjson.com/product-images/smartphones/vivo-v9/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/vivo-v9/thumbnail.webp"},{"id":136,"title":"Vivo X21","description":"The Vivo X21 is a premium smartphone with a focus on cutting-edge technology. It features an in-display fingerprint sensor, a high-resolution display, and advanced camera capabilities.","category":"smartphones","price":499.99,"discountPercentage":17.41,"rating":4.26,"stock":7,"tags":["smartphones","vivo"],"brand":"Vivo","sku":"SMA-VIV-VIV-136","weight":10,"dimensions":{"width":22.49,"height":21.62,"depth":27.88},"warrantyInformation":"1 year warranty","shippingInformation":"Ships in 1-2 business days","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Very pleased!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Liam Gonzalez","reviewerEmail":"liam.gonzalez@x.dummyjson.com"},{"rating":4,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Aurora Barnes","reviewerEmail":"aurora.barnes@x.dummyjson.com"},{"rating":2,"comment":"Not as described!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Evelyn Walker","reviewerEmail":"evelyn.walker@x.dummyjson.com"}],"returnPolicy":"60 days return policy","minimumOrderQuantity":3,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"9944308291810","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/vivo-x21/1.webp","https://cdn.dummyjson.com/product-images/smartphones/vivo-x21/2.webp","https://cdn.dummyjson.com/product-images/smartphones/vivo-x21/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/vivo-x21/thumbnail.webp"}],"total":16,"skip":0,"limit":16}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Creates a new product in the system with the provided product details.
## Method & Endpoint
- **Method**: `POST`
- **Endpoint**: `https://dummyjson.com/products/add`
## Authentication
- **Required**: No
- This is a public endpoint for demonstration purposes
## Parameters
### Request Body (JSON)
```json
{
"title": "Product Name",
"description": "Product description",
"price": 999,
"discountPercentage": 10,
"rating": 4.5,
"stock": 50,
"brand": "Brand Name",
"category": "Category Name",
"thumbnail": "image_url"
}
```
**Required Fields**:
- `title` - Product name
- `price` - Product price
**Optional Fields**:
- `description`, `discountPercentage`, `rating`, `stock`, `brand`, `category`, `thumbnail`
## Expected Response
- **Status Code**: `201 Created`
- **Response Structure**: Returns the created product with an assigned ID
```json
{
"id": 195,
"title": "Product Name",
"price": 999,
...
}
```
## Tests Included
- Validates response status code is 201
- Verifies product ID is assigned
- Checks all submitted fields are returned
- Confirms product creation timestamp
| Header Name | Header Value |
|---|---|
| Content-Type | application/json |
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNzksImV4cCI6MTc2OTk2NDc3OX0.au6-HNuanDOW1Q3iDl4MYxifr14HAULtIcahDIP9Pos |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 1758d7b7-40bb-48b8-93b4-553ee3dcdba0 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 125 |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExODAsImV4cCI6MTc2OTk2Mjk4MH0.a421am7-9c4bgdogT92hR4YICGdQAmH3mBrPbwPtKz8; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExODAsImV4cCI6MTc3MjU1MzE4MH0.YSCAHcUv1I0PH72s6qGZ-QdElXc_Xd9a8mvH1Vr61Zs |
{
"title": "BMW Pencil",
"price": 100,
"description": "High quality pencil",
"category": "stationery"
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:03 GMT |
| Content-Type | application/json; charset=utf-8 |
| Content-Length | 103 |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 95 |
| x-ratelimit-reset | 1769961189 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"67-0ZPry6/zvpQF03BJfwztu0kNXO4" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=Zo9SqULzrbZ3qvQrZGYNkNagUsHlP2v0Givraz4eXXzUQoggT02QP4uaBYWW4wy2P8AvH%2BJITB6YLTQMvxl6nwVivCltiD3aZEktVO0%3D"}]} |
| CF-RAY | 9c729e91bf8f2891-AMM |
{"id":195,"title":"BMW Pencil","price":100,"description":"High quality pencil","category":"stationery"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 201 | 1 | 0 | 0 |
| Product created successfully | 1 | 0 | 0 |
| All required fields exist | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 4 | 0 | 0 |
| Test Name | Assertion Error |
|---|
| Header Name | Header Value |
|---|---|
| Content-Type | application/json |
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNzksImV4cCI6MTc2OTk2NDc3OX0.au6-HNuanDOW1Q3iDl4MYxifr14HAULtIcahDIP9Pos |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 7b8c3c4f-acdd-459b-b824-519a8274b88f |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 25 |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExODAsImV4cCI6MTc2OTk2Mjk4MH0.a421am7-9c4bgdogT92hR4YICGdQAmH3mBrPbwPtKz8; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExODAsImV4cCI6MTc3MjU1MzE4MH0.YSCAHcUv1I0PH72s6qGZ-QdElXc_Xd9a8mvH1Vr61Zs |
{
"price": "abd"
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:03 GMT |
| Content-Type | application/json; charset=utf-8 |
| Content-Length | 24 |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 94 |
| x-ratelimit-reset | 1769961189 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"18-L9Dj49E4IFbHCZOI/ckAL4ETueo" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=OkGaR3DcCLrOJ4o3x0PeLjO%2F7xCKdVIvxZyeNy4d4xIEBSTN7tHMLGMeryLzlzulhbMbJGDq%2FAFLv75gzN6znl1Aw0dnqbMm%2FSTntBg%3D"}]} |
| CF-RAY | 9c729e93592f2891-AMM |
{"id":195,"price":"abd"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| API should not accept non-numeric price | 1 | 0 | 0 |
| Total | 1 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Creates a new product using randomly generated test data to validate the product creation endpoint with dynamic values.
## Method & Endpoint
- **Method**: `POST`
- **Endpoint**: `https://dummyjson.com/products/add`
## Authentication
- **Required**: No
- This is a public endpoint for demonstration purposes
## Parameters
### Request Body (JSON)
Uses dynamically generated random data:
```json
{
"title": "Practical Plastic Chips",
"description": "Gorgeous Bike",
"price": 678.07,
"discountPercentage": 199,
"rating": 4.5,
"stock": 195,
"brand": "Dietrich, D'Amore and Davis",
"category": "{{$randomProductCategory}}",
"thumbnail": "http://placeimg.com/640/480"
}
```
## Expected Response
- **Status Code**: `201 Created`
- **Response Structure**: Returns the created product with random data and assigned ID
```json
{
"id": 195,
"title": "Random Product Name",
"price": 123,
...
}
```
## Tests Included
- Validates response status code is 201
- Verifies product ID is assigned
- Checks random data is properly saved
- Confirms API handles dynamic test data correctly
| Header Name | Header Value |
|---|---|
| Content-Type | application/json |
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNzksImV4cCI6MTc2OTk2NDc3OX0.au6-HNuanDOW1Q3iDl4MYxifr14HAULtIcahDIP9Pos |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 6274c272-f575-4e1b-a62e-865199c81a9b |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 83 |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExODAsImV4cCI6MTc2OTk2Mjk4MH0.a421am7-9c4bgdogT92hR4YICGdQAmH3mBrPbwPtKz8; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExODAsImV4cCI6MTc3MjU1MzE4MH0.YSCAHcUv1I0PH72s6qGZ-QdElXc_Xd9a8mvH1Vr61Zs |
{
"title":"Laptop",
"description": "Gaming laptop",
"price": 1500
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:03 GMT |
| Content-Type | application/json; charset=utf-8 |
| Content-Length | 70 |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 95 |
| x-ratelimit-reset | 1769961190 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"46-+jhr2w41iCzgq2BYr5FmhwODyxA" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=eYKkeIJEDqXIswGC6R1yVGyfD3pQCDIQA5wV0NlAw%2Buapk6y4mCC7fhIvwNlI7tDspS%2BGVYAPSYXKqZPQU8I%2FZyy3%2FYNhLanETv87mk%3D"}]} |
| CF-RAY | 9c729e950b132891-AMM |
{"id":195,"title":"Laptop","price":1500,"description":"Gaming laptop"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is as expected | 1 | 0 | 0 |
| Total | 1 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Updates an existing product's information by its unique identifier.
## Method & Endpoint
- **Method**: `PUT`
- **Endpoint**: `https://dummyjson.com/products/20`
## Authentication
- **Required**: No
- This is a public endpoint for demonstration purposes
## Parameters
### Path Variables
- `productId` (required) - The unique identifier of the product to update
### Request Body (JSON)
```json
{
"title": "Updated Product Name",
"price": 1299,
"description": "Updated description",
"stock": 75
}
```
**Note**: Only include fields you want to update. Unspecified fields remain unchanged.
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**: Returns the updated product with all fields
```json
{
"id": 1,
"title": "Updated Product Name",
"price": 1299,
"description": "Updated description",
"stock": 75,
...
}
```
## Tests Included
- Validates response status code is 200
- Verifies updated fields match request
- Checks product ID remains unchanged
- Confirms other fields are preserved
| Header Name | Header Value |
|---|---|
| Content-Type | application/json |
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNzksImV4cCI6MTc2OTk2NDc3OX0.au6-HNuanDOW1Q3iDl4MYxifr14HAULtIcahDIP9Pos |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 1ec6aa3e-f9af-4964-b05d-fe0ca6605794 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 37 |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExODAsImV4cCI6MTc2OTk2Mjk4MH0.a421am7-9c4bgdogT92hR4YICGdQAmH3mBrPbwPtKz8; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExODAsImV4cCI6MTc3MjU1MzE4MH0.YSCAHcUv1I0PH72s6qGZ-QdElXc_Xd9a8mvH1Vr61Zs |
{
"title": "iPhone Galaxy +1"
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:03 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 91 |
| x-ratelimit-reset | 1769961187 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"192-iTF/37dqMdcAfA3B6GoiupdWK8A" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=DC6oD%2BR9wupW2RJ5rmvTihpV4wkm0g5BeToKZggR9aoKcnWKsBjdddUZQu%2B7Avs09052lyOuduZrt%2Bi2G%2F2Qfiwdz7WJ69dX5XFytQw%3D"}]} |
| Content-Encoding | br |
| CF-RAY | 9c729e969cc72891-AMM |
{"id":20,"title":"iPhone Galaxy +1","price":4.99,"discountPercentage":9.33,"stock":10,"rating":4.8,"images":["https://cdn.dummyjson.com/product-images/groceries/cooking-oil/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/cooking-oil/thumbnail.webp","description":"Versatile cooking oil suitable for frying, sautéing, and various culinary applications.","category":"groceries"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
| Header Name | Header Value |
|---|---|
| Content-Type | application/json |
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNzksImV4cCI6MTc2OTk2NDc3OX0.au6-HNuanDOW1Q3iDl4MYxifr14HAULtIcahDIP9Pos |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 41e684a5-59d8-49b7-8248-877ff2283b7a |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 37 |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExODAsImV4cCI6MTc2OTk2Mjk4MH0.a421am7-9c4bgdogT92hR4YICGdQAmH3mBrPbwPtKz8; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExODAsImV4cCI6MTc3MjU1MzE4MH0.YSCAHcUv1I0PH72s6qGZ-QdElXc_Xd9a8mvH1Vr61Zs |
{
"title": "iPhone Galaxy +1"
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:04 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 90 |
| x-ratelimit-reset | 1769961187 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"2d-0WtrwaXzWoposFPTOmioRGKyXA8" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=rgWtLxuTGSbuM%2Bc2QUkVNH2KdQn0pAQy%2BZ1DDw21%2FQrw1dz9ORP0fmNNxnM2Tf5m%2F7Ej1jgdrsiBE0UsWnT4sQTZpyN9Oi3Wte6JJQw%3D"}]} |
| Content-Encoding | br |
| CF-RAY | 9c729e980e212891-AMM |
{"message":"Product with id '-20' not found"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 404 | 1 | 0 | 0 |
| Response contains not found | 1 | 0 | 0 |
| Error message exists | 1 | 0 | 0 |
| Total | 3 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Deletes a specific product from the system by its unique identifier.
## Method & Endpoint
- **Method**: `DELETE`
- **Endpoint**: `https://dummyjson.com/products/20`
## Authentication
- **Required**: No
- This is a public endpoint for demonstration purposes
## Parameters
### Path Variables
- `productId` (required) - The unique identifier of the product to delete
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**: Returns the deleted product information with deletion confirmation
```json
{
"id": 1,
"title": "Product Name",
"price": 549,
"isDeleted": true,
"deletedOn": "2024-01-01T12:00:00.000Z",
...
}
```
## Tests Included
- Validates response status code is 200
- Verifies `isDeleted` flag is true
- Checks deletion timestamp is present
- Confirms deleted product details are returned
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNzksImV4cCI6MTc2OTk2NDc3OX0.au6-HNuanDOW1Q3iDl4MYxifr14HAULtIcahDIP9Pos |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | bc22e324-a5be-43c5-89b8-e271d67857fa |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExODAsImV4cCI6MTc2OTk2Mjk4MH0.a421am7-9c4bgdogT92hR4YICGdQAmH3mBrPbwPtKz8; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExODAsImV4cCI6MTc3MjU1MzE4MH0.YSCAHcUv1I0PH72s6qGZ-QdElXc_Xd9a8mvH1Vr61Zs |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:04 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 93 |
| x-ratelimit-reset | 1769961189 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"594-wy0THr6wCXCCvpVmwz4+SyUjsx8" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=DeVEoJ0B8rhw1ZG%2FZD0qlgN%2FR7tqYT9qAWHMnU6ailZ96EO8dtmrDZtQ4mZAHRMTPfGlDpNI3huPRDlkUMZh0Qsir8w32zrOWMRuH7Q%3D"}]} |
| CF-RAY | 9c729e999ffd2891-AMM |
{"id":20,"title":"Cooking Oil","description":"Versatile cooking oil suitable for frying, sautéing, and various culinary applications.","category":"groceries","price":4.99,"discountPercentage":9.33,"rating":4.8,"stock":10,"tags":["cooking essentials"],"sku":"GRO-BRD-COO-020","weight":5,"dimensions":{"width":19.95,"height":27.54,"depth":24.86},"warrantyInformation":"Lifetime warranty","shippingInformation":"Ships in 1-2 business days","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Very happy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Victoria McDonald","reviewerEmail":"victoria.mcdonald@x.dummyjson.com"},{"rating":2,"comment":"Would not recommend!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Hazel Evans","reviewerEmail":"hazel.evans@x.dummyjson.com"},{"rating":5,"comment":"Would buy again!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Zoe Bennett","reviewerEmail":"zoe.bennett@x.dummyjson.com"}],"returnPolicy":"30 days return policy","minimumOrderQuantity":46,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"4874727824518","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/cooking-oil/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/cooking-oil/thumbnail.webp","isDeleted":true,"deletedOn":"2026-02-01T15:53:04.330Z"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| product Deleted successfully | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 3 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Retrieves a paginated list of all shopping carts in the system.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/carts`
## Authentication
- **Required**: No
- This is a public endpoint that doesn't require authentication
## Parameters
- No required parameters
- Optional query parameters: `limit`, `skip` for pagination
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
{
"carts": [
{
"id": 1,
"products": [
{
"id": 1,
"title": "Product Name",
"price": 549,
"quantity": 2,
"total": 1098
}
],
"total": 1098,
"discountedTotal": 985,
"userId": 1,
"totalProducts": 1,
"totalQuantity": 2
}
],
"total": 20,
"skip": 0,
"limit": 30
}
```
## Tests Included
- Validates response status code is 200
- Verifies carts array structure
- Checks pagination metadata
- Confirms cart totals and product details
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNzksImV4cCI6MTc2OTk2NDc3OX0.au6-HNuanDOW1Q3iDl4MYxifr14HAULtIcahDIP9Pos |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 17a29574-524d-4c69-8323-cca30be900d1 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExODAsImV4cCI6MTc2OTk2Mjk4MH0.a421am7-9c4bgdogT92hR4YICGdQAmH3mBrPbwPtKz8; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExODAsImV4cCI6MTc3MjU1MzE4MH0.YSCAHcUv1I0PH72s6qGZ-QdElXc_Xd9a8mvH1Vr61Zs |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:04 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 94 |
| x-ratelimit-reset | 1769961190 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"7d39-+rQ7kyHBCLIn9tjTeKVf4oegWkQ" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=Wg5%2BTX7%2FIaPr%2BLS20RCC2wsYtHAMvtY5tPDjOS6CHOvuDXNvoDBmmzlh59OLStLF3lvkTptRmiS7rZZS8arW3qHzIBN0OV0pQZdRp%2FM%3D"}]} |
| CF-RAY | 9c729e9b29972891-AMM |
{"carts":[{"id":1,"products":[{"id":168,"title":"Charger SXT RWD","price":32999.99,"quantity":3,"total":98999.97,"discountPercentage":13.39,"discountedTotal":85743.87,"thumbnail":"https://cdn.dummyjson.com/products/images/vehicle/Charger%20SXT%20RWD/thumbnail.png"},{"id":78,"title":"Apple MacBook Pro 14 Inch Space Grey","price":1999.99,"quantity":2,"total":3999.98,"discountPercentage":18.52,"discountedTotal":3259.18,"thumbnail":"https://cdn.dummyjson.com/products/images/laptops/Apple%20MacBook%20Pro%2014%20Inch%20Space%20Grey/thumbnail.png"},{"id":183,"title":"Green Oval Earring","price":24.99,"quantity":5,"total":124.94999999999999,"discountPercentage":6.28,"discountedTotal":117.1,"thumbnail":"https://cdn.dummyjson.com/products/images/womens-jewellery/Green%20Oval%20Earring/thumbnail.png"},{"id":100,"title":"Apple Airpods","price":129.99,"quantity":5,"total":649.95,"discountPercentage":12.84,"discountedTotal":566.5,"thumbnail":"https://cdn.dummyjson.com/products/images/mobile-accessories/Apple%20Airpods/thumbnail.png"}],"total":103774.85,"discountedTotal":89686.65,"userId":33,"totalProducts":4,"totalQuantity":15},{"id":2,"products":[{"id":144,"title":"Cricket Helmet","price":44.99,"quantity":4,"total":179.96,"discountPercentage":11.47,"discountedTotal":159.32,"thumbnail":"https://cdn.dummyjson.com/products/images/sports-accessories/Cricket%20Helmet/thumbnail.png"},{"id":124,"title":"iPhone X","price":899.99,"quantity":4,"total":3599.96,"discountPercentage":8.03,"discountedTotal":3310.88,"thumbnail":"https://cdn.dummyjson.com/products/images/smartphones/iPhone%20X/thumbnail.png"},{"id":148,"title":"Golf Ball","price":9.99,"quantity":4,"total":39.96,"discountPercentage":11.24,"discountedTotal":35.47,"thumbnail":"https://cdn.dummyjson.com/products/images/sports-accessories/Golf%20Ball/thumbnail.png"},{"id":122,"title":"iPhone 6","price":299.99,"quantity":3,"total":899.97,"discountPercentage":19.64,"discountedTotal":723.22,"thumbnail":"https://cdn.dummyjson.com/products/images/smartphones/iPhone%206/thumbnail.png"},{"id":110,"title":"Selfie Lamp with iPhone","price":14.99,"quantity":5,"total":74.95,"discountPercentage":19.87,"discountedTotal":60.06,"thumbnail":"https://cdn.dummyjson.com/products/images/mobile-accessories/Selfie%20Lamp%20with%20iPhone/thumbnail.png"}],"total":4794.8,"discountedTotal":4288.95,"userId":142,"totalProducts":5,"totalQuantity":20},{"id":3,"products":[{"id":98,"title":"Rolex Submariner Watch","price":13999.99,"quantity":1,"total":13999.99,"discountPercentage":16.35,"discountedTotal":11710.99,"thumbnail":"https://cdn.dummyjson.com/products/images/mens-watches/Rolex%20Submariner%20Watch/thumbnail.png"},{"id":125,"title":"Oppo A57","price":249.99,"quantity":5,"total":1249.95,"discountPercentage":16.54,"discountedTotal":1043.21,"thumbnail":"https://cdn.dummyjson.com/products/images/smartphones/Oppo%20A57/thumbnail.png"},{"id":55,"title":"Egg Slicer","price":6.99,"quantity":2,"total":13.98,"discountPercentage":16.04,"discountedTotal":11.74,"thumbnail":"https://cdn.dummyjson.com/products/images/kitchen-accessories/Egg%20Slicer/thumbnail.png"},{"id":62,"title":"Ice Cube Tray","price":5.99,"quantity":2,"total":11.98,"discountPercentage":8.25,"discountedTotal":10.99,"thumbnail":"https://cdn.dummyjson.com/products/images/kitchen-accessories/Ice%20Cube%20Tray/thumbnail.png"},{"id":132,"title":"Samsung Galaxy S8","price":499.99,"quantity":3,"total":1499.97,"discountPercentage":8.84,"discountedTotal":1367.37,"thumbnail":"https://cdn.dummyjson.com/products/images/smartphones/Samsung%20Galaxy%20S8/thumbnail.png"}],"total":16775.87,"discountedTotal":14144.3,"userId":108,"totalProducts":5,"totalQuantity":13},{"id":4,"products":[{"id":187,"title":"Golden Shoes Woman","price":49.99,"quantity":5,"total":249.95000000000002,"discountPercentage":1.64,"discountedTotal":245.85,"thumbnail":"https://cdn.dummyjson.com/products/images/womens-shoes/Golden%20Shoes%20Woman/thumbnail.png"},{"id":40,"title":"Strawberry","price":3.99,"quantity":5,"total":19.950000000000003,"discountPercentage":4.6,"discountedTotal":19.03,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Strawberry/thumbnail.png"},{"id":156,"title":"Green and Black Glasses","price":34.99,"quantity":5,"total":174.95000000000002,"discountPercentage":4.34,"discountedTotal":167.36,"thumbnail":"https://cdn.dummyjson.com/products/images/sunglasses/Green%20and%20Black%20Glasses/thumbnail.png"},{"id":62,"title":"Ice Cube Tray","price":5.99,"quantity":2,"total":11.98,"discountPercentage":8.25,"discountedTotal":10.99,"thumbnail":"https://cdn.dummyjson.com/products/images/kitchen-accessories/Ice%20Cube%20Tray/thumbnail.png"}],"total":456.83,"discountedTotal":443.23,"userId":87,"totalProducts":4,"totalQuantity":17},{"id":5,"products":[{"id":108,"title":"iPhone 12 Silicone Case with MagSafe Plum","price":29.99,"quantity":2,"total":59.98,"discountPercentage":14.68,"discountedTotal":51.17,"thumbnail":"https://cdn.dummyjson.com/products/images/mobile-accessories/iPhone%2012%20Silicone%20Case%20with%20MagSafe%20Plum/thumbnail.png"},{"id":138,"title":"Baseball Ball","price":8.99,"quantity":5,"total":44.95,"discountPercentage":18.49,"discountedTotal":36.64,"thumbnail":"https://cdn.dummyjson.com/products/images/sports-accessories/Baseball%20Ball/thumbnail.png"},{"id":157,"title":"Party Glasses","price":19.99,"quantity":2,"total":39.98,"discountPercentage":19.17,"discountedTotal":32.32,"thumbnail":"https://cdn.dummyjson.com/products/images/sunglasses/Party%20Glasses/thumbnail.png"},{"id":8,"title":"Dior J'adore","price":89.99,"quantity":3,"total":269.96999999999997,"discountPercentage":10.79,"discountedTotal":240.84,"thumbnail":"https://cdn.dummyjson.com/products/images/fragrances/Dior%20J'adore/thumbnail.png"},{"id":80,"title":"Huawei Matebook X Pro","price":1399.99,"quantity":5,"total":6999.95,"discountPercentage":9.99,"discountedTotal":6300.65,"thumbnail":"https://cdn.dummyjson.com/products/images/laptops/Huawei%20Matebook%20X%20Pro/thumbnail.png"},{"id":28,"title":"Ice Cream","price":5.49,"quantity":3,"total":16.47,"discountPercentage":10,"discountedTotal":14.82,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Ice%20Cream/thumbnail.png"}],"total":7431.3,"discountedTotal":6676.44,"userId":134,"totalProducts":6,"totalQuantity":20},{"id":6,"products":[{"id":172,"title":"Blue Women's Handbag","price":49.99,"quantity":5,"total":249.95000000000002,"discountPercentage":8.08,"discountedTotal":229.75,"thumbnail":"https://cdn.dummyjson.com/products/images/womens-bags/Blue%20Women's%20Handbag/thumbnail.png"},{"id":112,"title":"TV Studio Camera Pedestal","price":499.99,"quantity":3,"total":1499.97,"discountPercentage":15.69,"discountedTotal":1264.62,"thumbnail":"https://cdn.dummyjson.com/products/images/mobile-accessories/TV%20Studio%20Camera%20Pedestal/thumbnail.png"},{"id":97,"title":"Rolex Datejust","price":10999.99,"quantity":3,"total":32999.97,"discountPercentage":10.58,"discountedTotal":29508.57,"thumbnail":"https://cdn.dummyjson.com/products/images/mens-watches/Rolex%20Datejust/thumbnail.png"},{"id":128,"title":"Realme C35","price":149.99,"quantity":3,"total":449.97,"discountPercentage":3.97,"discountedTotal":432.11,"thumbnail":"https://cdn.dummyjson.com/products/images/smartphones/Realme%20C35/thumbnail.png"}],"total":35199.86,"discountedTotal":31435.05,"userId":150,"totalProducts":4,"totalQuantity":14},{"id":7,"products":[{"id":167,"title":"300 Touring","price":28999.99,"quantity":5,"total":144999.95,"discountPercentage":11.78,"discountedTotal":127918.96,"thumbnail":"https://cdn.dummyjson.com/products/images/vehicle/300%20Touring/thumbnail.png"},{"id":111,"title":"Selfie Stick Monopod","price":12.99,"quantity":4,"total":51.96,"discountPercentage":10.98,"discountedTotal":46.25,"thumbnail":"https://cdn.dummyjson.com/products/images/mobile-accessories/Selfie%20Stick%20Monopod/thumbnail.png"},{"id":129,"title":"Realme X","price":299.99,"quantity":2,"total":599.98,"discountPercentage":10.13,"discountedTotal":539.2,"thumbnail":"https://cdn.dummyjson.com/products/images/smartphones/Realme%20X/thumbnail.png"}],"total":145651.89,"discountedTotal":128504.41,"userId":86,"totalProducts":3,"totalQuantity":11},{"id":8,"products":[{"id":117,"title":"Sportbike Motorcycle","price":7499.99,"quantity":2,"total":14999.98,"discountPercentage":19.83,"discountedTotal":12025.48,"thumbnail":"https://cdn.dummyjson.com/products/images/motorcycle/Sportbike%20Motorcycle/thumbnail.png"},{"id":18,"title":"Cat Food","price":8.99,"quantity":4,"total":35.96,"discountPercentage":1.15,"discountedTotal":35.55,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Cat%20Food/thumbnail.png"},{"id":105,"title":"Apple MagSafe Battery Pack","price":99.99,"quantity":5,"total":499.95,"discountPercentage":7.14,"discountedTotal":464.25,"thumbnail":"https://cdn.dummyjson.com/products/images/mobile-accessories/Apple%20MagSafe%20Battery%20Pack/thumbnail.png"},{"id":6,"title":"Calvin Klein CK One","price":49.99,"quantity":3,"total":149.97,"discountPercentage":5.67,"discountedTotal":141.47,"thumbnail":"https://cdn.dummyjson.com/products/images/fragrances/Calvin%20Klein%20CK%20One/thumbnail.png"}],"total":15685.86,"discountedTotal":12666.75,"userId":23,"totalProducts":4,"totalQuantity":14},{"id":9,"products":[{"id":178,"title":"Corset Leather With Skirt","price":89.99,"quantity":2,"total":179.98,"discountPercentage":12.59,"discountedTotal":157.32,"thumbnail":"https://cdn.dummyjson.com/products/images/womens-dresses/Corset%20Leather%20With%20Skirt/thumbnail.png"},{"id":191,"title":"Rolex Cellini Moonphase","price":15999.99,"quantity":4,"total":63999.96,"discountPercentage":3.26,"discountedTotal":61913.56,"thumbnail":"https://cdn.dummyjson.com/products/images/womens-watches/Rolex%20Cellini%20Moonphase/thumbnail.png"},{"id":47,"title":"Table Lamp","price":49.99,"quantity":2,"total":99.98,"discountPercentage":13.74,"discountedTotal":86.24,"thumbnail":"https://cdn.dummyjson.com/products/images/home-decoration/Table%20Lamp/thumbnail.png"},{"id":134,"title":"Vivo S1","price":249.99,"quantity":5,"total":1249.95,"discountPercentage":5.64,"discountedTotal":1179.45,"thumbnail":"https://cdn.dummyjson.com/products/images/smartphones/Vivo%20S1/thumbnail.png"}],"total":65529.87,"discountedTotal":63336.57,"userId":194,"totalProducts":4,"totalQuantity":13},{"id":10,"products":[{"id":190,"title":"IWC Ingenieur Automatic Steel","price":4999.99,"quantity":5,"total":24999.949999999997,"discountPercentage":12.34,"discountedTotal":21914.96,"thumbnail":"https://cdn.dummyjson.com/products/images/womens-watches/IWC%20Ingenieur%20Automatic%20Steel/thumbnail.png"},{"id":94,"title":"Longines Master Collection","price":1499.99,"quantity":3,"total":4499.97,"discountPercentage":16.44,"discountedTotal":3760.17,"thumbnail":"https://cdn.dummyjson.com/products/images/mens-watches/Longines%20Master%20Collection/thumbnail.png"}],"total":29499.92,"discountedTotal":25675.13,"userId":160,"totalProducts":2,"totalQuantity":8},{"id":11,"products":[{"id":88,"title":"Nike Air Jordan 1 Red And Black","price":149.99,"quantity":1,"total":149.99,"discountPercentage":17.18,"discountedTotal":124.22,"thumbnail":"https://cdn.dummyjson.com/products/images/mens-shoes/Nike%20Air%20Jordan%201%20Red%20And%20Black/thumbnail.png"},{"id":32,"title":"Milk","price":3.49,"quantity":3,"total":10.47,"discountPercentage":9.36,"discountedTotal":9.49,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Milk/thumbnail.png"},{"id":74,"title":"Spoon","price":4.99,"quantity":3,"total":14.97,"discountPercentage":2.78,"discountedTotal":14.55,"thumbnail":"https://cdn.dummyjson.com/products/images/kitchen-accessories/Spoon/thumbnail.png"},{"id":145,"title":"Cricket Wicket","price":29.99,"quantity":3,"total":89.97,"discountPercentage":17.87,"discountedTotal":73.89,"thumbnail":"https://cdn.dummyjson.com/products/images/sports-accessories/Cricket%20Wicket/thumbnail.png"},{"id":26,"title":"Green Chili Pepper","price":0.99,"quantity":3,"total":2.9699999999999998,"discountPercentage":18.69,"discountedTotal":2.41,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Green%20Chili%20Pepper/thumbnail.png"},{"id":127,"title":"Oppo K1","price":299.99,"quantity":1,"total":299.99,"discountPercentage":15.93,"discountedTotal":252.2,"thumbnail":"https://cdn.dummyjson.com/products/images/smartphones/Oppo%20K1/thumbnail.png"}],"total":568.36,"discountedTotal":476.76,"userId":172,"totalProducts":6,"totalQuantity":14},{"id":12,"products":[{"id":63,"title":"Kitchen Sieve","price":7.99,"quantity":4,"total":31.96,"discountPercentage":18.8,"discountedTotal":25.95,"thumbnail":"https://cdn.dummyjson.com/products/images/kitchen-accessories/Kitchen%20Sieve/thumbnail.png"},{"id":181,"title":"Marni Red & Black Suit","price":179.99,"quantity":5,"total":899.95,"discountPercentage":14.21,"discountedTotal":772.07,"thumbnail":"https://cdn.dummyjson.com/products/images/womens-dresses/Marni%20Red%20&%20Black%20Suit/thumbnail.png"}],"total":931.91,"discountedTotal":798.02,"userId":202,"totalProducts":2,"totalQuantity":9},{"id":13,"products":[{"id":85,"title":"Man Plaid Shirt","price":34.99,"quantity":2,"total":69.98,"discountPercentage":3.7,"discountedTotal":67.39,"thumbnail":"https://cdn.dummyjson.com/products/images/mens-shirts/Man%20Plaid%20Shirt/thumbnail.png"},{"id":109,"title":"Monopod","price":19.99,"quantity":3,"total":59.97,"discountPercentage":12.95,"discountedTotal":52.2,"thumbnail":"https://cdn.dummyjson.com/products/images/mobile-accessories/Monopod/thumbnail.png"},{"id":160,"title":"Samsung Galaxy Tab S8 Plus Grey","price":599.99,"quantity":1,"total":599.99,"discountPercentage":4.31,"discountedTotal":574.13,"thumbnail":"https://cdn.dummyjson.com/products/images/tablets/Samsung%20Galaxy%20Tab%20S8%20Plus%20Grey/thumbnail.png"},{"id":163,"title":"Girl Summer Dress","price":19.99,"quantity":3,"total":59.97,"discountPercentage":9.44,"discountedTotal":54.31,"thumbnail":"https://cdn.dummyjson.com/products/images/tops/Girl%20Summer%20Dress/thumbnail.png"},{"id":31,"title":"Lemon","price":0.79,"quantity":4,"total":3.16,"discountPercentage":12.32,"discountedTotal":2.77,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Lemon/thumbnail.png"}],"total":793.07,"discountedTotal":750.8,"userId":41,"totalProducts":5,"totalQuantity":13},{"id":14,"products":[{"id":92,"title":"Sports Sneakers Off White Red","price":109.99,"quantity":3,"total":329.96999999999997,"discountPercentage":17.73,"discountedTotal":271.47,"thumbnail":"https://cdn.dummyjson.com/products/images/mens-shoes/Sports%20Sneakers%20Off%20White%20Red/thumbnail.png"},{"id":54,"title":"Citrus Squeezer Yellow","price":8.99,"quantity":5,"total":44.95,"discountPercentage":6.3,"discountedTotal":42.12,"thumbnail":"https://cdn.dummyjson.com/products/images/kitchen-accessories/Citrus%20Squeezer%20Yellow/thumbnail.png"},{"id":76,"title":"Wooden Rolling Pin","price":11.99,"quantity":1,"total":11.99,"discountPercentage":8.45,"discountedTotal":10.98,"thumbnail":"https://cdn.dummyjson.com/products/images/kitchen-accessories/Wooden%20Rolling%20Pin/thumbnail.png"},{"id":44,"title":"Family Tree Photo Frame","price":29.99,"quantity":5,"total":149.95,"discountPercentage":10.68,"discountedTotal":133.94,"thumbnail":"https://cdn.dummyjson.com/products/images/home-decoration/Family%20Tree%20Photo%20Frame/thumbnail.png"},{"id":67,"title":"Mug Tree Stand","price":15.99,"quantity":3,"total":47.97,"discountPercentage":16.65,"discountedTotal":39.98,"thumbnail":"https://cdn.dummyjson.com/products/images/kitchen-accessories/Mug%20Tree%20Stand/thumbnail.png"},{"id":16,"title":"Apple","price":1.99,"quantity":1,"total":1.99,"discountPercentage":11.74,"discountedTotal":1.76,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Apple/thumbnail.png"}],"total":586.82,"discountedTotal":500.25,"userId":94,"totalProducts":6,"totalQuantity":18},{"id":15,"products":[{"id":11,"title":"Annibale Colombo Bed","price":1899.99,"quantity":5,"total":9499.95,"discountPercentage":8.09,"discountedTotal":8731.4,"thumbnail":"https://cdn.dummyjson.com/products/images/furniture/Annibale%20Colombo%20Bed/thumbnail.png"},{"id":133,"title":"Samsung Galaxy S10","price":699.99,"quantity":3,"total":2099.9700000000003,"discountPercentage":1.12,"discountedTotal":2076.45,"thumbnail":"https://cdn.dummyjson.com/products/images/smartphones/Samsung%20Galaxy%20S10/thumbnail.png"},{"id":111,"title":"Selfie Stick Monopod","price":12.99,"quantity":3,"total":38.97,"discountPercentage":10.98,"discountedTotal":34.69,"thumbnail":"https://cdn.dummyjson.com/products/images/mobile-accessories/Selfie%20Stick%20Monopod/thumbnail.png"},{"id":162,"title":"Blue Frock","price":29.99,"quantity":3,"total":89.97,"discountPercentage":3.86,"discountedTotal":86.5,"thumbnail":"https://cdn.dummyjson.com/products/images/tops/Blue%20Frock/thumbnail.png"},{"id":30,"title":"Kiwi","price":2.49,"quantity":5,"total":12.450000000000001,"discountPercentage":4.34,"discountedTotal":11.91,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Kiwi/thumbnail.png"}],"total":11741.31,"discountedTotal":10940.95,"userId":11,"totalProducts":5,"totalQuantity":19},{"id":16,"products":[{"id":19,"title":"Chicken Meat","price":9.99,"quantity":2,"total":19.98,"discountPercentage":13.37,"discountedTotal":17.31,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Chicken%20Meat/thumbnail.png"},{"id":152,"title":"Tennis Racket","price":49.99,"quantity":3,"total":149.97,"discountPercentage":9.13,"discountedTotal":136.28,"thumbnail":"https://cdn.dummyjson.com/products/images/sports-accessories/Tennis%20Racket/thumbnail.png"},{"id":35,"title":"Potatoes","price":2.29,"quantity":1,"total":2.29,"discountPercentage":1.69,"discountedTotal":2.25,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Potatoes/thumbnail.png"}],"total":172.24,"discountedTotal":155.84,"userId":200,"totalProducts":3,"totalQuantity":6},{"id":17,"products":[{"id":1,"title":"Essence Mascara Lash Princess","price":9.99,"quantity":2,"total":19.98,"discountPercentage":0.63,"discountedTotal":19.85,"thumbnail":"https://cdn.dummyjson.com/products/images/beauty/Essence%20Mascara%20Lash%20Princess/thumbnail.png"},{"id":60,"title":"Grater Black","price":10.99,"quantity":3,"total":32.97,"discountPercentage":16.62,"discountedTotal":27.49,"thumbnail":"https://cdn.dummyjson.com/products/images/kitchen-accessories/Grater%20Black/thumbnail.png"},{"id":74,"title":"Spoon","price":4.99,"quantity":4,"total":19.96,"discountPercentage":2.78,"discountedTotal":19.41,"thumbnail":"https://cdn.dummyjson.com/products/images/kitchen-accessories/Spoon/thumbnail.png"},{"id":44,"title":"Family Tree Photo Frame","price":29.99,"quantity":4,"total":119.96,"discountPercentage":10.68,"discountedTotal":107.15,"thumbnail":"https://cdn.dummyjson.com/products/images/home-decoration/Family%20Tree%20Photo%20Frame/thumbnail.png"}],"total":192.87,"discountedTotal":173.9,"userId":141,"totalProducts":4,"totalQuantity":13},{"id":18,"products":[{"id":127,"title":"Oppo K1","price":299.99,"quantity":4,"total":1199.96,"discountPercentage":15.93,"discountedTotal":1008.81,"thumbnail":"https://cdn.dummyjson.com/products/images/smartphones/Oppo%20K1/thumbnail.png"},{"id":24,"title":"Fish Steak","price":14.99,"quantity":3,"total":44.97,"discountPercentage":7.66,"discountedTotal":41.53,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Fish%20Steak/thumbnail.png"},{"id":20,"title":"Cooking Oil","price":4.99,"quantity":5,"total":24.950000000000003,"discountPercentage":12.62,"discountedTotal":21.8,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Cooking%20Oil/thumbnail.png"},{"id":154,"title":"Black Sun Glasses","price":29.99,"quantity":3,"total":89.97,"discountPercentage":1.11,"discountedTotal":88.97,"thumbnail":"https://cdn.dummyjson.com/products/images/sunglasses/Black%20Sun%20Glasses/thumbnail.png"},{"id":44,"title":"Family Tree Photo Frame","price":29.99,"quantity":2,"total":59.98,"discountPercentage":10.68,"discountedTotal":53.57,"thumbnail":"https://cdn.dummyjson.com/products/images/home-decoration/Family%20Tree%20Photo%20Frame/thumbnail.png"},{"id":5,"title":"Red Nail Polish","price":8.99,"quantity":5,"total":44.95,"discountPercentage":3.76,"discountedTotal":43.26,"thumbnail":"https://cdn.dummyjson.com/products/images/beauty/Red%20Nail%20Polish/thumbnail.png"}],"total":1464.78,"discountedTotal":1257.94,"userId":189,"totalProducts":6,"totalQuantity":22},{"id":19,"products":[{"id":187,"title":"Golden Shoes Woman","price":49.99,"quantity":3,"total":149.97,"discountPercentage":1.64,"discountedTotal":147.51,"thumbnail":"https://cdn.dummyjson.com/products/images/womens-shoes/Golden%20Shoes%20Woman/thumbnail.png"},{"id":153,"title":"Volleyball","price":11.99,"quantity":5,"total":59.95,"discountPercentage":16.05,"discountedTotal":50.33,"thumbnail":"https://cdn.dummyjson.com/products/images/sports-accessories/Volleyball/thumbnail.png"},{"id":34,"title":"Nescafe Coffee","price":7.99,"quantity":3,"total":23.97,"discountPercentage":8.31,"discountedTotal":21.98,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Nescafe%20Coffee/thumbnail.png"},{"id":130,"title":"Realme XT","price":349.99,"quantity":2,"total":699.98,"discountPercentage":17.86,"discountedTotal":574.96,"thumbnail":"https://cdn.dummyjson.com/products/images/smartphones/Realme%20XT/thumbnail.png"}],"total":933.87,"discountedTotal":794.78,"userId":59,"totalProducts":4,"totalQuantity":13},{"id":20,"products":[{"id":107,"title":"Beats Flex Wireless Earphones","price":49.99,"quantity":1,"total":49.99,"discountPercentage":8.79,"discountedTotal":45.6,"thumbnail":"https://cdn.dummyjson.com/products/images/mobile-accessories/Beats%20Flex%20Wireless%20Earphones/thumbnail.png"},{"id":193,"title":"Watch Gold for Women","price":799.99,"quantity":3,"total":2399.9700000000003,"discountPercentage":19.53,"discountedTotal":1931.26,"thumbnail":"https://cdn.dummyjson.com/products/images/womens-watches/Watch%20Gold%20for%20Women/thumbnail.png"},{"id":100,"title":"Apple Airpods","price":129.99,"quantity":3,"total":389.97,"discountPercentage":12.84,"discountedTotal":339.9,"thumbnail":"https://cdn.dummyjson.com/products/images/mobile-accessories/Apple%20Airpods/thumbnail.png"},{"id":90,"title":"Puma Future Rider Trainers","price":89.99,"quantity":5,"total":449.95,"discountPercentage":14.7,"discountedTotal":383.81,"thumbnail":"https://cdn.dummyjson.com/products/images/mens-shoes/Puma%20Future%20Rider%20Trainers/thumbnail.png"},{"id":118,"title":"Attitude Super Leaves Hand Soap","price":8.99,"quantity":5,"total":44.95,"discountPercentage":7.23,"discountedTotal":41.7,"thumbnail":"https://cdn.dummyjson.com/products/images/skin-care/Attitude%20Super%20Leaves%20Hand%20Soap/thumbnail.png"},{"id":166,"title":"Tartan Dress","price":39.99,"quantity":5,"total":199.95000000000002,"discountPercentage":2.82,"discountedTotal":194.31,"thumbnail":"https://cdn.dummyjson.com/products/images/tops/Tartan%20Dress/thumbnail.png"}],"total":3534.78,"discountedTotal":2936.58,"userId":90,"totalProducts":6,"totalQuantity":22},{"id":21,"products":[{"id":77,"title":"Yellow Peeler","price":5.99,"quantity":2,"total":11.98,"discountPercentage":13.16,"discountedTotal":10.4,"thumbnail":"https://cdn.dummyjson.com/products/images/kitchen-accessories/Yellow%20Peeler/thumbnail.png"},{"id":91,"title":"Sports Sneakers Off White & Red","price":119.99,"quantity":2,"total":239.98,"discountPercentage":1.96,"discountedTotal":235.28,"thumbnail":"https://cdn.dummyjson.com/products/images/mens-shoes/Sports%20Sneakers%20Off%20White%20&%20Red/thumbnail.png"}],"total":251.96,"discountedTotal":245.68,"userId":42,"totalProducts":2,"totalQuantity":4},{"id":22,"products":[{"id":73,"title":"Spice Rack","price":19.99,"quantity":5,"total":99.94999999999999,"discountPercentage":8.74,"discountedTotal":91.21,"thumbnail":"https://cdn.dummyjson.com/products/images/kitchen-accessories/Spice%20Rack/thumbnail.png"},{"id":2,"title":"Eyeshadow Palette with Mirror","price":19.99,"quantity":2,"total":39.98,"discountPercentage":0.7,"discountedTotal":39.7,"thumbnail":"https://cdn.dummyjson.com/products/images/beauty/Eyeshadow%20Palette%20with%20Mirror/thumbnail.png"},{"id":69,"title":"Plate","price":3.99,"quantity":2,"total":7.98,"discountPercentage":16,"discountedTotal":6.7,"thumbnail":"https://cdn.dummyjson.com/products/images/kitchen-accessories/Plate/thumbnail.png"},{"id":155,"title":"Classic Sun Glasses","price":24.99,"quantity":3,"total":74.97,"discountPercentage":9.27,"discountedTotal":68.02,"thumbnail":"https://cdn.dummyjson.com/products/images/sunglasses/Classic%20Sun%20Glasses/thumbnail.png"}],"total":222.88,"discountedTotal":205.63,"userId":140,"totalProducts":4,"totalQuantity":12},{"id":23,"products":[{"id":82,"title":"New DELL XPS 13 9300 Laptop","price":1499.99,"quantity":5,"total":7499.95,"discountPercentage":3.9,"discountedTotal":7207.45,"thumbnail":"https://cdn.dummyjson.com/products/images/laptops/New%20DELL%20XPS%2013%209300%20Laptop/thumbnail.png"},{"id":172,"title":"Blue Women's Handbag","price":49.99,"quantity":4,"total":199.96,"discountPercentage":8.08,"discountedTotal":183.8,"thumbnail":"https://cdn.dummyjson.com/products/images/womens-bags/Blue%20Women's%20Handbag/thumbnail.png"},{"id":41,"title":"Tissue Paper Box","price":2.49,"quantity":2,"total":4.98,"discountPercentage":2.74,"discountedTotal":4.84,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Tissue%20Paper%20Box/thumbnail.png"},{"id":37,"title":"Red Onions","price":1.99,"quantity":4,"total":7.96,"discountPercentage":8.95,"discountedTotal":7.25,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Red%20Onions/thumbnail.png"},{"id":138,"title":"Baseball Ball","price":8.99,"quantity":5,"total":44.95,"discountPercentage":18.49,"discountedTotal":36.64,"thumbnail":"https://cdn.dummyjson.com/products/images/sports-accessories/Baseball%20Ball/thumbnail.png"}],"total":7757.8,"discountedTotal":7439.98,"userId":147,"totalProducts":5,"totalQuantity":20},{"id":24,"products":[{"id":108,"title":"iPhone 12 Silicone Case with MagSafe Plum","price":29.99,"quantity":5,"total":149.95,"discountPercentage":14.68,"discountedTotal":127.94,"thumbnail":"https://cdn.dummyjson.com/products/images/mobile-accessories/iPhone%2012%20Silicone%20Case%20with%20MagSafe%20Plum/thumbnail.png"},{"id":134,"title":"Vivo S1","price":249.99,"quantity":4,"total":999.96,"discountPercentage":5.64,"discountedTotal":943.56,"thumbnail":"https://cdn.dummyjson.com/products/images/smartphones/Vivo%20S1/thumbnail.png"},{"id":174,"title":"Prada Women Bag","price":599.99,"quantity":1,"total":599.99,"discountPercentage":12.86,"discountedTotal":522.83,"thumbnail":"https://cdn.dummyjson.com/products/images/womens-bags/Prada%20Women%20Bag/thumbnail.png"}],"total":1749.9,"discountedTotal":1594.33,"userId":6,"totalProducts":3,"totalQuantity":10},{"id":25,"products":[{"id":4,"title":"Red Lipstick","price":12.99,"quantity":1,"total":12.99,"discountPercentage":14.69,"discountedTotal":11.08,"thumbnail":"https://cdn.dummyjson.com/products/images/beauty/Red%20Lipstick/thumbnail.png"},{"id":126,"title":"Oppo F19 Pro+","price":399.99,"quantity":1,"total":399.99,"discountPercentage":14.38,"discountedTotal":342.47,"thumbnail":"https://cdn.dummyjson.com/products/images/smartphones/Oppo%20F19%20Pro+/thumbnail.png"}],"total":412.98,"discountedTotal":353.55,"userId":118,"totalProducts":2,"totalQuantity":2},{"id":26,"products":[{"id":37,"title":"Red Onions","price":1.99,"quantity":5,"total":9.95,"discountPercentage":8.95,"discountedTotal":9.06,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Red%20Onions/thumbnail.png"},{"id":128,"title":"Realme C35","price":149.99,"quantity":3,"total":449.97,"discountPercentage":3.97,"discountedTotal":432.11,"thumbnail":"https://cdn.dummyjson.com/products/images/smartphones/Realme%20C35/thumbnail.png"}],"total":459.92,"discountedTotal":441.17,"userId":66,"totalProducts":2,"totalQuantity":8},{"id":27,"products":[{"id":33,"title":"Mulberry","price":4.99,"quantity":1,"total":4.99,"discountPercentage":2.75,"discountedTotal":4.85,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Mulberry/thumbnail.png"},{"id":110,"title":"Selfie Lamp with iPhone","price":14.99,"quantity":2,"total":29.98,"discountPercentage":19.87,"discountedTotal":24.02,"thumbnail":"https://cdn.dummyjson.com/products/images/mobile-accessories/Selfie%20Lamp%20with%20iPhone/thumbnail.png"},{"id":16,"title":"Apple","price":1.99,"quantity":3,"total":5.97,"discountPercentage":11.74,"discountedTotal":5.27,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Apple/thumbnail.png"},{"id":83,"title":"Blue & Black Check Shirt","price":29.99,"quantity":5,"total":149.95,"discountPercentage":8.76,"discountedTotal":136.81,"thumbnail":"https://cdn.dummyjson.com/products/images/mens-shirts/Blue%20&%20Black%20Check%20Shirt/thumbnail.png"}],"total":190.89,"discountedTotal":170.95,"userId":75,"totalProducts":4,"totalQuantity":11},{"id":28,"products":[{"id":1,"title":"Essence Mascara Lash Princess","price":9.99,"quantity":5,"total":49.95,"discountPercentage":0.63,"discountedTotal":49.64,"thumbnail":"https://cdn.dummyjson.com/products/images/beauty/Essence%20Mascara%20Lash%20Princess/thumbnail.png"},{"id":141,"title":"Basketball Rim","price":39.99,"quantity":4,"total":159.96,"discountPercentage":14.7,"discountedTotal":136.45,"thumbnail":"https://cdn.dummyjson.com/products/images/sports-accessories/Basketball%20Rim/thumbnail.png"}],"total":209.91,"discountedTotal":186.09,"userId":147,"totalProducts":2,"totalQuantity":9},{"id":29,"products":[{"id":80,"title":"Huawei Matebook X Pro","price":1399.99,"quantity":2,"total":2799.98,"discountPercentage":9.99,"discountedTotal":2520.26,"thumbnail":"https://cdn.dummyjson.com/products/images/laptops/Huawei%20Matebook%20X%20Pro/thumbnail.png"},{"id":107,"title":"Beats Flex Wireless Earphones","price":49.99,"quantity":4,"total":199.96,"discountPercentage":8.79,"discountedTotal":182.38,"thumbnail":"https://cdn.dummyjson.com/products/images/mobile-accessories/Beats%20Flex%20Wireless%20Earphones/thumbnail.png"},{"id":25,"title":"Green Bell Pepper","price":1.29,"quantity":2,"total":2.58,"discountPercentage":1.2,"discountedTotal":2.55,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Green%20Bell%20Pepper/thumbnail.png"},{"id":121,"title":"iPhone 5s","price":199.99,"quantity":4,"total":799.96,"discountPercentage":8.38,"discountedTotal":732.92,"thumbnail":"https://cdn.dummyjson.com/products/images/smartphones/iPhone%205s/thumbnail.png"},{"id":153,"title":"Volleyball","price":11.99,"quantity":5,"total":59.95,"discountPercentage":16.05,"discountedTotal":50.33,"thumbnail":"https://cdn.dummyjson.com/products/images/sports-accessories/Volleyball/thumbnail.png"}],"total":3862.43,"discountedTotal":3488.44,"userId":170,"totalProducts":5,"totalQuantity":17},{"id":30,"products":[{"id":181,"title":"Marni Red & Black Suit","price":179.99,"quantity":1,"total":179.99,"discountPercentage":14.21,"discountedTotal":154.41,"thumbnail":"https://cdn.dummyjson.com/products/images/womens-dresses/Marni%20Red%20&%20Black%20Suit/thumbnail.png"},{"id":171,"title":"Pacifica Touring","price":31999.99,"quantity":4,"total":127999.96,"discountPercentage":7.4,"discountedTotal":118527.96,"thumbnail":"https://cdn.dummyjson.com/products/images/vehicle/Pacifica%20Touring/thumbnail.png"},{"id":35,"title":"Potatoes","price":2.29,"quantity":4,"total":9.16,"discountPercentage":1.69,"discountedTotal":9.01,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Potatoes/thumbnail.png"},{"id":46,"title":"Plant Pot","price":14.99,"quantity":4,"total":59.96,"discountPercentage":17.65,"discountedTotal":49.38,"thumbnail":"https://cdn.dummyjson.com/products/images/home-decoration/Plant%20Pot/thumbnail.png"}],"total":128249.07,"discountedTotal":118740.76,"userId":177,"totalProducts":4,"totalQuantity":13}],"total":50,"skip":0,"limit":30}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Required fields exist in first cart | 1 | 0 | 0 |
| Total | 3 | 0 | 0 |
| Test Name | Assertion Error |
|---|
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNzksImV4cCI6MTc2OTk2NDc3OX0.au6-HNuanDOW1Q3iDl4MYxifr14HAULtIcahDIP9Pos |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | ed016dab-28cb-45ef-b00f-5ac4da4d433f |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExODAsImV4cCI6MTc2OTk2Mjk4MH0.a421am7-9c4bgdogT92hR4YICGdQAmH3mBrPbwPtKz8; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExODAsImV4cCI6MTc3MjU1MzE4MH0.YSCAHcUv1I0PH72s6qGZ-QdElXc_Xd9a8mvH1Vr61Zs |
| Content-Length | 0 |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:04 GMT |
| Content-Type | text/html; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 99 |
| x-ratelimit-reset | 1769961193 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| content-security-policy | default-src 'none' |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=hgWKZB94btGcEYXuWd8jHQeHIfHjRYhoiUINdxDCGP2PNZYBALr4j69KaRkryWDk6BUskRriV4SP7EO%2BRnPUqXG0D1c%2FD%2BQ%2BqXHiOuQ%3D"}]} |
| Content-Encoding | br |
| CF-RAY | 9c729e9cbb8c2891-AMM |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Error</title>
</head>
<body>
<pre>Cannot POST /carts</pre>
</body>
</html>
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Wrong method correctly returns 404 or 405 | 1 | 0 | 0 |
| Total | 1 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Retrieves detailed information about a specific shopping cart by its unique identifier.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/carts/11`
## Authentication
- **Required**: No
- This is a public endpoint that doesn't require authentication
## Parameters
### Path Variables
- `cartId` (required) - The unique identifier of the cart to retrieve
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
{
"id": 1,
"products": [
{
"id": 1,
"title": "Product Name",
"price": 549,
"quantity": 2,
"total": 1098,
"discountPercentage": 12.96,
"discountedTotal": 956
}
],
"total": 1098,
"discountedTotal": 956,
"userId": 1,
"totalProducts": 1,
"totalQuantity": 2
}
```
## Tests Included
- Validates response status code is 200
- Verifies cart ID matches request
- Checks products array structure
- Confirms total calculations are correct
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNzksImV4cCI6MTc2OTk2NDc3OX0.au6-HNuanDOW1Q3iDl4MYxifr14HAULtIcahDIP9Pos |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | a777e08a-e3da-49aa-ab2c-b5d28d501595 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExODAsImV4cCI6MTc2OTk2Mjk4MH0.a421am7-9c4bgdogT92hR4YICGdQAmH3mBrPbwPtKz8; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExODAsImV4cCI6MTc3MjU1MzE4MH0.YSCAHcUv1I0PH72s6qGZ-QdElXc_Xd9a8mvH1Vr61Zs |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:05 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 98 |
| x-ratelimit-reset | 1769961193 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"5d1-dNDH7AwlX9F89w+TElZ1Vd5INzs" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=NsybjrZQBdhfJiGwaN5s2EEC7jUrTih934xwvcnYKqkLm3pZvHjgIEAwnnBRmq6aMbqr0oAOwHzfUlryMhpD8DvXx%2F1vHCKwO%2FYqAj8%3D"}]} |
| CF-RAY | 9c729e9e4d152891-AMM |
{"id":11,"products":[{"id":88,"title":"Nike Air Jordan 1 Red And Black","price":149.99,"quantity":1,"total":149.99,"discountPercentage":17.18,"discountedTotal":124.22,"thumbnail":"https://cdn.dummyjson.com/products/images/mens-shoes/Nike%20Air%20Jordan%201%20Red%20And%20Black/thumbnail.png"},{"id":32,"title":"Milk","price":3.49,"quantity":3,"total":10.47,"discountPercentage":9.36,"discountedTotal":9.49,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Milk/thumbnail.png"},{"id":74,"title":"Spoon","price":4.99,"quantity":3,"total":14.97,"discountPercentage":2.78,"discountedTotal":14.55,"thumbnail":"https://cdn.dummyjson.com/products/images/kitchen-accessories/Spoon/thumbnail.png"},{"id":145,"title":"Cricket Wicket","price":29.99,"quantity":3,"total":89.97,"discountPercentage":17.87,"discountedTotal":73.89,"thumbnail":"https://cdn.dummyjson.com/products/images/sports-accessories/Cricket%20Wicket/thumbnail.png"},{"id":26,"title":"Green Chili Pepper","price":0.99,"quantity":3,"total":2.9699999999999998,"discountPercentage":18.69,"discountedTotal":2.41,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Green%20Chili%20Pepper/thumbnail.png"},{"id":127,"title":"Oppo K1","price":299.99,"quantity":1,"total":299.99,"discountPercentage":15.93,"discountedTotal":252.2,"thumbnail":"https://cdn.dummyjson.com/products/images/smartphones/Oppo%20K1/thumbnail.png"}],"total":568.36,"discountedTotal":476.76,"userId":172,"totalProducts":6,"totalQuantity":14}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Required fields exist in cart | 1 | 0 | 0 |
| Products array is not empty | 1 | 0 | 0 |
| Total | 4 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Retrieves all shopping carts associated with a specific user.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/carts/user/20`
## Authentication
- **Required**: No
- This is a public endpoint that doesn't require authentication
## Parameters
### Path Variables
- `userId` (required) - The unique identifier of the user whose carts to retrieve
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
{
"carts": [
{
"id": 1,
"products": [
{
"id": 1,
"title": "Product Name",
"price": 549,
"quantity": 2,
"total": 1098
}
],
"total": 1098,
"discountedTotal": 985,
"userId": 20,
"totalProducts": 1,
"totalQuantity": 2
}
],
"total": 3,
"skip": 0,
"limit": 30
}
```
## Tests Included
- Validates response status code is 200
- Verifies all carts belong to specified user
- Checks carts array structure
- Confirms user ID matches in all carts
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNzksImV4cCI6MTc2OTk2NDc3OX0.au6-HNuanDOW1Q3iDl4MYxifr14HAULtIcahDIP9Pos |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 8b7c41fa-d832-4457-a738-7b31fc0d2a0d |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExODAsImV4cCI6MTc2OTk2Mjk4MH0.a421am7-9c4bgdogT92hR4YICGdQAmH3mBrPbwPtKz8; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExODAsImV4cCI6MTc3MjU1MzE4MH0.YSCAHcUv1I0PH72s6qGZ-QdElXc_Xd9a8mvH1Vr61Zs |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:05 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 89 |
| x-ratelimit-reset | 1769961187 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"452-dejvefTk1JGhUjC9m0sxjP8K8Do" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=ai%2BO2rTacQaklpz3ke4fg6aQn%2BYKIHQ5YQuZBh69eDsHNlWM%2FzeSPN1aGB26HjRH1DyrwF%2BK1gi0i039%2BI63jzTxBZVVv7mjZhGCa8A%3D"}]} |
| CF-RAY | 9c729e9ffefc2891-AMM |
{"carts":[{"id":44,"products":[{"id":93,"title":"Brown Leather Belt Watch","price":89.99,"quantity":3,"total":269.96999999999997,"discountPercentage":8.72,"discountedTotal":246.43,"thumbnail":"https://cdn.dummyjson.com/products/images/mens-watches/Brown%20Leather%20Belt%20Watch/thumbnail.png"},{"id":4,"title":"Red Lipstick","price":12.99,"quantity":2,"total":25.98,"discountPercentage":14.69,"discountedTotal":22.16,"thumbnail":"https://cdn.dummyjson.com/products/images/beauty/Red%20Lipstick/thumbnail.png"},{"id":140,"title":"Basketball","price":14.99,"quantity":5,"total":74.95,"discountPercentage":15.7,"discountedTotal":63.18,"thumbnail":"https://cdn.dummyjson.com/products/images/sports-accessories/Basketball/thumbnail.png"},{"id":83,"title":"Blue & Black Check Shirt","price":29.99,"quantity":3,"total":89.97,"discountPercentage":8.76,"discountedTotal":82.09,"thumbnail":"https://cdn.dummyjson.com/products/images/mens-shirts/Blue%20&%20Black%20Check%20Shirt/thumbnail.png"}],"total":460.87,"discountedTotal":413.86,"userId":20,"totalProducts":4,"totalQuantity":13}],"total":1,"skip":0,"limit":1}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Creates a new shopping cart or adds products to an existing cart for a user.
## Method & Endpoint
- **Method**: `POST`
- **Endpoint**: `https://dummyjson.com/carts/add`
## Authentication
- **Required**: No
- This is a public endpoint for demonstration purposes
## Parameters
### Request Body (JSON)
```json
{
"userId": 1,
"products": [
{
"id": 1,
"quantity": 2
},
{
"id": 5,
"quantity": 1
}
]
}
```
**Required Fields**:
- `userId` - The user ID who owns the cart
- `products` - Array of product objects with `id` and `quantity`
## Expected Response
- **Status Code**: `201 Created`
- **Response Structure**: Returns the created cart with calculated totals
```json
{
"id": 21,
"products": [
{
"id": 1,
"title": "Product Name",
"price": 549,
"quantity": 2,
"total": 1098
}
],
"total": 1098,
"discountedTotal": 985,
"userId": 1,
"totalProducts": 2,
"totalQuantity": 3
}
```
## Tests Included
- Validates response status code is 201
- Verifies cart ID is assigned
- Checks product totals are calculated correctly
- Confirms all products are added to cart
| Header Name | Header Value |
|---|---|
| Content-Type | application/json |
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNzksImV4cCI6MTc2OTk2NDc3OX0.au6-HNuanDOW1Q3iDl4MYxifr14HAULtIcahDIP9Pos |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | c73f1d50-542d-43f7-b1e6-e6fe61ccacdb |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 152 |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExODAsImV4cCI6MTc2OTk2Mjk4MH0.a421am7-9c4bgdogT92hR4YICGdQAmH3mBrPbwPtKz8; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExODAsImV4cCI6MTc3MjU1MzE4MH0.YSCAHcUv1I0PH72s6qGZ-QdElXc_Xd9a8mvH1Vr61Zs |
{
"userId": 1,
"products": [
{
"id": 144,
"quantity": 4
},
{
"id": 98,
"quantity": 1
}
]
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:05 GMT |
| Content-Type | application/json; charset=utf-8 |
| Content-Length | 584 |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 97 |
| x-ratelimit-reset | 1769961193 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"248-5dWqMXWeXCBfsFmAf4sbnGOuqRg" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=AfrVUeS2eHxf3qm7H8xJVb5HXzBI7QPKgMGX9kBoJ8NlVw7JQdo2ZIBeXioyK4wlKhhezNATLSbmjl1TRii%2FtribjX%2F3XfLKpm4i5Jo%3D"}]} |
| CF-RAY | 9c729ea1a8aa2891-AMM |
{"id":51,"products":[{"id":98,"title":"Rolex Submariner Watch","price":13999.99,"quantity":4,"total":55999.96,"discountPercentage":5.05,"discountedPrice":53172,"thumbnail":"https://cdn.dummyjson.com/product-images/mens-watches/rolex-submariner-watch/thumbnail.webp"},{"id":144,"title":"Cricket Helmet","price":44.99,"quantity":1,"total":44.99,"discountPercentage":9.64,"discountedPrice":41,"thumbnail":"https://cdn.dummyjson.com/product-images/sports-accessories/cricket-helmet/thumbnail.webp"}],"total":56044.95,"discountedTotal":53213,"userId":1,"totalProducts":2,"totalQuantity":5}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 201 | 1 | 0 | 0 |
| Response has userId | 1 | 0 | 0 |
| Products have id and quantity | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 4 | 0 | 0 |
| Test Name | Assertion Error |
|---|
| Header Name | Header Value |
|---|---|
| Content-Type | application/json |
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNzksImV4cCI6MTc2OTk2NDc3OX0.au6-HNuanDOW1Q3iDl4MYxifr14HAULtIcahDIP9Pos |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 0d5feb2b-4b06-4218-b9c9-b4afd32789d7 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 113 |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExODAsImV4cCI6MTc2OTk2Mjk4MH0.a421am7-9c4bgdogT92hR4YICGdQAmH3mBrPbwPtKz8; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExODAsImV4cCI6MTc3MjU1MzE4MH0.YSCAHcUv1I0PH72s6qGZ-QdElXc_Xd9a8mvH1Vr61Zs |
{
"userId": 1,
"products": [
{
"id": 144,
"quantity": 0
}
]
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:05 GMT |
| Content-Type | application/json; charset=utf-8 |
| Content-Length | 332 |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 93 |
| x-ratelimit-reset | 1769961190 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"14c-M42jev9/jNjkfFvEKbauQtpC+2U" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=leRnGtJl3%2BMAjWjIjLAo6rOlYPS3i1jsF5r3%2FdAmWhAHjByHeGcD7fYNDT6UUXHuZTzifCPxult0IXsxVupygb6nM%2Ba6WSPPWoplVsM%3D"}]} |
| CF-RAY | 9c729ea33a412891-AMM |
{"id":51,"products":[{"id":144,"title":"Cricket Helmet","price":44.99,"quantity":1,"total":44.99,"discountPercentage":9.64,"discountedPrice":41,"thumbnail":"https://cdn.dummyjson.com/product-images/sports-accessories/cricket-helmet/thumbnail.webp"}],"total":44.99,"discountedTotal":41,"userId":1,"totalProducts":1,"totalQuantity":1}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| BUGT quantity=0 automaticalle corrected to 1 | 1 | 0 | 0 |
| Total | 1 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Updates an existing shopping cart's products and quantities.
## Method & Endpoint
- **Method**: `PUT`
- **Endpoint**: `https://dummyjson.com/carts/11`
## Authentication
- **Required**: No
- This is a public endpoint for demonstration purposes
## Parameters
### Path Variables
- `cartId` (required) - The unique identifier of the cart to update
### Request Body (JSON)
```json
{
"products": [
{
"id": 1,
"quantity": 3
},
{
"id": 10,
"quantity": 1
}
]
}
```
**Note**: The products array replaces the existing cart contents.
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**: Returns the updated cart with recalculated totals
```json
{
"id": 1,
"products": [
{
"id": 1,
"title": "Product Name",
"price": 549,
"quantity": 3,
"total": 1647
}
],
"total": 1647,
"discountedTotal": 1480,
"userId": 1,
"totalProducts": 2,
"totalQuantity": 4
}
```
## Tests Included
- Validates response status code is 200
- Verifies cart ID remains unchanged
- Checks updated quantities and totals
- Confirms product list is updated correctly
| Header Name | Header Value |
|---|---|
| Content-Type | application/json |
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNzksImV4cCI6MTc2OTk2NDc3OX0.au6-HNuanDOW1Q3iDl4MYxifr14HAULtIcahDIP9Pos |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 3dde3449-3c38-4ac0-9d93-58c812aa771d |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 78 |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExODAsImV4cCI6MTc2OTk2Mjk4MH0.a421am7-9c4bgdogT92hR4YICGdQAmH3mBrPbwPtKz8; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExODAsImV4cCI6MTc3MjU1MzE4MH0.YSCAHcUv1I0PH72s6qGZ-QdElXc_Xd9a8mvH1Vr61Zs |
{
"merge": true,
"products": [
{ "id": 1, "quantity": 1 }
]
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:06 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 88 |
| x-ratelimit-reset | 1769961187 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"6af-U879Xr8c9nPuFdwkrSazTIBwHGc" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=NQC6ZmeluLcASNEuZmJXiNXLAeHwqUz96qjX5vJxUBxB%2FrK%2FA8v40goH8%2Bxcr%2Fo4zuxI4KiAV%2FEdGX0IJMP8w8zVZTcEVpdBlrc27VQ%3D"}]} |
| CF-RAY | 9c729ea4cb7e2891-AMM |
{"id":11,"products":[{"id":88,"title":"Nike Air Jordan 1 Red And Black","price":149.99,"quantity":1,"total":149.99,"discountPercentage":17.18,"discountedPrice":124,"thumbnail":"https://cdn.dummyjson.com/products/images/mens-shoes/Nike%20Air%20Jordan%201%20Red%20And%20Black/thumbnail.png"},{"id":32,"title":"Milk","price":3.49,"quantity":3,"total":10.47,"discountPercentage":9.36,"discountedPrice":9,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Milk/thumbnail.png"},{"id":74,"title":"Spoon","price":4.99,"quantity":3,"total":14.97,"discountPercentage":2.78,"discountedPrice":15,"thumbnail":"https://cdn.dummyjson.com/products/images/kitchen-accessories/Spoon/thumbnail.png"},{"id":145,"title":"Cricket Wicket","price":29.99,"quantity":3,"total":89.97,"discountPercentage":17.87,"discountedPrice":74,"thumbnail":"https://cdn.dummyjson.com/products/images/sports-accessories/Cricket%20Wicket/thumbnail.png"},{"id":26,"title":"Green Chili Pepper","price":0.99,"quantity":3,"total":2.9699999999999998,"discountPercentage":18.69,"discountedPrice":2,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Green%20Chili%20Pepper/thumbnail.png"},{"id":127,"title":"Oppo K1","price":299.99,"quantity":1,"total":299.99,"discountPercentage":15.93,"discountedPrice":252,"thumbnail":"https://cdn.dummyjson.com/products/images/smartphones/Oppo%20K1/thumbnail.png"},{"id":1,"title":"Essence Mascara Lash Princess","price":9.99,"quantity":1,"total":9.99,"discountPercentage":10.48,"discountedPrice":9,"thumbnail":"https://cdn.dummyjson.com/product-images/beauty/essence-mascara-lash-princess/thumbnail.webp"}],"total":578.35,"discountedTotal":485,"userId":172,"totalProducts":7,"totalQuantity":15}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Deletes a specific shopping cart from the system by its unique identifier.
## Method & Endpoint
- **Method**: `DELETE`
- **Endpoint**: `https://dummyjson.com/carts/11`
## Authentication
- **Required**: No
- This is a public endpoint for demonstration purposes
## Parameters
### Path Variables
- `cartId` (required) - The unique identifier of the cart to delete
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**: Returns the deleted cart information with deletion confirmation
```json
{
"id": 1,
"products": [
{
"id": 1,
"title": "Product Name",
"price": 549,
"quantity": 2,
"total": 1098
}
],
"total": 1098,
"discountedTotal": 985,
"userId": 1,
"totalProducts": 1,
"totalQuantity": 2,
"isDeleted": true,
"deletedOn": "2024-01-01T12:00:00.000Z"
}
```
## Tests Included
- Validates response status code is 200
- Verifies `isDeleted` flag is true
- Checks deletion timestamp is present
- Confirms deleted cart details are returned
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNzksImV4cCI6MTc2OTk2NDc3OX0.au6-HNuanDOW1Q3iDl4MYxifr14HAULtIcahDIP9Pos |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | f4caa46d-f1b1-46df-be73-8b0e19488d37 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExODAsImV4cCI6MTc2OTk2Mjk4MH0.a421am7-9c4bgdogT92hR4YICGdQAmH3mBrPbwPtKz8; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExODAsImV4cCI6MTc3MjU1MzE4MH0.YSCAHcUv1I0PH72s6qGZ-QdElXc_Xd9a8mvH1Vr61Zs |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:06 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 92 |
| x-ratelimit-reset | 1769961189 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"609-Fre9nSCSoU2aVDEgaRZMJzqK8bc" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=PGBVmBq4H0IdH5YOo8dWmkD7%2BHpB5B0SjYli%2B2LgYNbyU%2BIWFE6fcQsrBcRlhreWkwe%2BxBJh24etSmjrUucvFuDq5BxPS9wisqvcIRw%3D"}]} |
| CF-RAY | 9c729ea65db32891-AMM |
{"id":11,"products":[{"id":88,"title":"Nike Air Jordan 1 Red And Black","price":149.99,"quantity":1,"total":149.99,"discountPercentage":17.18,"discountedTotal":124.22,"thumbnail":"https://cdn.dummyjson.com/products/images/mens-shoes/Nike%20Air%20Jordan%201%20Red%20And%20Black/thumbnail.png"},{"id":32,"title":"Milk","price":3.49,"quantity":3,"total":10.47,"discountPercentage":9.36,"discountedTotal":9.49,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Milk/thumbnail.png"},{"id":74,"title":"Spoon","price":4.99,"quantity":3,"total":14.97,"discountPercentage":2.78,"discountedTotal":14.55,"thumbnail":"https://cdn.dummyjson.com/products/images/kitchen-accessories/Spoon/thumbnail.png"},{"id":145,"title":"Cricket Wicket","price":29.99,"quantity":3,"total":89.97,"discountPercentage":17.87,"discountedTotal":73.89,"thumbnail":"https://cdn.dummyjson.com/products/images/sports-accessories/Cricket%20Wicket/thumbnail.png"},{"id":26,"title":"Green Chili Pepper","price":0.99,"quantity":3,"total":2.9699999999999998,"discountPercentage":18.69,"discountedTotal":2.41,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Green%20Chili%20Pepper/thumbnail.png"},{"id":127,"title":"Oppo K1","price":299.99,"quantity":1,"total":299.99,"discountPercentage":15.93,"discountedTotal":252.2,"thumbnail":"https://cdn.dummyjson.com/products/images/smartphones/Oppo%20K1/thumbnail.png"}],"total":568.36,"discountedTotal":476.76,"userId":172,"totalProducts":6,"totalQuantity":14,"isDeleted":true,"deletedOn":"2026-02-01T15:53:06.370Z"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Deleted cart has correct id | 1 | 0 | 0 |
| Response contains isDeleted flag | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 4 | 0 | 0 |
| Test Name | Assertion Error |
|---|
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNzksImV4cCI6MTc2OTk2NDc3OX0.au6-HNuanDOW1Q3iDl4MYxifr14HAULtIcahDIP9Pos |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 78f01135-f84e-4ef3-9f18-787846371e7a |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExODAsImV4cCI6MTc2OTk2Mjk4MH0.a421am7-9c4bgdogT92hR4YICGdQAmH3mBrPbwPtKz8; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExODAsImV4cCI6MTc3MjU1MzE4MH0.YSCAHcUv1I0PH72s6qGZ-QdElXc_Xd9a8mvH1Vr61Zs |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:06 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 99 |
| x-ratelimit-reset | 1769961197 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"2b-JQ/fhVd+HH8flrSxW3e6Bpvtu6A" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=0QpRMoYhAUvZ70BGuqdonOxQJYxSMwRqJenNVd8c6UJ%2F9tsdvMZ4z8I9J8LELZvjaBC6Qr1RaXO1j%2B7m3qHHczKFjflI6LuWYG%2BzNME%3D"}]} |
| Content-Encoding | br |
| CF-RAY | 9c729ea7ffb32891-AMM |
{"message":"Cart with id 'abcd' not found"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Invalid cart id handled correctly | 1 | 0 | 0 |
| Response body exists | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Retrieves a paginated list of all users in the system.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/users`
## Authentication
- **Required**: No
- This is a public endpoint that doesn't require authentication
## Parameters
- No required parameters
- Optional query parameters: `limit`, `skip` for pagination
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
{
"users": [
{
"id": 1,
"firstName": "Emily",
"lastName": "Johnson",
"email": "emily.johnson@x.dummyjson.com",
"username": "emilys",
"age": 28,
"gender": "female",
"phone": "+81 965-431-3024",
"birthDate": "1996-5-30",
"image": "https://dummyjson.com/icon/emilys/128",
"address": {...},
"company": {...}
}
],
"total": 208,
"skip": 0,
"limit": 30
}
```
## Tests Included
- Validates response status code is 200
- Verifies users array structure
- Checks pagination metadata
- Confirms user object contains required fields
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNzksImV4cCI6MTc2OTk2NDc3OX0.au6-HNuanDOW1Q3iDl4MYxifr14HAULtIcahDIP9Pos |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | ab49c852-aa50-47ff-8a68-94e93b48d177 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExODAsImV4cCI6MTc2OTk2Mjk4MH0.a421am7-9c4bgdogT92hR4YICGdQAmH3mBrPbwPtKz8; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExODAsImV4cCI6MTc3MjU1MzE4MH0.YSCAHcUv1I0PH72s6qGZ-QdElXc_Xd9a8mvH1Vr61Zs |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:06 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 87 |
| x-ratelimit-reset | 1769886055 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"a3b1-Wc+qCYPJ2IxKpnt00AlusGYMzCE" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| Age | 75137 |
| Cache-Control | no-store |
| cf-cache-status | HIT |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=cfEpJrJPRceN1BYU%2BxSGQ1PgIBdbdiVSIwAw%2FC995ybHdldCGWrVvLWpHt2tc8MXuSWWf7DfK8gQyfEgY2YyWb8PSuU0sCe8etYnSEc%3D"}]} |
| CF-RAY | 9c729ea9b9602891-AMM |
{"users":[{"id":1,"firstName":"Emily","lastName":"Johnson","maidenName":"Smith","age":29,"gender":"female","email":"emily.johnson@x.dummyjson.com","phone":"+81 965-431-3024","username":"emilys","password":"emilyspass","birthDate":"1996-5-30","image":"https://dummyjson.com/icon/emilys/128","bloodGroup":"O-","height":193.24,"weight":63.16,"eyeColor":"Green","hair":{"color":"Brown","type":"Curly"},"ip":"42.48.100.32","address":{"address":"626 Main Street","city":"Phoenix","state":"Mississippi","stateCode":"MS","postalCode":"29112","coordinates":{"lat":-77.16213,"lng":-92.084824},"country":"United States"},"macAddress":"47:fa:41:18:ec:eb","university":"University of Wisconsin--Madison","bank":{"cardExpire":"05/28","cardNumber":"3693233511855044","cardType":"Diners Club International","currency":"GBP","iban":"GB74MH2UZLR9TRPHYNU8F8"},"company":{"department":"Engineering","name":"Dooley, Kozey and Cronin","title":"Sales Manager","address":{"address":"263 Tenth Street","city":"San Francisco","state":"Wisconsin","stateCode":"WI","postalCode":"37657","coordinates":{"lat":71.814525,"lng":-161.150263},"country":"United States"}},"ein":"977-175","ssn":"900-590-289","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"admin"},{"id":2,"firstName":"Michael","lastName":"Williams","maidenName":"","age":36,"gender":"male","email":"michael.williams@x.dummyjson.com","phone":"+49 258-627-6644","username":"michaelw","password":"michaelwpass","birthDate":"1989-8-10","image":"https://dummyjson.com/icon/michaelw/128","bloodGroup":"B+","height":186.22,"weight":76.32,"eyeColor":"Red","hair":{"color":"Green","type":"Straight"},"ip":"12.13.116.142","address":{"address":"385 Fifth Street","city":"Houston","state":"Alabama","stateCode":"AL","postalCode":"38807","coordinates":{"lat":22.815468,"lng":115.608581},"country":"United States"},"macAddress":"79:15:78:99:60:aa","university":"Ohio State University","bank":{"cardExpire":"01/30","cardNumber":"3530633803003665","cardType":"JCB","currency":"USD","iban":"DE26362283149158045865"},"company":{"department":"Support","name":"Spinka - Dickinson","title":"Support Specialist","address":{"address":"395 Main Street","city":"Los Angeles","state":"New Hampshire","stateCode":"NH","postalCode":"73442","coordinates":{"lat":79.098326,"lng":-119.624845},"country":"United States"}},"ein":"912-602","ssn":"108-953-962","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Edge/97.0.1072.76 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"admin"},{"id":3,"firstName":"Sophia","lastName":"Brown","maidenName":"","age":43,"gender":"female","email":"sophia.brown@x.dummyjson.com","phone":"+81 210-652-2785","username":"sophiab","password":"sophiabpass","birthDate":"1982-11-6","image":"https://dummyjson.com/icon/sophiab/128","bloodGroup":"O-","height":177.72,"weight":52.6,"eyeColor":"Hazel","hair":{"color":"White","type":"Wavy"},"ip":"214.225.51.195","address":{"address":"1642 Ninth Street","city":"Washington","state":"Alabama","stateCode":"AL","postalCode":"32822","coordinates":{"lat":45.289366,"lng":46.832664},"country":"United States"},"macAddress":"12:a3:d3:6f:5c:5b","university":"Pepperdine University","bank":{"cardExpire":"10/27","cardNumber":"6011212053392887","cardType":"Discover","currency":"EUR","iban":"DE12191213468288004835"},"company":{"department":"Research and Development","name":"Schiller - Zieme","title":"Accountant","address":{"address":"1896 Washington Street","city":"Dallas","state":"Nevada","stateCode":"NV","postalCode":"88511","coordinates":{"lat":20.086743,"lng":-34.577107},"country":"United States"}},"ein":"963-113","ssn":"638-461-822","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"admin"},{"id":4,"firstName":"James","lastName":"Davis","maidenName":"","age":46,"gender":"male","email":"james.davis@x.dummyjson.com","phone":"+49 614-958-9364","username":"jamesd","password":"jamesdpass","birthDate":"1979-5-4","image":"https://dummyjson.com/icon/jamesd/128","bloodGroup":"AB+","height":193.31,"weight":62.1,"eyeColor":"Amber","hair":{"color":"Blonde","type":"Straight"},"ip":"101.118.131.66","address":{"address":"238 Jefferson Street","city":"Seattle","state":"Pennsylvania","stateCode":"PA","postalCode":"68354","coordinates":{"lat":16.782513,"lng":-139.34723},"country":"United States"},"macAddress":"10:7d:df:1f:97:58","university":"University of Southern California","bank":{"cardExpire":"07/30","cardNumber":"5303440212268149","cardType":"Mastercard","currency":"CAD","iban":"DE01300746880579852937"},"company":{"department":"Support","name":"Pagac and Sons","title":"Research Analyst","address":{"address":"1622 Lincoln Street","city":"Fort Worth","state":"Pennsylvania","stateCode":"PA","postalCode":"27768","coordinates":{"lat":54.91193,"lng":-79.498328},"country":"United States"}},"ein":"904-810","ssn":"116-951-314","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"admin"},{"id":5,"firstName":"Emma","lastName":"Miller","maidenName":"Johnson","age":31,"gender":"female","email":"emma.miller@x.dummyjson.com","phone":"+91 759-776-1614","username":"emmaj","password":"emmajpass","birthDate":"1994-6-13","image":"https://dummyjson.com/icon/emmaj/128","bloodGroup":"AB-","height":192.8,"weight":63.62,"eyeColor":"Green","hair":{"color":"White","type":"Straight"},"ip":"224.126.22.183","address":{"address":"607 Fourth Street","city":"Jacksonville","state":"Colorado","stateCode":"CO","postalCode":"26593","coordinates":{"lat":0.505589,"lng":-157.43281},"country":"United States"},"macAddress":"32:b9:7e:8d:f5:e8","university":"Northeastern University","bank":{"cardExpire":"07/30","cardNumber":"5237188057591130","cardType":"Mastercard","currency":"NZD","iban":"DE19182355652037133559"},"company":{"department":"Human Resources","name":"Graham - Gulgowski","title":"Quality Assurance Engineer","address":{"address":"1460 Sixth Street","city":"San Antonio","state":"Idaho","stateCode":"ID","postalCode":"21965","coordinates":{"lat":44.346545,"lng":-26.944701},"country":"United States"}},"ein":"403-505","ssn":"526-210-885","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:97.0) Gecko/20100101 Firefox/97.0","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"admin"},{"id":6,"firstName":"Olivia","lastName":"Wilson","maidenName":"","age":23,"gender":"female","email":"olivia.wilson@x.dummyjson.com","phone":"+91 607-295-6448","username":"oliviaw","password":"oliviawpass","birthDate":"2002-4-20","image":"https://dummyjson.com/icon/oliviaw/128","bloodGroup":"B+","height":182.61,"weight":58,"eyeColor":"Hazel","hair":{"color":"Gray","type":"Curly"},"ip":"249.178.112.207","address":{"address":"547 First Street","city":"Fort Worth","state":"Tennessee","stateCode":"TN","postalCode":"83843","coordinates":{"lat":75.32627,"lng":-26.15285},"country":"United States"},"macAddress":"9c:7f:ea:34:18:19","university":"University of North Carolina--Chapel Hill","bank":{"cardExpire":"06/30","cardNumber":"376320072452632","cardType":"American Express","currency":"NZD","iban":"DE21153814367894194071"},"company":{"department":"Product Management","name":"Pfannerstill Inc","title":"Research Analyst","address":{"address":"425 Sixth Street","city":"Indianapolis","state":"Oklahoma","stateCode":"OK","postalCode":"74263","coordinates":{"lat":74.986644,"lng":-132.916888},"country":"United States"}},"ein":"921-709","ssn":"836-772-168","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.3 Safari/605.1.15","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"moderator"},{"id":7,"firstName":"Alexander","lastName":"Jones","maidenName":"","age":39,"gender":"male","email":"alexander.jones@x.dummyjson.com","phone":"+61 260-824-4986","username":"alexanderj","password":"alexanderjpass","birthDate":"1986-10-20","image":"https://dummyjson.com/icon/alexanderj/128","bloodGroup":"AB-","height":153.89,"weight":77.42,"eyeColor":"Blue","hair":{"color":"White","type":"Straight"},"ip":"166.204.84.32","address":{"address":"664 Maple Street","city":"Indianapolis","state":"Delaware","stateCode":"DE","postalCode":"86684","coordinates":{"lat":35.289664,"lng":7.063255},"country":"United States"},"macAddress":"d2:64:58:2d:1c:46","university":"University of Illinois--Urbana-Champaign","bank":{"cardExpire":"12/29","cardNumber":"5189302549548693","cardType":"Mastercard","currency":"PKR","iban":"DE67517655968963441488"},"company":{"department":"Engineering","name":"Dickens - Beahan","title":"Web Developer","address":{"address":"996 Eighth Street","city":"Washington","state":"Kansas","stateCode":"KS","postalCode":"27858","coordinates":{"lat":-75.462366,"lng":-128.025697},"country":"United States"}},"ein":"638-127","ssn":"722-993-925","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"moderator"},{"id":8,"firstName":"Ava","lastName":"Taylor","maidenName":"","age":28,"gender":"female","email":"ava.taylor@x.dummyjson.com","phone":"+1 458-853-7877","username":"avat","password":"avatpass","birthDate":"1997-8-25","image":"https://dummyjson.com/icon/avat/128","bloodGroup":"AB-","height":168.47,"weight":57.08,"eyeColor":"Hazel","hair":{"color":"Red","type":"Kinky"},"ip":"150.73.197.233","address":{"address":"1197 First Street","city":"Fort Worth","state":"Rhode Island","stateCode":"RI","postalCode":"24771","coordinates":{"lat":-81.194833,"lng":-87.948158},"country":"United States"},"macAddress":"8d:2e:c2:d6:e7:a8","university":"University of Wisconsin--Madison","bank":{"cardExpire":"08/30","cardNumber":"5349974103330333","cardType":"Mastercard","currency":"EUR","iban":"FR94ZM2MMGL1EVYQE1ZLCVCFH83"},"company":{"department":"Marketing","name":"Nikolaus Inc","title":"Chief Executive Officer","address":{"address":"930 Lincoln Street","city":"Austin","state":"Colorado","stateCode":"CO","postalCode":"47592","coordinates":{"lat":87.970083,"lng":-42.769351},"country":"United States"}},"ein":"297-762","ssn":"257-419-109","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"moderator"},{"id":9,"firstName":"Ethan","lastName":"Martinez","maidenName":"","age":34,"gender":"male","email":"ethan.martinez@x.dummyjson.com","phone":"+92 933-608-5081","username":"ethanm","password":"ethanmpass","birthDate":"1991-2-12","image":"https://dummyjson.com/icon/ethanm/128","bloodGroup":"AB+","height":159.19,"weight":68.81,"eyeColor":"Hazel","hair":{"color":"Purple","type":"Curly"},"ip":"63.191.127.71","address":{"address":"466 Pine Street","city":"San Antonio","state":"Louisiana","stateCode":"LA","postalCode":"72360","coordinates":{"lat":74.074918,"lng":-25.312703},"country":"United States"},"macAddress":"59:e:9e:e3:29:da","university":"Syracuse University","bank":{"cardExpire":"10/27","cardNumber":"3598603288061479","cardType":"JCB","currency":"GBP","iban":"GB26PND7D83JTW4HL6LZ71"},"company":{"department":"Support","name":"Gorczany - Gottlieb","title":"Legal Counsel","address":{"address":"1597 Oak Street","city":"Chicago","state":"Florida","stateCode":"FL","postalCode":"28100","coordinates":{"lat":-67.45208,"lng":-23.209886},"country":"United States"}},"ein":"790-434","ssn":"569-650-348","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"moderator"},{"id":10,"firstName":"Isabella","lastName":"Anderson","maidenName":"Davis","age":32,"gender":"female","email":"isabella.anderson@x.dummyjson.com","phone":"+49 770-658-4885","username":"isabellad","password":"isabelladpass","birthDate":"1993-6-10","image":"https://dummyjson.com/icon/isabellad/128","bloodGroup":"A-","height":150.56,"weight":50.1,"eyeColor":"Brown","hair":{"color":"Blonde","type":"Curly"},"ip":"114.9.114.205","address":{"address":"1964 Oak Street","city":"New York","state":"Utah","stateCode":"UT","postalCode":"89352","coordinates":{"lat":41.331324,"lng":151.782727},"country":"United States"},"macAddress":"b1:b0:d0:a2:82:80","university":"California Institute of Technology (Caltech)","bank":{"cardExpire":"03/30","cardNumber":"3602093733952858","cardType":"Diners Club International","currency":"USD","iban":"DE12934874962442340025"},"company":{"department":"Marketing","name":"Pollich - Hilpert","title":"Chief Financial Officer","address":{"address":"1029 Adams Street","city":"San Diego","state":"Maryland","stateCode":"MD","postalCode":"63847","coordinates":{"lat":-25.843393,"lng":-62.692681},"country":"United States"}},"ein":"127-297","ssn":"902-438-728","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"moderator"},{"id":11,"firstName":"Liam","lastName":"Garcia","maidenName":"","age":30,"gender":"male","email":"liam.garcia@x.dummyjson.com","phone":"+92 870-217-6201","username":"liamg","password":"liamgpass","birthDate":"1995-6-6","image":"https://dummyjson.com/icon/liamg/128","bloodGroup":"AB-","height":162.32,"weight":93.16,"eyeColor":"Violet","hair":{"color":"Red","type":"Wavy"},"ip":"56.201.85.9","address":{"address":"576 Fifth Street","city":"Denver","state":"South Dakota","stateCode":"SD","postalCode":"57252","coordinates":{"lat":-66.218177,"lng":-145.340165},"country":"United States"},"macAddress":"31:9a:28:8b:99:6c","university":"Ohio State University","bank":{"cardExpire":"12/29","cardNumber":"3614993744940956","cardType":"Diners Club International","currency":"USD","iban":"DE65581882748067758114"},"company":{"department":"Services","name":"Considine - Torp","title":"Web Developer","address":{"address":"27 Cedar Street","city":"Philadelphia","state":"Connecticut","stateCode":"CT","postalCode":"79574","coordinates":{"lat":-81.841588,"lng":31.79423},"country":"United States"}},"ein":"326-604","ssn":"933-784-949","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"moderator"},{"id":12,"firstName":"Mia","lastName":"Rodriguez","maidenName":"","age":25,"gender":"female","email":"mia.rodriguez@x.dummyjson.com","phone":"+49 989-461-8403","username":"miar","password":"miarpass","birthDate":"2000-8-4","image":"https://dummyjson.com/icon/miar/128","bloodGroup":"O-","height":188.08,"weight":56.03,"eyeColor":"Blue","hair":{"color":"Purple","type":"Wavy"},"ip":"11.72.253.90","address":{"address":"1627 Sixth Street","city":"Jacksonville","state":"West Virginia","stateCode":"WV","postalCode":"41810","coordinates":{"lat":24.857497,"lng":-34.865429},"country":"United States"},"macAddress":"53:d7:a4:6:1e:58","university":"William & Mary","bank":{"cardExpire":"02/29","cardNumber":"343932350909214","cardType":"American Express","currency":"CAD","iban":"DE77118774979880310165"},"company":{"department":"Accounting","name":"Miller, Schowalter and Wisozk","title":"Business Analyst","address":{"address":"1039 Washington Street","city":"Philadelphia","state":"New Jersey","stateCode":"NJ","postalCode":"57518","coordinates":{"lat":85.455933,"lng":164.246103},"country":"United States"}},"ein":"754-660","ssn":"749-524-124","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"moderator"},{"id":13,"firstName":"Noah","lastName":"Hernandez","maidenName":"","age":41,"gender":"male","email":"noah.hernandez@x.dummyjson.com","phone":"+49 393-605-6968","username":"noahh","password":"noahhpass","birthDate":"1984-6-5","image":"https://dummyjson.com/icon/noahh/128","bloodGroup":"AB+","height":188.62,"weight":69.49,"eyeColor":"Brown","hair":{"color":"Red","type":"Curly"},"ip":"169.154.126.57","address":{"address":"1413 Maple Street","city":"New York","state":"North Dakota","stateCode":"ND","postalCode":"73696","coordinates":{"lat":-25.0377,"lng":-151.70469},"country":"United States"},"macAddress":"d4:fe:ae:8f:eb:a3","university":"New York University (NYU)","bank":{"cardExpire":"03/30","cardNumber":"6262462852322850","cardType":"UnionPay","currency":"PKR","iban":"DE13437032020581217601"},"company":{"department":"Engineering","name":"Botsford, Marquardt and Roberts","title":"Database Administrator","address":{"address":"62 Third Street","city":"Seattle","state":"Oregon","stateCode":"OR","postalCode":"83474","coordinates":{"lat":19.490447,"lng":-13.173207},"country":"United States"}},"ein":"877-628","ssn":"660-847-389","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"moderator"},{"id":14,"firstName":"Charlotte","lastName":"Lopez","maidenName":"Martinez","age":37,"gender":"female","email":"charlotte.lopez@x.dummyjson.com","phone":"+44 373-953-5028","username":"charlottem","password":"charlottempass","birthDate":"1988-6-8","image":"https://dummyjson.com/icon/charlottem/128","bloodGroup":"AB-","height":178.92,"weight":82.46,"eyeColor":"Brown","hair":{"color":"Gray","type":"Kinky"},"ip":"119.103.95.60","address":{"address":"208 Second Street","city":"Columbus","state":"Ohio","stateCode":"OH","postalCode":"42044","coordinates":{"lat":-44.443762,"lng":-151.420561},"country":"United States"},"macAddress":"f6:ff:37:aa:6c:f1","university":"Northeastern University","bank":{"cardExpire":"12/27","cardNumber":"3634388457177035","cardType":"Diners Club International","currency":"PKR","iban":"DE54092147842698685963"},"company":{"department":"Accounting","name":"Zulauf and Sons","title":"Chief Executive Officer","address":{"address":"569 Jefferson Street","city":"Los Angeles","state":"Montana","stateCode":"MT","postalCode":"17779","coordinates":{"lat":-18.371256,"lng":22.566258},"country":"United States"}},"ein":"364-782","ssn":"255-491-479","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"moderator"},{"id":15,"firstName":"William","lastName":"Gonzalez","maidenName":"","age":33,"gender":"male","email":"william.gonzalez@x.dummyjson.com","phone":"+81 905-252-7319","username":"williamg","password":"williamgpass","birthDate":"1992-3-27","image":"https://dummyjson.com/icon/williamg/128","bloodGroup":"B-","height":173.21,"weight":82.41,"eyeColor":"Hazel","hair":{"color":"Gray","type":"Curly"},"ip":"250.2.241.204","address":{"address":"31 Maple Street","city":"San Jose","state":"Utah","stateCode":"UT","postalCode":"78243","coordinates":{"lat":8.152876,"lng":113.29799},"country":"United States"},"macAddress":"f5:68:28:f9:ec:89","university":"Tufts University","bank":{"cardExpire":"05/30","cardNumber":"6228256225004929","cardType":"UnionPay","currency":"PKR","iban":"DE63711022986572448914"},"company":{"department":"Marketing","name":"Spinka - Dickinson","title":"Software Architect","address":{"address":"1538 Eighth Street","city":"San Jose","state":"Missouri","stateCode":"MO","postalCode":"29673","coordinates":{"lat":24.169361,"lng":-29.395167},"country":"United States"}},"ein":"830-515","ssn":"690-544-755","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"moderator"},{"id":16,"firstName":"Avery","lastName":"Perez","maidenName":"","age":26,"gender":"female","email":"avery.perez@x.dummyjson.com","phone":"+61 731-431-3457","username":"averyp","password":"averyppass","birthDate":"1999-3-10","image":"https://dummyjson.com/icon/averyp/128","bloodGroup":"O-","height":172.68,"weight":93.9,"eyeColor":"Brown","hair":{"color":"Green","type":"Curly"},"ip":"131.217.4.214","address":{"address":"1125 First Street","city":"Columbus","state":"Iowa","stateCode":"IA","postalCode":"30973","coordinates":{"lat":12.789127,"lng":85.792598},"country":"United States"},"macAddress":"b3:ff:f3:c5:37:46","university":"Harvard University","bank":{"cardExpire":"08/29","cardNumber":"378024038311910","cardType":"American Express","currency":"USD","iban":"DE42403186906981858976"},"company":{"department":"Accounting","name":"Herzog Inc","title":"Database Administrator","address":{"address":"183 Maple Street","city":"New York","state":"Rhode Island","stateCode":"RI","postalCode":"45238","coordinates":{"lat":-53.318189,"lng":105.835271},"country":"United States"}},"ein":"348-493","ssn":"679-523-686","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":17,"firstName":"Evelyn","lastName":"Sanchez","maidenName":"","age":38,"gender":"female","email":"evelyn.sanchez@x.dummyjson.com","phone":"+1 623-880-6871","username":"evelyns","password":"evelynspass","birthDate":"1987-10-13","image":"https://dummyjson.com/icon/evelyns/128","bloodGroup":"B+","height":184.08,"weight":83.15,"eyeColor":"Violet","hair":{"color":"Blue","type":"Curly"},"ip":"87.114.135.146","address":{"address":"1170 Lincoln Street","city":"San Diego","state":"Wyoming","stateCode":"WY","postalCode":"43423","coordinates":{"lat":-83.31484,"lng":11.768071},"country":"United States"},"macAddress":"f8:e5:bd:43:bc:d8","university":"Washington University in St. Louis","bank":{"cardExpire":"01/29","cardNumber":"3514443781649095","cardType":"JCB","currency":"GBP","iban":"GB74239MLVNQ0UB9ANTFRM"},"company":{"department":"Support","name":"Predovic - Johns","title":"Chief Financial Officer","address":{"address":"1802 Ninth Street","city":"San Diego","state":"Minnesota","stateCode":"MN","postalCode":"89416","coordinates":{"lat":29.034592,"lng":-78.004598},"country":"United States"}},"ein":"604-817","ssn":"689-332-644","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":18,"firstName":"Logan","lastName":"Torres","maidenName":"","age":32,"gender":"male","email":"logan.torres@x.dummyjson.com","phone":"+81 507-434-8733","username":"logant","password":"logantpass","birthDate":"1993-10-26","image":"https://dummyjson.com/icon/logant/128","bloodGroup":"A+","height":190.04,"weight":72.43,"eyeColor":"Green","hair":{"color":"Green","type":"Curly"},"ip":"155.98.15.162","address":{"address":"907 Seventh Street","city":"Columbus","state":"Arkansas","stateCode":"AR","postalCode":"78805","coordinates":{"lat":-64.846516,"lng":174.775744},"country":"United States"},"macAddress":"40:d:5c:1:7d:bf","university":"University of Illinois--Urbana-Champaign","bank":{"cardExpire":"04/30","cardNumber":"6258651210557142","cardType":"UnionPay","currency":"EUR","iban":"ES1171429445321693077621"},"company":{"department":"Training","name":"Jast - Nader","title":"Data Analyst","address":{"address":"947 Main Street","city":"Denver","state":"Minnesota","stateCode":"MN","postalCode":"71896","coordinates":{"lat":-24.654063,"lng":-147.255268},"country":"United States"}},"ein":"576-218","ssn":"806-639-934","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":19,"firstName":"Abigail","lastName":"Rivera","maidenName":"","age":29,"gender":"female","email":"abigail.rivera@x.dummyjson.com","phone":"+91 228-363-7806","username":"abigailr","password":"abigailrpass","birthDate":"1996-10-11","image":"https://dummyjson.com/icon/abigailr/128","bloodGroup":"B+","height":186.39,"weight":74.61,"eyeColor":"Violet","hair":{"color":"Blue","type":"Kinky"},"ip":"19.183.240.94","address":{"address":"996 Oak Street","city":"Chicago","state":"New Mexico","stateCode":"NM","postalCode":"11407","coordinates":{"lat":44.321308,"lng":-3.723903},"country":"United States"},"macAddress":"1d:a6:58:2a:e5:e4","university":"California Institute of Technology (Caltech)","bank":{"cardExpire":"01/27","cardNumber":"6011399019022417","cardType":"Discover","currency":"EUR","iban":"IT11QP2B5J81QM1FBX029VI5DD68O"},"company":{"department":"Human Resources","name":"Prohaska - Thiel","title":"Business Analyst","address":{"address":"1402 Adams Street","city":"Austin","state":"Wisconsin","stateCode":"WI","postalCode":"51456","coordinates":{"lat":25.672938,"lng":-76.54967},"country":"United States"}},"ein":"173-637","ssn":"655-823-929","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Edge/97.0.1072.76 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":20,"firstName":"Jackson","lastName":"Evans","maidenName":"","age":35,"gender":"male","email":"jackson.evans@x.dummyjson.com","phone":"+44 468-628-6686","username":"jacksone","password":"jacksonepass","birthDate":"1990-11-30","image":"https://dummyjson.com/icon/jacksone/128","bloodGroup":"O-","height":162.57,"weight":74.37,"eyeColor":"Green","hair":{"color":"Red","type":"Straight"},"ip":"221.127.144.198","address":{"address":"1873 Main Street","city":"New York","state":"Arkansas","stateCode":"AR","postalCode":"26600","coordinates":{"lat":34.722451,"lng":63.448927},"country":"United States"},"macAddress":"81:14:1:97:88:85","university":"Ohio State University","bank":{"cardExpire":"07/30","cardNumber":"376760688512826","cardType":"American Express","currency":"GBP","iban":"GB27CM0H0MNPXSPDGA0A1O"},"company":{"department":"Legal","name":"Kuhlman LLC","title":"Web Developer","address":{"address":"1706 First Street","city":"Chicago","state":"Hawaii","stateCode":"HI","postalCode":"34725","coordinates":{"lat":-80.416937,"lng":-83.224516},"country":"United States"}},"ein":"843-260","ssn":"248-787-886","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":21,"firstName":"Madison","lastName":"Collins","maidenName":"","age":27,"gender":"female","email":"madison.collins@x.dummyjson.com","phone":"+81 259-957-5711","username":"madisonc","password":"madisoncpass","birthDate":"1998-3-7","image":"https://dummyjson.com/icon/madisonc/128","bloodGroup":"B-","height":189.28,"weight":56.96,"eyeColor":"Red","hair":{"color":"Gray","type":"Curly"},"ip":"85.34.1.204","address":{"address":"1892 Lincoln Street","city":"Philadelphia","state":"New Jersey","stateCode":"NJ","postalCode":"62091","coordinates":{"lat":52.993694,"lng":160.486892},"country":"United States"},"macAddress":"13:b0:d0:23:4d:26","university":"University of Pennsylvania","bank":{"cardExpire":"09/27","cardNumber":"5551259848327064","cardType":"Mastercard","currency":"EUR","iban":"ES3893300143587765232049"},"company":{"department":"Engineering","name":"Mayer - Smitham","title":"Chief Technology Officer","address":{"address":"1438 Main Street","city":"San Diego","state":"Delaware","stateCode":"DE","postalCode":"63144","coordinates":{"lat":1.629613,"lng":23.232982},"country":"United States"}},"ein":"716-166","ssn":"457-258-950","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":22,"firstName":"Elijah","lastName":"Stewart","maidenName":"","age":34,"gender":"male","email":"elijah.stewart@x.dummyjson.com","phone":"+44 468-357-7872","username":"elijahs","password":"elijahspass","birthDate":"1991-10-22","image":"https://dummyjson.com/icon/elijahs/128","bloodGroup":"A-","height":195.33,"weight":81.64,"eyeColor":"Blue","hair":{"color":"Purple","type":"Straight"},"ip":"23.87.135.62","address":{"address":"1701 Eighth Street","city":"Columbus","state":"Illinois","stateCode":"IL","postalCode":"31585","coordinates":{"lat":-54.833799,"lng":-174.504027},"country":"United States"},"macAddress":"75:17:c6:35:fc:6d","university":"Georgetown University","bank":{"cardExpire":"05/28","cardNumber":"3648138556543460","cardType":"Diners Club International","currency":"EUR","iban":"DE82018985741195770313"},"company":{"department":"Legal","name":"Langworth Group","title":"Business Analyst","address":{"address":"155 Ninth Street","city":"Washington","state":"South Dakota","stateCode":"SD","postalCode":"19039","coordinates":{"lat":61.279254,"lng":-12.607767},"country":"United States"}},"ein":"520-394","ssn":"287-380-801","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":23,"firstName":"Chloe","lastName":"Morales","maidenName":"","age":40,"gender":"female","email":"chloe.morales@x.dummyjson.com","phone":"+92 468-541-7133","username":"chloem","password":"chloempass","birthDate":"1985-4-21","image":"https://dummyjson.com/icon/chloem/128","bloodGroup":"O+","height":185.07,"weight":63.97,"eyeColor":"Brown","hair":{"color":"Red","type":"Kinky"},"ip":"66.78.20.21","address":{"address":"401 Fourth Street","city":"Dallas","state":"New Jersey","stateCode":"NJ","postalCode":"54972","coordinates":{"lat":-30.190759,"lng":-58.705979},"country":"United States"},"macAddress":"fc:f:29:e1:37:b8","university":"Syracuse University","bank":{"cardExpire":"09/30","cardNumber":"347036238254235","cardType":"American Express","currency":"CNY","iban":"DE77762461851744284392"},"company":{"department":"Sales","name":"Grady LLC","title":"Database Administrator","address":{"address":"269 Third Street","city":"Houston","state":"North Carolina","stateCode":"NC","postalCode":"10385","coordinates":{"lat":40.098115,"lng":-1.762972},"country":"United States"}},"ein":"913-597","ssn":"938-883-163","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":24,"firstName":"Mateo","lastName":"Nguyen","maidenName":"","age":31,"gender":"male","email":"mateo.nguyen@x.dummyjson.com","phone":"+1 341-597-6694","username":"mateon","password":"mateonpass","birthDate":"1994-6-2","image":"https://dummyjson.com/icon/mateon/128","bloodGroup":"O+","height":174.29,"weight":59.98,"eyeColor":"Red","hair":{"color":"Purple","type":"Wavy"},"ip":"192.57.144.7","address":{"address":"1578 Fourth Street","city":"Columbus","state":"Missouri","stateCode":"MO","postalCode":"20673","coordinates":{"lat":-32.828675,"lng":-82.557354},"country":"United States"},"macAddress":"a7:26:10:7a:36:29","university":"Columbia University","bank":{"cardExpire":"12/29","cardNumber":"4021840414995098","cardType":"Visa","currency":"CAD","iban":"DE43275561962007561223"},"company":{"department":"Accounting","name":"Spinka LLC","title":"Business Analyst","address":{"address":"1967 Jefferson Street","city":"Dallas","state":"Louisiana","stateCode":"LA","postalCode":"78527","coordinates":{"lat":75.982676,"lng":164.459743},"country":"United States"}},"ein":"229-249","ssn":"416-877-230","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":25,"firstName":"Harper","lastName":"Kelly","maidenName":"Evans","age":28,"gender":"female","email":"harper.kelly@x.dummyjson.com","phone":"+92 518-863-2863","username":"harpere","password":"harperepass","birthDate":"1997-3-3","image":"https://dummyjson.com/icon/harpere/128","bloodGroup":"AB-","height":184.32,"weight":81.69,"eyeColor":"Amber","hair":{"color":"Red","type":"Curly"},"ip":"174.111.61.162","address":{"address":"1591 Adams Street","city":"Philadelphia","state":"New York","stateCode":"NY","postalCode":"69521","coordinates":{"lat":-26.832913,"lng":-75.445017},"country":"United States"},"macAddress":"b:ff:33:67:94:e4","university":"Boston College","bank":{"cardExpire":"06/27","cardNumber":"4488823564436432","cardType":"Visa","currency":"EUR","iban":"ES5874149276753342261515"},"company":{"department":"Legal","name":"Leffler, Rolfson and Becker","title":"Business Development Manager","address":{"address":"16 Maple Street","city":"Austin","state":"North Carolina","stateCode":"NC","postalCode":"68274","coordinates":{"lat":-15.423746,"lng":149.298887},"country":"United States"}},"ein":"592-557","ssn":"209-544-548","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":26,"firstName":"Evelyn","lastName":"Gonzalez","maidenName":"","age":36,"gender":"female","email":"evelyn.gonzalez@x.dummyjson.com","phone":"+61 708-508-4638","username":"evelyng","password":"evelyngpass","birthDate":"1989-2-5","image":"https://dummyjson.com/icon/evelyng/128","bloodGroup":"O+","height":168.94,"weight":58.47,"eyeColor":"Red","hair":{"color":"Black","type":"Wavy"},"ip":"42.52.74.232","address":{"address":"1065 Lincoln Street","city":"Dallas","state":"Maine","stateCode":"ME","postalCode":"84898","coordinates":{"lat":67.768359,"lng":71.268643},"country":"United States"},"macAddress":"89:5e:5a:2a:72:42","university":"Washington University in St. Louis","bank":{"cardExpire":"08/28","cardNumber":"6011735364912274","cardType":"Discover","currency":"CAD","iban":"DE27147353096476220032"},"company":{"department":"Accounting","name":"Tromp, Gaylord and Weber","title":"Project Manager","address":{"address":"584 Ninth Street","city":"Jacksonville","state":"Wisconsin","stateCode":"WI","postalCode":"45633","coordinates":{"lat":26.014021,"lng":40.572436},"country":"United States"}},"ein":"569-275","ssn":"487-680-127","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":27,"firstName":"Daniel","lastName":"Cook","maidenName":"","age":42,"gender":"male","email":"daniel.cook@x.dummyjson.com","phone":"+44 254-761-6843","username":"danielc","password":"danielcpass","birthDate":"1983-12-25","image":"https://dummyjson.com/icon/danielc/128","bloodGroup":"AB+","height":186.21,"weight":83.72,"eyeColor":"Brown","hair":{"color":"Blonde","type":"Curly"},"ip":"1.61.73.142","address":{"address":"1163 Pine Street","city":"Los Angeles","state":"Nevada","stateCode":"NV","postalCode":"58781","coordinates":{"lat":-3.456681,"lng":-134.937482},"country":"United States"},"macAddress":"6e:73:dc:3a:85:10","university":"Columbia University","bank":{"cardExpire":"05/29","cardNumber":"5485409595328150","cardType":"Mastercard","currency":"NZD","iban":"DE71341603969952506034"},"company":{"department":"Support","name":"Morissette, Baumbach and Auer","title":"Legal Counsel","address":{"address":"938 Fifth Street","city":"San Francisco","state":"South Dakota","stateCode":"SD","postalCode":"45305","coordinates":{"lat":21.323588,"lng":-83.531427},"country":"United States"}},"ein":"585-905","ssn":"645-515-583","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:97.0) Gecko/20100101 Firefox/97.0","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":28,"firstName":"Lily","lastName":"Lee","maidenName":"Brown","age":30,"gender":"female","email":"lily.lee@x.dummyjson.com","phone":"+1 808-757-9867","username":"lilyb","password":"lilybpass","birthDate":"1995-12-3","image":"https://dummyjson.com/icon/lilyb/128","bloodGroup":"AB-","height":181.42,"weight":51.49,"eyeColor":"Gray","hair":{"color":"Purple","type":"Straight"},"ip":"67.184.255.96","address":{"address":"1946 Oak Street","city":"Phoenix","state":"Massachusetts","stateCode":"MA","postalCode":"41540","coordinates":{"lat":-9.87059,"lng":-72.336845},"country":"United States"},"macAddress":"18:b6:c7:a:50:3f","university":"Johns Hopkins University","bank":{"cardExpire":"12/28","cardNumber":"5551782139834613","cardType":"Mastercard","currency":"CAD","iban":"DE49484285539189712621"},"company":{"department":"Product Management","name":"Cremin Inc","title":"Quality Assurance Engineer","address":{"address":"1735 Cedar Street","city":"Phoenix","state":"Wyoming","stateCode":"WY","postalCode":"85797","coordinates":{"lat":72.231441,"lng":-158.147245},"country":"United States"}},"ein":"229-776","ssn":"358-185-671","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Edge/97.0.1072.76 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":29,"firstName":"Henry","lastName":"Hill","maidenName":"","age":39,"gender":"male","email":"henry.hill@x.dummyjson.com","phone":"+1 240-833-4680","username":"henryh","password":"henryhpass","birthDate":"1986-8-19","image":"https://dummyjson.com/icon/henryh/128","bloodGroup":"O-","height":180.25,"weight":95.84,"eyeColor":"Gray","hair":{"color":"Black","type":"Straight"},"ip":"194.43.55.202","address":{"address":"1837 Maple Street","city":"Indianapolis","state":"Delaware","stateCode":"DE","postalCode":"81783","coordinates":{"lat":35.498256,"lng":154.088476},"country":"United States"},"macAddress":"fa:c3:1b:21:5f:44","university":"University of Illinois--Urbana-Champaign","bank":{"cardExpire":"11/29","cardNumber":"3625097026040498","cardType":"Diners Club International","currency":"EUR","iban":"DE08820336197191865470"},"company":{"department":"Services","name":"Gerlach, Funk and Schoen","title":"Sales Manager","address":{"address":"1651 Lincoln Street","city":"San Francisco","state":"West Virginia","stateCode":"WV","postalCode":"61805","coordinates":{"lat":-59.936335,"lng":-12.405368},"country":"United States"}},"ein":"118-957","ssn":"925-686-100","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":30,"firstName":"Addison","lastName":"Wright","maidenName":"","age":33,"gender":"female","email":"addison.wright@x.dummyjson.com","phone":"+1 514-384-3300","username":"addisonw","password":"addisonwpass","birthDate":"1992-1-3","image":"https://dummyjson.com/icon/addisonw/128","bloodGroup":"B+","height":179.32,"weight":76.93,"eyeColor":"Brown","hair":{"color":"Blonde","type":"Straight"},"ip":"11.35.69.81","address":{"address":"568 Tenth Street","city":"San Francisco","state":"Montana","stateCode":"MT","postalCode":"54698","coordinates":{"lat":20.946052,"lng":100.228822},"country":"United States"},"macAddress":"fb:0:94:21:16:c","university":"Syracuse University","bank":{"cardExpire":"06/28","cardNumber":"5274971895809762","cardType":"Mastercard","currency":"PKR","iban":"DE91480955939051635497"},"company":{"department":"Services","name":"Kreiger Inc","title":"Human Resources Manager","address":{"address":"1173 Eighth Street","city":"San Diego","state":"Michigan","stateCode":"MI","postalCode":"85777","coordinates":{"lat":65.324413,"lng":87.142893},"country":"United States"}},"ein":"415-286","ssn":"804-492-390","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"}],"total":208,"skip":0,"limit":30}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 2 | 0 | 0 |
| Total | 3 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Authenticates a user with username and password, returning an access token for subsequent authenticated requests.
## Method & Endpoint
- **Method**: `POST`
- **Endpoint**: `https://dummyjson.com/auth/login`
## Authentication
- **Required**: No (this endpoint provides authentication)
## Parameters
### Request Body (JSON)
```json
{
"username": "emilys",
"password": "emilyspass"
}
```
**Required Fields**:
- `username` - User's username
- `password` - User's password
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
{
"id": 1,
"username": "emilys",
"email": "emily.johnson@x.dummyjson.com",
"firstName": "Emily",
"lastName": "Johnson",
"gender": "female",
"image": "https://dummyjson.com/icon/emilys/128",
"accessToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
"refreshToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."
}
```
## Tests Included
- Validates response status code is 200
- Verifies access token is present
- Stores token in environment variable `eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNzksImV4cCI6MTc2OTk2NDc3OX0.au6-HNuanDOW1Q3iDl4MYxifr14HAULtIcahDIP9Pos`
- Checks user details are returned
| Header Name | Header Value |
|---|---|
| Content-Type | application/json |
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNzksImV4cCI6MTc2OTk2NDc3OX0.au6-HNuanDOW1Q3iDl4MYxifr14HAULtIcahDIP9Pos |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 2598369d-2044-4038-bdf7-e43b86687ba5 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 83 |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExODAsImV4cCI6MTc2OTk2Mjk4MH0.a421am7-9c4bgdogT92hR4YICGdQAmH3mBrPbwPtKz8; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExODAsImV4cCI6MTc3MjU1MzE4MH0.YSCAHcUv1I0PH72s6qGZ-QdElXc_Xd9a8mvH1Vr61Zs |
{
"username": "emilys",
"password": "emilyspass",
"expiresInMins": 30
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:07 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 92 |
| x-ratelimit-reset | 1769961190 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| Set-Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExODcsImV4cCI6MTc2OTk2Mjk4N30.DqT-C9CysofiCBIJ38doJeAHkbfuG1LhDUFNlt2ramQ; Max-Age=1800; Path=/; Expires=Sun, 01 Feb 2026 16:23:07 GMT; HttpOnly; Secure |
| Set-Cookie | refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExODcsImV4cCI6MTc3MjU1MzE4N30.zsYW95FT02SrYntHFHJp5DrnOIPTHrf6qy26DBopoUQ; Max-Age=1800; Path=/; Expires=Sun, 01 Feb 2026 16:23:07 GMT; HttpOnly; Secure |
| etag | W/"3a2-M8WXKHLBO88q6QIGmG4xvvQ4GmA" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=kSuc9yOt%2F325DosPyV5Wvg8i%2FZeqYMuGoumuAbTsVhLULTO09L1sZGKsiqHU9CYWQKf3NxEejbI3%2FpP1re929knrUQZfKoa8kMLSt%2Fs%3D"}]} |
| Content-Encoding | br |
| CF-RAY | 9c729eaa6a0e2891-AMM |
{"accessToken":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExODcsImV4cCI6MTc2OTk2Mjk4N30.DqT-C9CysofiCBIJ38doJeAHkbfuG1LhDUFNlt2ramQ","refreshToken":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExODcsImV4cCI6MTc3MjU1MzE4N30.zsYW95FT02SrYntHFHJp5DrnOIPTHrf6qy26DBopoUQ","id":1,"username":"emilys","email":"emily.johnson@x.dummyjson.com","firstName":"Emily","lastName":"Johnson","gender":"female","image":"https://dummyjson.com/icon/emilys/128"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 2 | 0 | 0 |
| Total | 3 | 0 | 0 |
| Test Name | Assertion Error |
|---|
| Header Name | Header Value |
|---|---|
| Content-Type | application/json |
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNzksImV4cCI6MTc2OTk2NDc3OX0.au6-HNuanDOW1Q3iDl4MYxifr14HAULtIcahDIP9Pos |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 4e485526-8d02-4342-90de-9c4aed0894f8 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 82 |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExODcsImV4cCI6MTc2OTk2Mjk4N30.DqT-C9CysofiCBIJ38doJeAHkbfuG1LhDUFNlt2ramQ; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExODcsImV4cCI6MTc3MjU1MzE4N30.zsYW95FT02SrYntHFHJp5DrnOIPTHrf6qy26DBopoUQ |
{
"username": "anood",
"password": "emilyspass",
"expiresInMins": 30
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:07 GMT |
| Content-Type | application/json; charset=utf-8 |
| Content-Length | 33 |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 91 |
| x-ratelimit-reset | 1769961190 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"21-dBEoW0UmTF+EGUMaprEp9/8zNNA" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=oNyJPehoM7zhiSaO7bppq8jm5yTdB9jiJY0ZNZAWLfYNQt13D%2FipGF%2F76s7ynTsF5rY7wvHFWwmJrLxy5F2fswyM7vUnf1PuyJHShBE%3D"}]} |
| CF-RAY | 9c729eac1ba62891-AMM |
{"message":"Invalid credentials"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Invalid credentials handled | 1 | 0 | 0 |
| Error message exists | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Retrieves the profile information of the currently authenticated user based on the provided access token.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/auth/me`
## Authentication
- **Required**: Yes
- **Type**: Bearer Token
- **Header**: `Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNzksImV4cCI6MTc2OTk2NDc3OX0.au6-HNuanDOW1Q3iDl4MYxifr14HAULtIcahDIP9Pos`
## Parameters
- No parameters required
- Authentication token must be provided in Authorization header
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
{
"id": 1,
"firstName": "Emily",
"lastName": "Johnson",
"email": "emily.johnson@x.dummyjson.com",
"username": "emilys",
"age": 28,
"gender": "female",
"phone": "+81 965-431-3024",
"birthDate": "1996-5-30",
"image": "https://dummyjson.com/icon/emilys/128",
"address": {...},
"company": {...}
}
```
## Tests Included
- Validates response status code is 200
- Verifies authenticated user details are returned
- Checks all user profile fields are present
- Confirms token authentication is working
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNzksImV4cCI6MTc2OTk2NDc3OX0.au6-HNuanDOW1Q3iDl4MYxifr14HAULtIcahDIP9Pos |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 52f2d594-0a6f-4bd9-a339-41ee799f0d87 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExODcsImV4cCI6MTc2OTk2Mjk4N30.DqT-C9CysofiCBIJ38doJeAHkbfuG1LhDUFNlt2ramQ; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExODcsImV4cCI6MTc3MjU1MzE4N30.zsYW95FT02SrYntHFHJp5DrnOIPTHrf6qy26DBopoUQ |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:07 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 90 |
| x-ratelimit-reset | 1769961190 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"58f-CoL/KoXlW3x1PtqQr3wqPsXj6DE" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=J1aDrO%2BkaB9ZrXSh6BN%2F6nORpQ2CSxTQmfj8Xt4shLrVNsfBd%2FP0I%2FIlNxwYKIJpueGw%2Fl%2B2Zx8n5sApFSjg5Qz9DD9ZUEwhs%2Bk0GYY%3D"}]} |
| CF-RAY | 9c729eadad5c2891-AMM |
{"id":1,"firstName":"Emily","lastName":"Johnson","maidenName":"Smith","age":29,"gender":"female","email":"emily.johnson@x.dummyjson.com","phone":"+81 965-431-3024","username":"emilys","password":"emilyspass","birthDate":"1996-5-30","image":"https://dummyjson.com/icon/emilys/128","bloodGroup":"O-","height":193.24,"weight":63.16,"eyeColor":"Green","hair":{"color":"Brown","type":"Curly"},"ip":"42.48.100.32","address":{"address":"626 Main Street","city":"Phoenix","state":"Mississippi","stateCode":"MS","postalCode":"29112","coordinates":{"lat":-77.16213,"lng":-92.084824},"country":"United States"},"macAddress":"47:fa:41:18:ec:eb","university":"University of Wisconsin--Madison","bank":{"cardExpire":"05/28","cardNumber":"3693233511855044","cardType":"Diners Club International","currency":"GBP","iban":"GB74MH2UZLR9TRPHYNU8F8"},"company":{"department":"Engineering","name":"Dooley, Kozey and Cronin","title":"Sales Manager","address":{"address":"263 Tenth Street","city":"San Francisco","state":"Wisconsin","stateCode":"WI","postalCode":"37657","coordinates":{"lat":71.814525,"lng":-161.150263},"country":"United States"}},"ein":"977-175","ssn":"900-590-289","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"admin"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 2 | 0 | 0 |
| Total | 3 | 0 | 0 |
| Test Name | Assertion Error |
|---|
| Header Name | Header Value |
|---|---|
| Authorization | Bearer 123456 |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 5ced687e-770c-4d7a-be44-3475a35a7c50 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExODcsImV4cCI6MTc2OTk2Mjk4N30.DqT-C9CysofiCBIJ38doJeAHkbfuG1LhDUFNlt2ramQ; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExODcsImV4cCI6MTc3MjU1MzE4N30.zsYW95FT02SrYntHFHJp5DrnOIPTHrf6qy26DBopoUQ |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:07 GMT |
| Content-Type | application/json; charset=utf-8 |
| Content-Length | 36 |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 98 |
| x-ratelimit-reset | 1769961197 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| Set-Cookie | accessToken=; Path=/; Expires=Thu, 01 Jan 1970 00:00:00 GMT |
| Set-Cookie | refreshToken=; Path=/; Expires=Thu, 01 Jan 1970 00:00:00 GMT |
| etag | W/"24-xqucZbgfFI1MEKHBW2jR/IjHNdY" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=dC9B0Um5KRIcd%2F3JruvfTJME1xuvskkRmIpCoP1kXRZzUpY8L97GQpcRjNzNquu38SrBPsbGQ%2FpX7LmE9BGTlAFDq%2Bt5pk7A3GuGkYg%3D"}]} |
| CF-RAY | 9c729eaf4f392891-AMM |
{"message":"Invalid/Expired Token!"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Invalid token | 1 | 0 | 0 |
| Error message exists | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Retrieves detailed information about a specific user by their unique identifier.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/users/4`
## Authentication
- **Required**: No
- This is a public endpoint that doesn't require authentication
## Parameters
### Path Variables
- `userId` (required) - The unique identifier of the user to retrieve
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
{
"id": 1,
"firstName": "Emily",
"lastName": "Johnson",
"email": "emily.johnson@x.dummyjson.com",
"username": "emilys",
"age": 28,
"gender": "female",
"phone": "+81 965-431-3024",
"birthDate": "1996-5-30",
"image": "https://dummyjson.com/icon/emilys/128",
"address": {
"address": "626 Main Street",
"city": "Phoenix",
"state": "Mississippi",
"country": "United States",
"postalCode": "29112"
},
"company": {
"name": "Dooley and Sons",
"title": "Sales Manager"
}
}
```
## Tests Included
- Validates response status code is 200
- Verifies user ID matches request
- Checks all user profile fields are present
- Confirms address and company objects structure
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNzksImV4cCI6MTc2OTk2NDc3OX0.au6-HNuanDOW1Q3iDl4MYxifr14HAULtIcahDIP9Pos |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 53a98f37-44a9-4c5f-a45f-e118845de159 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:08 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 91 |
| x-ratelimit-reset | 1769961189 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"577-Z3kifpL3J1jktd9eGnQ28K8KFtI" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=Km8MYuys932BnfU8PqN1DBWhXfEBE6rvidqwwLInuAV35R6Ml6Z8rWn1HSH0jSvB1FWYxwSZPkdA1JesYrcS6JBcPuvZwxZX9dycdGk%3D"}]} |
| CF-RAY | 9c729eb0e9152891-AMM |
{"id":4,"firstName":"James","lastName":"Davis","maidenName":"","age":46,"gender":"male","email":"james.davis@x.dummyjson.com","phone":"+49 614-958-9364","username":"jamesd","password":"jamesdpass","birthDate":"1979-5-4","image":"https://dummyjson.com/icon/jamesd/128","bloodGroup":"AB+","height":193.31,"weight":62.1,"eyeColor":"Amber","hair":{"color":"Blonde","type":"Straight"},"ip":"101.118.131.66","address":{"address":"238 Jefferson Street","city":"Seattle","state":"Pennsylvania","stateCode":"PA","postalCode":"68354","coordinates":{"lat":16.782513,"lng":-139.34723},"country":"United States"},"macAddress":"10:7d:df:1f:97:58","university":"University of Southern California","bank":{"cardExpire":"07/30","cardNumber":"5303440212268149","cardType":"Mastercard","currency":"CAD","iban":"DE01300746880579852937"},"company":{"department":"Support","name":"Pagac and Sons","title":"Research Analyst","address":{"address":"1622 Lincoln Street","city":"Fort Worth","state":"Pennsylvania","stateCode":"PA","postalCode":"27768","coordinates":{"lat":54.91193,"lng":-79.498328},"country":"United States"}},"ein":"904-810","ssn":"116-951-314","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"admin"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Required fields exist | 1 | 0 | 0 |
| Total | 3 | 0 | 0 |
| Test Name | Assertion Error |
|---|
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNzksImV4cCI6MTc2OTk2NDc3OX0.au6-HNuanDOW1Q3iDl4MYxifr14HAULtIcahDIP9Pos |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | dd0cc543-7265-4f49-9e23-e223bb1ce26a |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:08 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 97 |
| x-ratelimit-reset | 1769961197 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"2b-ZhauGgbHQlYpTPzEWJLt9JF5uhE" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=MikQlZF%2Bh9tY4zKjRPvFCOBrSJyAhmpz7sptwsczcWNS42%2BLK8Fk0%2FrHvLgBA3WuxUpmKuPsmOTHA6sGubPmWIpDYljuzyo6awaGvRQ%3D"}]} |
| Content-Encoding | br |
| CF-RAY | 9c729eb29b0c2891-AMM |
{"message":"User with id '9999' not found"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Invalid User ID should not succeed | 1 | 0 | 0 |
| Error message exists | 1 | 0 | 0 |
| BUG , Returned users for Invalid ID | 1 | 0 | 0 |
| Total | 3 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Searches for users based on a query string, returning all users that match the search criteria.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/users/search?q=John`
## Authentication
- **Required**: No
- This is a public endpoint that doesn't require authentication
## Parameters
### Query Parameters
- `q` (required) - The search query string to find matching users (searches across name, username, email, etc.)
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
{
"users": [
{
"id": 1,
"firstName": "John",
"lastName": "Doe",
"email": "john.doe@x.dummyjson.com",
"username": "johnd",
"age": 30,
...
}
],
"total": 5,
"skip": 0,
"limit": 30
}
```
## Tests Included
- Validates response status code is 200
- Verifies users array exists
- Checks pagination metadata (total, skip, limit)
- Confirms search results match query criteria
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNzksImV4cCI6MTc2OTk2NDc3OX0.au6-HNuanDOW1Q3iDl4MYxifr14HAULtIcahDIP9Pos |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | eb541258-91e0-417b-b921-779a76a4df3b |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:08 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 96 |
| x-ratelimit-reset | 1769961197 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"1092-DffrDnJxyiPiDr/F4xPdXlAPNCM" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=%2FOJW8z7sR%2Bd1o4QN5apbC7j8Oe5WA0MkH8Ex9LD5zTcoFfw8%2BQaGv8lmD%2BKklxec8XNj4cnPP5I9HEulbaQCa%2FyVXlf32h4oUf7OL7Y%3D"}]} |
| CF-RAY | 9c729eb44cd02891-AMM |
{"users":[{"id":1,"firstName":"Emily","lastName":"Johnson","maidenName":"Smith","age":29,"gender":"female","email":"emily.johnson@x.dummyjson.com","phone":"+81 965-431-3024","username":"emilys","password":"emilyspass","birthDate":"1996-5-30","image":"https://dummyjson.com/icon/emilys/128","bloodGroup":"O-","height":193.24,"weight":63.16,"eyeColor":"Green","hair":{"color":"Brown","type":"Curly"},"ip":"42.48.100.32","address":{"address":"626 Main Street","city":"Phoenix","state":"Mississippi","stateCode":"MS","postalCode":"29112","coordinates":{"lat":-77.16213,"lng":-92.084824},"country":"United States"},"macAddress":"47:fa:41:18:ec:eb","university":"University of Wisconsin--Madison","bank":{"cardExpire":"05/28","cardNumber":"3693233511855044","cardType":"Diners Club International","currency":"GBP","iban":"GB74MH2UZLR9TRPHYNU8F8"},"company":{"department":"Engineering","name":"Dooley, Kozey and Cronin","title":"Sales Manager","address":{"address":"263 Tenth Street","city":"San Francisco","state":"Wisconsin","stateCode":"WI","postalCode":"37657","coordinates":{"lat":71.814525,"lng":-161.150263},"country":"United States"}},"ein":"977-175","ssn":"900-590-289","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"admin"},{"id":102,"firstName":"John","lastName":"Doe","maidenName":"","age":36,"gender":"male","email":"john.doe@x.dummyjson.com","phone":"+44 242-757-6754","username":"johnd","password":"johndpass","birthDate":"1989-2-20","image":"https://dummyjson.com/icon/johnd/128","bloodGroup":"B-","height":179.44,"weight":93.42,"eyeColor":"Brown","hair":{"color":"Blonde","type":"Wavy"},"ip":"1.250.48.36","address":{"address":"37 Second Street","city":"Fort Worth","state":"New York","stateCode":"NY","postalCode":"33991","coordinates":{"lat":-66.043758,"lng":-59.356632},"country":"United States"},"macAddress":"6d:ab:13:25:a0:10","university":"Brown University","bank":{"cardExpire":"04/30","cardNumber":"3654883476033545","cardType":"Diners Club International","currency":"GBP","iban":"GB50FILIYPYET62B22GD66"},"company":{"department":"Accounting","name":"Aufderhar - Cormier","title":"Business Analyst","address":{"address":"1095 Adams Street","city":"Washington","state":"Missouri","stateCode":"MO","postalCode":"43273","coordinates":{"lat":63.930802,"lng":88.782366},"country":"United States"}},"ein":"861-925","ssn":"824-760-922","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":104,"firstName":"Michael","lastName":"Johnson","maidenName":"","age":25,"gender":"male","email":"michael.johnson@x.dummyjson.com","phone":"+92 290-825-4767","username":"michaelj","password":"michaeljpass","birthDate":"2000-1-6","image":"https://dummyjson.com/icon/michaelj/128","bloodGroup":"A+","height":164.38,"weight":97.18,"eyeColor":"Red","hair":{"color":"White","type":"Curly"},"ip":"115.37.119.66","address":{"address":"1252 Washington Street","city":"Phoenix","state":"Maryland","stateCode":"MD","postalCode":"64002","coordinates":{"lat":-79.040825,"lng":100.576804},"country":"United States"},"macAddress":"29:bc:a7:64:58:48","university":"University of Miami","bank":{"cardExpire":"04/30","cardNumber":"5503135276268039","cardType":"Mastercard","currency":"INR","iban":"DE80210977585310104611"},"company":{"department":"Marketing","name":"Wisozk, Schamberger and Huels","title":"Systems Analyst","address":{"address":"378 Madison Street","city":"Columbus","state":"South Dakota","stateCode":"SD","postalCode":"34297","coordinates":{"lat":-74.566078,"lng":-90.962102},"country":"United States"}},"ein":"819-102","ssn":"924-462-933","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"}],"total":3,"skip":0,"limit":3}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Users array not empty | 1 | 0 | 0 |
| First user has id | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 4 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Filters users based on a specific field key-value pair, allowing precise user data filtering.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/users/filter?key=hair.color&value=Brown`
## Authentication
- **Required**: No
- This is a public endpoint that doesn't require authentication
## Parameters
### Query Parameters
- `key` (required) - The field path to filter by (supports nested fields with dot notation, e.g., `hair.color`, `address.city`)
- `value` (required) - The value to match for the specified key
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
{
"users": [
{
"id": 1,
"firstName": "Emily",
"lastName": "Johnson",
"hair": {
"color": "Brown",
"type": "Curly"
},
...
}
],
"total": 50,
"skip": 0,
"limit": 30
}
```
## Tests Included
- Validates response status code is 200
- Verifies all users match the filter criteria
- Checks filtered field contains expected value
- Confirms pagination metadata is present
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNzksImV4cCI6MTc2OTk2NDc3OX0.au6-HNuanDOW1Q3iDl4MYxifr14HAULtIcahDIP9Pos |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | e6d5e3ee-e50c-4a04-b20f-45da21f8cbfe |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:08 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 99 |
| x-ratelimit-reset | 1769961199 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"7caa-OItcDQBJ3m1BPDRUpluqCm9ogM0" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=%2BdtoqhueYoTLBRbdCm9ks6i%2FLftmoRKvM%2BW5WeHUZYpj6vSM%2Bt6CcWaxIh28yvTcv02XmKqp4oHDbICUbq3iK4Bhe5abeZ668VaEz1o%3D"}]} |
| CF-RAY | 9c729eb5eeee2891-AMM |
{"users":[{"id":1,"firstName":"Emily","lastName":"Johnson","maidenName":"Smith","age":29,"gender":"female","email":"emily.johnson@x.dummyjson.com","phone":"+81 965-431-3024","username":"emilys","password":"emilyspass","birthDate":"1996-5-30","image":"https://dummyjson.com/icon/emilys/128","bloodGroup":"O-","height":193.24,"weight":63.16,"eyeColor":"Green","hair":{"color":"Brown","type":"Curly"},"ip":"42.48.100.32","address":{"address":"626 Main Street","city":"Phoenix","state":"Mississippi","stateCode":"MS","postalCode":"29112","coordinates":{"lat":-77.16213,"lng":-92.084824},"country":"United States"},"macAddress":"47:fa:41:18:ec:eb","university":"University of Wisconsin--Madison","bank":{"cardExpire":"05/28","cardNumber":"3693233511855044","cardType":"Diners Club International","currency":"GBP","iban":"GB74MH2UZLR9TRPHYNU8F8"},"company":{"department":"Engineering","name":"Dooley, Kozey and Cronin","title":"Sales Manager","address":{"address":"263 Tenth Street","city":"San Francisco","state":"Wisconsin","stateCode":"WI","postalCode":"37657","coordinates":{"lat":71.814525,"lng":-161.150263},"country":"United States"}},"ein":"977-175","ssn":"900-590-289","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"admin"},{"id":33,"firstName":"Carter","lastName":"Baker","maidenName":"","age":32,"gender":"male","email":"carter.baker@x.dummyjson.com","phone":"+49 787-512-9117","username":"carterb","password":"carterbpass","birthDate":"1993-4-19","image":"https://dummyjson.com/icon/carterb/128","bloodGroup":"A+","height":190.96,"weight":70.78,"eyeColor":"Green","hair":{"color":"Brown","type":"Straight"},"ip":"167.111.147.45","address":{"address":"625 Third Street","city":"Denver","state":"Oregon","stateCode":"OR","postalCode":"74622","coordinates":{"lat":-63.00584,"lng":76.189171},"country":"United States"},"macAddress":"35:0:ad:91:5f:f3","university":"Washington University in St. Louis","bank":{"cardExpire":"04/30","cardNumber":"5286984910566529","cardType":"Mastercard","currency":"AUD","iban":"DE50017878346071444444"},"company":{"department":"Product Management","name":"Luettgen and Sons","title":"Software Engineer","address":{"address":"127 Cedar Street","city":"Washington","state":"South Carolina","stateCode":"SC","postalCode":"17426","coordinates":{"lat":71.127142,"lng":174.470146},"country":"United States"}},"ein":"193-203","ssn":"927-818-529","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":51,"firstName":"Eli","lastName":"Bennett","maidenName":"","age":30,"gender":"male","email":"eli.bennett@x.dummyjson.com","phone":"+1 465-379-7226","username":"elib","password":"elibpass","birthDate":"1995-9-17","image":"https://dummyjson.com/icon/elib/128","bloodGroup":"B+","height":170.61,"weight":91.22,"eyeColor":"Gray","hair":{"color":"Brown","type":"Kinky"},"ip":"144.73.131.148","address":{"address":"1423 Main Street","city":"Jacksonville","state":"Idaho","stateCode":"ID","postalCode":"34271","coordinates":{"lat":-15.022759,"lng":58.392572},"country":"United States"},"macAddress":"f6:59:76:66:c0:85","university":"Boston University","bank":{"cardExpire":"04/28","cardNumber":"3644848905447957","cardType":"Diners Club International","currency":"GBP","iban":"GB4969YU8ZX5UYTERMTE5X"},"company":{"department":"Accounting","name":"Waters, Ankunding and Green","title":"Chief Operating Officer","address":{"address":"1536 Fourth Street","city":"Indianapolis","state":"Michigan","stateCode":"MI","postalCode":"77147","coordinates":{"lat":-49.858979,"lng":-21.940443},"country":"United States"}},"ein":"222-408","ssn":"216-126-647","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":54,"firstName":"Ava","lastName":"Harrison","maidenName":"","age":29,"gender":"female","email":"ava.harrison@x.dummyjson.com","phone":"+44 926-778-4653","username":"avah","password":"avahpass","birthDate":"1996-4-22","image":"https://dummyjson.com/icon/avah/128","bloodGroup":"O-","height":155.72,"weight":93.47,"eyeColor":"Hazel","hair":{"color":"Brown","type":"Curly"},"ip":"225.40.138.177","address":{"address":"1094 Adams Street","city":"San Antonio","state":"Vermont","stateCode":"VT","postalCode":"14336","coordinates":{"lat":-84.032892,"lng":-46.255902},"country":"United States"},"macAddress":"4e:2b:e4:33:7a:f8","university":"Harvard University","bank":{"cardExpire":"01/27","cardNumber":"3694482369735209","cardType":"Diners Club International","currency":"AUD","iban":"DE64412118002973670494"},"company":{"department":"Engineering","name":"Blanda - Jacobson","title":"Legal Counsel","address":{"address":"1374 Cedar Street","city":"Philadelphia","state":"Delaware","stateCode":"DE","postalCode":"21641","coordinates":{"lat":-56.564069,"lng":-134.42879},"country":"United States"}},"ein":"145-780","ssn":"621-536-422","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":59,"firstName":"Ethan","lastName":"Fletcher","maidenName":"","age":34,"gender":"male","email":"ethan.fletcher@x.dummyjson.com","phone":"+1 251-564-2643","username":"ethanf","password":"ethanfpass","birthDate":"1991-5-1","image":"https://dummyjson.com/icon/ethanf/128","bloodGroup":"AB-","height":183.99,"weight":83.98,"eyeColor":"Violet","hair":{"color":"Brown","type":"Curly"},"ip":"21.94.6.7","address":{"address":"789 Main Street","city":"Dallas","state":"Arkansas","stateCode":"AR","postalCode":"87924","coordinates":{"lat":29.411519,"lng":23.598322},"country":"United States"},"macAddress":"b2:fd:ca:1b:3b:a5","university":"Cornell University","bank":{"cardExpire":"02/27","cardNumber":"4440217612919449","cardType":"Visa","currency":"AUD","iban":"DE42359669771256255400"},"company":{"department":"Training","name":"Halvorson LLC","title":"Data Scientist","address":{"address":"258 Tenth Street","city":"Washington","state":"Texas","stateCode":"TX","postalCode":"10371","coordinates":{"lat":45.367618,"lng":-147.524292},"country":"United States"}},"ein":"610-786","ssn":"577-991-233","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":78,"firstName":"Eleanor","lastName":"Tyler","maidenName":"","age":31,"gender":"female","email":"eleanor.tyler@x.dummyjson.com","phone":"+1 232-621-9938","username":"eleanort","password":"eleanortpass","birthDate":"1994-10-26","image":"https://dummyjson.com/icon/eleanort/128","bloodGroup":"O-","height":195.85,"weight":70.03,"eyeColor":"Green","hair":{"color":"Brown","type":"Wavy"},"ip":"54.87.239.213","address":{"address":"439 Pine Street","city":"San Antonio","state":"New Hampshire","stateCode":"NH","postalCode":"64622","coordinates":{"lat":51.5965,"lng":47.479982},"country":"United States"},"macAddress":"df:94:e1:e7:3a:7","university":"Wake Forest University","bank":{"cardExpire":"03/30","cardNumber":"6282984352125703","cardType":"UnionPay","currency":"EUR","iban":"DE60851175428733331885"},"company":{"department":"Product Management","name":"Hilpert and Sons","title":"Web Developer","address":{"address":"580 Seventh Street","city":"Jacksonville","state":"Indiana","stateCode":"IN","postalCode":"57924","coordinates":{"lat":-3.475554,"lng":-138.094068},"country":"United States"}},"ein":"668-175","ssn":"688-176-797","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":83,"firstName":"Dylan","lastName":"Wells","maidenName":"","age":35,"gender":"male","email":"dylan.wells@x.dummyjson.com","phone":"+49 659-638-1106","username":"dylanw","password":"dylanwpass","birthDate":"1990-11-7","image":"https://dummyjson.com/icon/dylanw/128","bloodGroup":"O+","height":156.56,"weight":83.29,"eyeColor":"Amber","hair":{"color":"Brown","type":"Curly"},"ip":"254.112.7.252","address":{"address":"816 Sixth Street","city":"Philadelphia","state":"West Virginia","stateCode":"WV","postalCode":"54522","coordinates":{"lat":-82.623651,"lng":33.259567},"country":"United States"},"macAddress":"b7:c7:29:ff:e0:49","university":"William & Mary","bank":{"cardExpire":"07/29","cardNumber":"3597467382729154","cardType":"JCB","currency":"AUD","iban":"DE62128867521743907285"},"company":{"department":"Services","name":"Schmidt - Hyatt","title":"Support Specialist","address":{"address":"360 Sixth Street","city":"Seattle","state":"Florida","stateCode":"FL","postalCode":"16124","coordinates":{"lat":61.755934,"lng":-149.215844},"country":"United States"}},"ein":"560-210","ssn":"572-136-332","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":103,"firstName":"Emily","lastName":"Brown","maidenName":"Taylor","age":43,"gender":"female","email":"emily.brown@x.dummyjson.com","phone":"+61 875-999-8871","username":"emilyt","password":"emilytpass","birthDate":"1982-12-5","image":"https://dummyjson.com/icon/emilyt/128","bloodGroup":"AB-","height":181.96,"weight":89.65,"eyeColor":"Blue","hair":{"color":"Brown","type":"Kinky"},"ip":"41.156.197.109","address":{"address":"1962 Fourth Street","city":"Houston","state":"Hawaii","stateCode":"HI","postalCode":"67104","coordinates":{"lat":-64.336051,"lng":135.876737},"country":"United States"},"macAddress":"3b:9b:ee:cf:1f:de","university":"Georgetown University","bank":{"cardExpire":"09/30","cardNumber":"374970244492890","cardType":"American Express","currency":"INR","iban":"DE06646067555223276327"},"company":{"department":"Research and Development","name":"Pfannerstill Inc","title":"Data Analyst","address":{"address":"1998 Main Street","city":"Indianapolis","state":"Arizona","stateCode":"AZ","postalCode":"57190","coordinates":{"lat":-83.995771,"lng":127.669213},"country":"United States"}},"ein":"844-425","ssn":"119-906-830","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":105,"firstName":"Emma","lastName":"Wilson","maidenName":"Clark","age":32,"gender":"female","email":"emma.wilson@x.dummyjson.com","phone":"+49 933-975-3236","username":"emmac","password":"emmacpass","birthDate":"1993-6-2","image":"https://dummyjson.com/icon/emmac/128","bloodGroup":"O+","height":164.59,"weight":97.44,"eyeColor":"Gray","hair":{"color":"Brown","type":"Straight"},"ip":"23.240.162.228","address":{"address":"888 Lincoln Street","city":"New York","state":"Kansas","stateCode":"KS","postalCode":"85313","coordinates":{"lat":64.320835,"lng":-25.984113},"country":"United States"},"macAddress":"64:a6:72:4d:9e:79","university":"Tufts University","bank":{"cardExpire":"03/30","cardNumber":"6011728212195820","cardType":"Discover","currency":"CNY","iban":"DE03754619165111286589"},"company":{"department":"Sales","name":"Nienow - Fritsch","title":"Software Engineer","address":{"address":"1302 Adams Street","city":"San Francisco","state":"Alaska","stateCode":"AK","postalCode":"39028","coordinates":{"lat":-78.519188,"lng":-144.614396},"country":"United States"}},"ein":"108-918","ssn":"690-817-970","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":112,"firstName":"Alexander","lastName":"Hernandez","maidenName":"","age":42,"gender":"male","email":"alexander.hernandez@x.dummyjson.com","phone":"+49 410-245-8608","username":"alexanderh","password":"alexanderhpass","birthDate":"1983-7-4","image":"https://dummyjson.com/icon/alexanderh/128","bloodGroup":"B-","height":172.2,"weight":82.3,"eyeColor":"Blue","hair":{"color":"Brown","type":"Kinky"},"ip":"145.104.53.16","address":{"address":"329 Second Street","city":"Dallas","state":"Idaho","stateCode":"ID","postalCode":"49314","coordinates":{"lat":14.101714,"lng":-148.130379},"country":"United States"},"macAddress":"4c:83:2a:82:f:c6","university":"University of Florida","bank":{"cardExpire":"11/30","cardNumber":"3511024200905426","cardType":"JCB","currency":"JPY","iban":"DE42863681794561041810"},"company":{"department":"Sales","name":"Gibson LLC","title":"Chief Technology Officer","address":{"address":"176 Main Street","city":"Seattle","state":"Pennsylvania","stateCode":"PA","postalCode":"61558","coordinates":{"lat":25.794587,"lng":101.693435},"country":"United States"}},"ein":"355-181","ssn":"583-406-155","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":117,"firstName":"Amelia","lastName":"Perez","maidenName":"Gonzalez","age":44,"gender":"female","email":"amelia.perez@x.dummyjson.com","phone":"+49 751-988-9521","username":"ameliag","password":"ameliagpass","birthDate":"1981-1-29","image":"https://dummyjson.com/icon/ameliag/128","bloodGroup":"B+","height":186.66,"weight":80.38,"eyeColor":"Brown","hair":{"color":"Brown","type":"Wavy"},"ip":"249.222.49.78","address":{"address":"25 Elm Street","city":"New York","state":"New Hampshire","stateCode":"NH","postalCode":"88314","coordinates":{"lat":-55.895738,"lng":-117.829232},"country":"United States"},"macAddress":"1:64:41:63:ca:9e","university":"University of Michigan--Ann Arbor","bank":{"cardExpire":"05/30","cardNumber":"349189566293370","cardType":"American Express","currency":"EUR","iban":"IT88GLSNDVETYALH79DUSDQWYBNMA"},"company":{"department":"Services","name":"Swift - Stamm","title":"Chief Executive Officer","address":{"address":"1390 Pine Street","city":"Philadelphia","state":"Maine","stateCode":"ME","postalCode":"21632","coordinates":{"lat":-19.615702,"lng":42.511462},"country":"United States"}},"ein":"836-867","ssn":"769-496-865","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":121,"firstName":"Ava","lastName":"Harris","maidenName":"","age":30,"gender":"female","email":"ava.harris@x.dummyjson.com","phone":"+44 422-227-6412","username":"avahx","password":"avahxpass","birthDate":"1995-8-26","image":"https://dummyjson.com/icon/avahx/128","bloodGroup":"A-","height":199.36,"weight":63.3,"eyeColor":"Blue","hair":{"color":"Brown","type":"Wavy"},"ip":"23.127.175.229","address":{"address":"518 Elm Street","city":"San Antonio","state":"Florida","stateCode":"FL","postalCode":"35171","coordinates":{"lat":74.817644,"lng":15.72801},"country":"United States"},"macAddress":"4:c3:e9:35:23:2a","university":"University of Florida","bank":{"cardExpire":"02/30","cardNumber":"3622583668551978","cardType":"Diners Club International","currency":"JPY","iban":"DE72545287965967528178"},"company":{"department":"Marketing","name":"Lebsack Inc","title":"Engineer","address":{"address":"1495 First Street","city":"Columbus","state":"Alaska","stateCode":"AK","postalCode":"64989","coordinates":{"lat":18.943383,"lng":-136.717336},"country":"United States"}},"ein":"715-161","ssn":"906-771-261","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":124,"firstName":"Noah","lastName":"Lewis","maidenName":"","age":40,"gender":"male","email":"noah.lewis@x.dummyjson.com","phone":"+61 396-867-4229","username":"noahl","password":"noahlpass","birthDate":"1985-6-9","image":"https://dummyjson.com/icon/noahl/128","bloodGroup":"AB-","height":168.71,"weight":86.15,"eyeColor":"Green","hair":{"color":"Brown","type":"Curly"},"ip":"210.106.253.177","address":{"address":"41 Fifth Street","city":"Denver","state":"Alabama","stateCode":"AL","postalCode":"42655","coordinates":{"lat":62.7964,"lng":-10.481867},"country":"United States"},"macAddress":"e3:f5:6d:86:ed:bd","university":"Yale University","bank":{"cardExpire":"01/30","cardNumber":"3553297247069104","cardType":"JCB","currency":"EUR","iban":"FR89F3HKAI2Q8MPK3JKJ43YQIT7"},"company":{"department":"Research and Development","name":"Satterfield, Shields and Littel","title":"Project Manager","address":{"address":"596 Third Street","city":"Seattle","state":"Minnesota","stateCode":"MN","postalCode":"30859","coordinates":{"lat":-9.449962,"lng":124.358321},"country":"United States"}},"ein":"898-556","ssn":"711-488-725","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":131,"firstName":"Jackson","lastName":"Morales","maidenName":"","age":34,"gender":"male","email":"jackson.morales@x.dummyjson.com","phone":"+1 685-561-9154","username":"jacksonm","password":"jacksonmpass","birthDate":"1991-9-18","image":"https://dummyjson.com/icon/jacksonm/128","bloodGroup":"AB-","height":154.3,"weight":60.62,"eyeColor":"Violet","hair":{"color":"Brown","type":"Curly"},"ip":"10.39.106.47","address":{"address":"1549 Main Street","city":"Austin","state":"Arkansas","stateCode":"AR","postalCode":"23595","coordinates":{"lat":89.624584,"lng":-107.671084},"country":"United States"},"macAddress":"e7:a2:59:b:23:32","university":"Pepperdine University","bank":{"cardExpire":"08/27","cardNumber":"4668916290124603","cardType":"Visa","currency":"AUD","iban":"DE89790012694823772619"},"company":{"department":"Human Resources","name":"Kshlerin, Mitchell and Wilderman","title":"Legal Counsel","address":{"address":"694 Second Street","city":"San Diego","state":"New Hampshire","stateCode":"NH","postalCode":"64598","coordinates":{"lat":-67.250988,"lng":158.241684},"country":"United States"}},"ein":"106-784","ssn":"439-618-286","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":135,"firstName":"Elijah","lastName":"Cruz","maidenName":"","age":30,"gender":"male","email":"elijah.cruz@x.dummyjson.com","phone":"+1 613-532-2557","username":"elijahc","password":"elijahcpass","birthDate":"1995-1-23","image":"https://dummyjson.com/icon/elijahc/128","bloodGroup":"O+","height":195.29,"weight":78.61,"eyeColor":"Gray","hair":{"color":"Brown","type":"Wavy"},"ip":"178.45.211.139","address":{"address":"583 Second Street","city":"Seattle","state":"North Dakota","stateCode":"ND","postalCode":"26483","coordinates":{"lat":19.529428,"lng":165.798169},"country":"United States"},"macAddress":"11:be:4d:5a:92:7d","university":"University of California--Berkeley","bank":{"cardExpire":"05/27","cardNumber":"5195573329944110","cardType":"Mastercard","currency":"CAD","iban":"DE67341880174568825698"},"company":{"department":"Accounting","name":"Stokes - Harber","title":"Marketing Manager","address":{"address":"1462 Jefferson Street","city":"Seattle","state":"New Jersey","stateCode":"NJ","postalCode":"81308","coordinates":{"lat":69.208929,"lng":-159.871286},"country":"United States"}},"ein":"115-488","ssn":"577-965-784","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":136,"firstName":"Madison","lastName":"Stewart","maidenName":"Kelly","age":37,"gender":"female","email":"madison.stewart@x.dummyjson.com","phone":"+61 455-829-5048","username":"madisonk","password":"madisonkpass","birthDate":"1988-5-15","image":"https://dummyjson.com/icon/madisonk/128","bloodGroup":"B-","height":199.81,"weight":76.36,"eyeColor":"Blue","hair":{"color":"Brown","type":"Kinky"},"ip":"110.144.81.89","address":{"address":"823 Sixth Street","city":"Indianapolis","state":"Arkansas","stateCode":"AR","postalCode":"66305","coordinates":{"lat":-26.509663,"lng":-127.744698},"country":"United States"},"macAddress":"4e:15:99:a0:22:33","university":"Northwestern University","bank":{"cardExpire":"06/27","cardNumber":"5362208194454054","cardType":"Mastercard","currency":"PKR","iban":"DE03605844090278785940"},"company":{"department":"Training","name":"Schowalter Group","title":"Data Scientist","address":{"address":"344 Main Street","city":"Washington","state":"Colorado","stateCode":"CO","postalCode":"64474","coordinates":{"lat":-33.940327,"lng":-144.800578},"country":"United States"}},"ein":"246-581","ssn":"223-424-188","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":147,"firstName":"Henry","lastName":"Turner","maidenName":"","age":45,"gender":"male","email":"henry.turner@x.dummyjson.com","phone":"+1 374-470-5082","username":"henryt","password":"henrytpass","birthDate":"1980-6-12","image":"https://dummyjson.com/icon/henryt/128","bloodGroup":"AB-","height":151.17,"weight":62.94,"eyeColor":"Amber","hair":{"color":"Brown","type":"Straight"},"ip":"96.193.117.130","address":{"address":"201 Sixth Street","city":"Philadelphia","state":"Ohio","stateCode":"OH","postalCode":"41914","coordinates":{"lat":-26.432988,"lng":79.850071},"country":"United States"},"macAddress":"69:dd:33:c0:84:9e","university":"University of Florida","bank":{"cardExpire":"10/30","cardNumber":"371905945311588","cardType":"American Express","currency":"GBP","iban":"GB8253KW72S9PYJOKIXEU7"},"company":{"department":"Legal","name":"Dickens - Beahan","title":"Technical Support Engineer","address":{"address":"1392 Fifth Street","city":"Chicago","state":"Wyoming","stateCode":"WY","postalCode":"76234","coordinates":{"lat":9.204767,"lng":-80.70479},"country":"United States"}},"ein":"884-620","ssn":"555-829-690","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":151,"firstName":"Nathan","lastName":"Reed","maidenName":"","age":29,"gender":"male","email":"nathan.reed@x.dummyjson.com","phone":"+1 448-642-4577","username":"nathanr","password":"nathanrpass","birthDate":"1996-12-26","image":"https://dummyjson.com/icon/nathanr/128","bloodGroup":"A+","height":186.76,"weight":52.22,"eyeColor":"Amber","hair":{"color":"Brown","type":"Curly"},"ip":"216.178.112.125","address":{"address":"82 Cedar Street","city":"Los Angeles","state":"Utah","stateCode":"UT","postalCode":"73204","coordinates":{"lat":66.874876,"lng":-47.038037},"country":"United States"},"macAddress":"1b:a1:e1:cd:a2:39","university":"University of Pennsylvania","bank":{"cardExpire":"04/27","cardNumber":"6249029371283109","cardType":"UnionPay","currency":"USD","iban":"DE15115435946113309166"},"company":{"department":"Training","name":"Stark Group","title":"Chief Operating Officer","address":{"address":"1075 Adams Street","city":"Philadelphia","state":"North Carolina","stateCode":"NC","postalCode":"28999","coordinates":{"lat":55.767346,"lng":-60.983019},"country":"United States"}},"ein":"647-669","ssn":"355-857-184","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":156,"firstName":"Mila","lastName":"Hernandez","maidenName":"Mitchell","age":34,"gender":"female","email":"mila.hernandez@x.dummyjson.com","phone":"+49 893-855-2896","username":"milam","password":"milampass","birthDate":"1991-8-18","image":"https://dummyjson.com/icon/milam/128","bloodGroup":"B-","height":174.13,"weight":80.97,"eyeColor":"Hazel","hair":{"color":"Brown","type":"Kinky"},"ip":"109.219.231.82","address":{"address":"1454 Oak Street","city":"Seattle","state":"New Mexico","stateCode":"NM","postalCode":"46438","coordinates":{"lat":89.661297,"lng":163.24939},"country":"United States"},"macAddress":"69:8b:7e:5f:44:93","university":"University of Virginia","bank":{"cardExpire":"12/29","cardNumber":"4584709028598326","cardType":"Visa","currency":"EUR","iban":"NL07YI74AY8L48Z7OE"},"company":{"department":"Marketing","name":"Wisoky - Rowe","title":"Software Architect","address":{"address":"1281 Pine Street","city":"Austin","state":"Rhode Island","stateCode":"RI","postalCode":"66784","coordinates":{"lat":53.726642,"lng":102.912699},"country":"United States"}},"ein":"708-862","ssn":"549-233-319","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":166,"firstName":"Elena","lastName":"Long","maidenName":"Mitchell","age":43,"gender":"female","email":"elena.long@x.dummyjson.com","phone":"+91 697-839-3216","username":"elenam","password":"elenampass","birthDate":"1982-4-4","image":"https://dummyjson.com/icon/elenam/128","bloodGroup":"AB+","height":179.89,"weight":56.93,"eyeColor":"Hazel","hair":{"color":"Brown","type":"Kinky"},"ip":"252.247.244.14","address":{"address":"1883 Lincoln Street","city":"San Jose","state":"New York","stateCode":"NY","postalCode":"29766","coordinates":{"lat":-59.16639,"lng":-110.237583},"country":"United States"},"macAddress":"7f:a7:45:db:ae:69","university":"Tufts University","bank":{"cardExpire":"02/29","cardNumber":"5223503782631983","cardType":"Mastercard","currency":"GBP","iban":"GB291SKJY1I21ZAJIARKW4"},"company":{"department":"Research and Development","name":"Bruen and Sons","title":"Database Administrator","address":{"address":"985 Ninth Street","city":"New York","state":"Colorado","stateCode":"CO","postalCode":"36408","coordinates":{"lat":59.040431,"lng":-134.144154},"country":"United States"}},"ein":"457-165","ssn":"619-479-503","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":188,"firstName":"Aria","lastName":"Flores","maidenName":"Martin","age":26,"gender":"female","email":"aria.flores@x.dummyjson.com","phone":"+61 415-771-8232","username":"ariamx","password":"ariamxpass","birthDate":"1999-11-8","image":"https://dummyjson.com/icon/ariamx/128","bloodGroup":"O-","height":160.06,"weight":92.02,"eyeColor":"Amber","hair":{"color":"Brown","type":"Wavy"},"ip":"86.67.36.191","address":{"address":"492 Pine Street","city":"Indianapolis","state":"Tennessee","stateCode":"TN","postalCode":"71284","coordinates":{"lat":-88.3996,"lng":22.908268},"country":"United States"},"macAddress":"9d:d1:19:e7:45:26","university":"Columbia University","bank":{"cardExpire":"07/30","cardNumber":"3568996021436297","cardType":"JCB","currency":"AUD","iban":"DE53096479676200434539"},"company":{"department":"Sales","name":"Gibson LLC","title":"Sales Manager","address":{"address":"1728 Sixth Street","city":"Fort Worth","state":"Nebraska","stateCode":"NE","postalCode":"74809","coordinates":{"lat":51.558679,"lng":-85.819219},"country":"United States"}},"ein":"784-961","ssn":"132-677-684","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":203,"firstName":"Nova","lastName":"Cooper","maidenName":"Bell","age":32,"gender":"female","email":"nova.cooper@x.dummyjson.com","phone":"+49 292-569-8252","username":"novab","password":"novabpass","birthDate":"1993-6-16","image":"https://dummyjson.com/icon/novab/128","bloodGroup":"B-","height":155.62,"weight":60.62,"eyeColor":"Hazel","hair":{"color":"Brown","type":"Curly"},"ip":"143.240.135.160","address":{"address":"1687 Pine Street","city":"Los Angeles","state":"Nebraska","stateCode":"NE","postalCode":"49131","coordinates":{"lat":64.747296,"lng":148.357671},"country":"United States"},"macAddress":"e:ea:3e:f3:2d:90","university":"Dartmouth College","bank":{"cardExpire":"01/27","cardNumber":"4281297008337127","cardType":"Visa","currency":"CAD","iban":"DE21025127888819711543"},"company":{"department":"Marketing","name":"Schmidt - Hyatt","title":"Legal Counsel","address":{"address":"1970 Maple Street","city":"New York","state":"Georgia","stateCode":"GA","postalCode":"24324","coordinates":{"lat":-84.354097,"lng":-63.193683},"country":"United States"}},"ein":"249-364","ssn":"357-926-188","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:97.0) Gecko/20100101 Firefox/97.0","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":206,"firstName":"Elena","lastName":"Baker","maidenName":"","age":35,"gender":"female","email":"elena.baker@x.dummyjson.com","phone":"+49 978-346-6960","username":"elenab","password":"elenabpass","birthDate":"1990-3-16","image":"https://dummyjson.com/icon/elenab/128","bloodGroup":"O+","height":150.62,"weight":95.55,"eyeColor":"Brown","hair":{"color":"Brown","type":"Straight"},"ip":"85.35.8.29","address":{"address":"117 Maple Street","city":"San Francisco","state":"Tennessee","stateCode":"TN","postalCode":"40535","coordinates":{"lat":30.069731,"lng":-118.879243},"country":"United States"},"macAddress":"83:75:b2:b6:ca:8b","university":"Tufts University","bank":{"cardExpire":"01/30","cardNumber":"5437614839810348","cardType":"Mastercard","currency":"INR","iban":"DE24112202737130790320"},"company":{"department":"Engineering","name":"Heller LLC","title":"Project Manager","address":{"address":"139 Jefferson Street","city":"San Antonio","state":"Idaho","stateCode":"ID","postalCode":"50546","coordinates":{"lat":1.356153,"lng":175.897893},"country":"United States"}},"ein":"509-840","ssn":"640-201-673","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"}],"total":23,"skip":0,"limit":23}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Retrieves a paginated list of users with specific fields selected, demonstrating pagination and field filtering capabilities.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/users?limit=5&skip=10&select=firstName,age`
## Authentication
- **Required**: No
- This is a public endpoint that doesn't require authentication
## Parameters
### Query Parameters
- `limit` (optional) - Number of users to return (default: 30)
- `skip` (optional) - Number of users to skip for pagination (default: 0)
- `select` (optional) - Comma-separated list of fields to include in response
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
{
"users": [
{
"id": 11,
"firstName": "John",
"age": 30
}
],
"total": 208,
"skip": 10,
"limit": 5
}
```
## Tests Included
- Validates response status code is 200
- Verifies correct number of users returned (limit)
- Checks pagination offset (skip)
- Confirms only selected fields are present in response
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNzksImV4cCI6MTc2OTk2NDc3OX0.au6-HNuanDOW1Q3iDl4MYxifr14HAULtIcahDIP9Pos |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 015b36dd-8819-41e3-a786-d105f32167fe |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:09 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 96 |
| x-ratelimit-reset | 1769961193 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"f0-c9aLGWPNjhOdE9zS5MuqtOmC4iE" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=wpAAm5rE0z5cQtDESU8mgE1%2Fo24vVwXkJWkle7fb2LBipXIEgWThLlj5lIY%2Fy7KyRLSfFNJKT0NnqKUIMug2wQE1JPwl1GjiINs7oQs%3D"}]} |
| Content-Encoding | br |
| CF-RAY | 9c729eb809052891-AMM |
{"users":[{"id":11,"firstName":"Liam","age":30},{"id":12,"firstName":"Mia","age":25},{"id":13,"firstName":"Noah","age":41},{"id":14,"firstName":"Charlotte","age":37},{"id":15,"firstName":"William","age":33}],"total":208,"skip":10,"limit":5}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Retrieves all users sorted by a specific field in ascending or descending order.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/users?sortBy=firstName&order=asc`
## Authentication
- **Required**: No
- This is a public endpoint that doesn't require authentication
## Parameters
### Query Parameters
- `sortBy` (optional) - Field name to sort by (e.g., firstName, lastName, age, email)
- `order` (optional) - Sort order: `asc` (ascending) or `desc` (descending)
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
{
"users": [
{
"id": 1,
"firstName": "Aaron",
"lastName": "Smith",
"age": 25,
...
}
],
"total": 208,
"skip": 0,
"limit": 30
}
```
## Tests Included
- Validates response status code is 200
- Verifies users array is sorted correctly
- Checks sort order matches requested order (asc/desc)
- Confirms all user fields are present
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNzksImV4cCI6MTc2OTk2NDc3OX0.au6-HNuanDOW1Q3iDl4MYxifr14HAULtIcahDIP9Pos |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 7791256b-84e7-4944-9285-1996f4b546ad |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:09 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 95 |
| x-ratelimit-reset | 1769961193 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"a337-zsejjB8Q1xUzsEelxEwDQWBnWxk" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=mFmRklx0FsUIQr7FAOxEsh2TzBXeG3kHYgR7IFlbUlJ%2BjEWa%2BWm0kJYSd4a38SlOrJJN47J07v9BF%2BBweU02A4mDRweLChQBruoOXWY%3D"}]} |
| CF-RAY | 9c729eb99a8b2891-AMM |
{"users":[{"id":84,"firstName":"Aaliyah","lastName":"Hanson","maidenName":"","age":29,"gender":"female","email":"aaliyah.hanson@x.dummyjson.com","phone":"+1 275-501-1119","username":"aaliyahh","password":"aaliyahhpass","birthDate":"1996-3-20","image":"https://dummyjson.com/icon/aaliyahh/128","bloodGroup":"B+","height":164.5,"weight":92.03,"eyeColor":"Blue","hair":{"color":"Gray","type":"Wavy"},"ip":"51.180.201.49","address":{"address":"790 Eighth Street","city":"Philadelphia","state":"North Dakota","stateCode":"ND","postalCode":"51438","coordinates":{"lat":15.832722,"lng":-148.237795},"country":"United States"},"macAddress":"89:50:ac:7e:d0:b6","university":"Cornell University","bank":{"cardExpire":"02/28","cardNumber":"6011926454334632","cardType":"Discover","currency":"CAD","iban":"DE02970928927762628941"},"company":{"department":"Accounting","name":"Marvin Inc","title":"Quality Assurance Engineer","address":{"address":"747 Ninth Street","city":"San Francisco","state":"North Carolina","stateCode":"NC","postalCode":"68238","coordinates":{"lat":-53.992111,"lng":-32.617357},"country":"United States"}},"ein":"709-477","ssn":"453-478-272","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":176,"firstName":"Aaliyah","lastName":"Martinez","maidenName":"Adams","age":29,"gender":"female","email":"aaliyah.martinez@x.dummyjson.com","phone":"+91 862-924-5336","username":"aaliyaha","password":"aaliyahapass","birthDate":"1996-2-2","image":"https://dummyjson.com/icon/aaliyaha/128","bloodGroup":"B+","height":177.05,"weight":68.62,"eyeColor":"Green","hair":{"color":"Blonde","type":"Curly"},"ip":"164.70.78.194","address":{"address":"935 Fifth Street","city":"New York","state":"West Virginia","stateCode":"WV","postalCode":"60165","coordinates":{"lat":2.456241,"lng":-122.373016},"country":"United States"},"macAddress":"c:a3:46:aa:98:7c","university":"Georgetown University","bank":{"cardExpire":"04/29","cardNumber":"5587285781475675","cardType":"Mastercard","currency":"CNY","iban":"DE44094986173554781705"},"company":{"department":"Support","name":"Ankunding, Little and Flatley","title":"Web Developer","address":{"address":"624 Adams Street","city":"Jacksonville","state":"Nebraska","stateCode":"NE","postalCode":"72753","coordinates":{"lat":56.509799,"lng":-4.674365},"country":"United States"}},"ein":"286-236","ssn":"195-119-185","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":157,"firstName":"Aaron","lastName":"Cook","maidenName":"","age":28,"gender":"male","email":"aaron.cook@x.dummyjson.com","phone":"+81 362-539-6973","username":"aaronc","password":"aaroncpass","birthDate":"1997-1-26","image":"https://dummyjson.com/icon/aaronc/128","bloodGroup":"AB+","height":165.6,"weight":61.17,"eyeColor":"Green","hair":{"color":"Blue","type":"Curly"},"ip":"71.248.65.203","address":{"address":"169 First Street","city":"Phoenix","state":"Wyoming","stateCode":"WY","postalCode":"52331","coordinates":{"lat":-6.538887,"lng":-58.475605},"country":"United States"},"macAddress":"9e:3f:8b:b:83:af","university":"University of Pennsylvania","bank":{"cardExpire":"03/29","cardNumber":"6011771715186854","cardType":"Discover","currency":"AUD","iban":"DE28971190963043337518"},"company":{"department":"Support","name":"Leffler, Rolfson and Becker","title":"Support Specialist","address":{"address":"380 Maple Street","city":"San Antonio","state":"Michigan","stateCode":"MI","postalCode":"44238","coordinates":{"lat":-31.851481,"lng":-63.253251},"country":"United States"}},"ein":"862-277","ssn":"270-351-584","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":19,"firstName":"Abigail","lastName":"Rivera","maidenName":"","age":29,"gender":"female","email":"abigail.rivera@x.dummyjson.com","phone":"+91 228-363-7806","username":"abigailr","password":"abigailrpass","birthDate":"1996-10-11","image":"https://dummyjson.com/icon/abigailr/128","bloodGroup":"B+","height":186.39,"weight":74.61,"eyeColor":"Violet","hair":{"color":"Blue","type":"Kinky"},"ip":"19.183.240.94","address":{"address":"996 Oak Street","city":"Chicago","state":"New Mexico","stateCode":"NM","postalCode":"11407","coordinates":{"lat":44.321308,"lng":-3.723903},"country":"United States"},"macAddress":"1d:a6:58:2a:e5:e4","university":"California Institute of Technology (Caltech)","bank":{"cardExpire":"01/27","cardNumber":"6011399019022417","cardType":"Discover","currency":"EUR","iban":"IT11QP2B5J81QM1FBX029VI5DD68O"},"company":{"department":"Human Resources","name":"Prohaska - Thiel","title":"Business Analyst","address":{"address":"1402 Adams Street","city":"Austin","state":"Wisconsin","stateCode":"WI","postalCode":"51456","coordinates":{"lat":25.672938,"lng":-76.54967},"country":"United States"}},"ein":"173-637","ssn":"655-823-929","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Edge/97.0.1072.76 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":30,"firstName":"Addison","lastName":"Wright","maidenName":"","age":33,"gender":"female","email":"addison.wright@x.dummyjson.com","phone":"+1 514-384-3300","username":"addisonw","password":"addisonwpass","birthDate":"1992-1-3","image":"https://dummyjson.com/icon/addisonw/128","bloodGroup":"B+","height":179.32,"weight":76.93,"eyeColor":"Brown","hair":{"color":"Blonde","type":"Straight"},"ip":"11.35.69.81","address":{"address":"568 Tenth Street","city":"San Francisco","state":"Montana","stateCode":"MT","postalCode":"54698","coordinates":{"lat":20.946052,"lng":100.228822},"country":"United States"},"macAddress":"fb:0:94:21:16:c","university":"Syracuse University","bank":{"cardExpire":"06/28","cardNumber":"5274971895809762","cardType":"Mastercard","currency":"PKR","iban":"DE91480955939051635497"},"company":{"department":"Services","name":"Kreiger Inc","title":"Human Resources Manager","address":{"address":"1173 Eighth Street","city":"San Diego","state":"Michigan","stateCode":"MI","postalCode":"85777","coordinates":{"lat":65.324413,"lng":87.142893},"country":"United States"}},"ein":"415-286","ssn":"804-492-390","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":164,"firstName":"Addison","lastName":"Ward","maidenName":"Foster","age":30,"gender":"female","email":"addison.ward@x.dummyjson.com","phone":"+1 248-875-1802","username":"addisonf","password":"addisonfpass","birthDate":"1995-8-23","image":"https://dummyjson.com/icon/addisonf/128","bloodGroup":"B-","height":160.22,"weight":75.72,"eyeColor":"Amber","hair":{"color":"Green","type":"Wavy"},"ip":"74.79.100.79","address":{"address":"1320 Fifth Street","city":"San Francisco","state":"South Carolina","stateCode":"SC","postalCode":"20149","coordinates":{"lat":-39.289112,"lng":46.108923},"country":"United States"},"macAddress":"e2:a5:4:ce:d7:60","university":"University of Illinois--Urbana-Champaign","bank":{"cardExpire":"12/30","cardNumber":"6011006235805000","cardType":"Discover","currency":"AUD","iban":"DE46038536418760965942"},"company":{"department":"Human Resources","name":"Kshlerin, Mitchell and Wilderman","title":"Product Manager","address":{"address":"1388 Tenth Street","city":"Charlotte","state":"New York","stateCode":"NY","postalCode":"63709","coordinates":{"lat":-5.900293,"lng":-10.987888},"country":"United States"}},"ein":"104-679","ssn":"801-271-313","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":200,"firstName":"Adrian","lastName":"Flores","maidenName":"","age":44,"gender":"male","email":"adrian.flores@x.dummyjson.com","phone":"+61 524-858-7351","username":"adrianf","password":"adrianfpass","birthDate":"1981-5-1","image":"https://dummyjson.com/icon/adrianf/128","bloodGroup":"O+","height":183.05,"weight":97.74,"eyeColor":"Green","hair":{"color":"Purple","type":"Wavy"},"ip":"86.244.141.158","address":{"address":"1395 Madison Street","city":"New York","state":"Delaware","stateCode":"DE","postalCode":"60163","coordinates":{"lat":48.779884,"lng":-84.200415},"country":"United States"},"macAddress":"e1:22:78:3f:9b:8c","university":"Stanford University","bank":{"cardExpire":"08/27","cardNumber":"347972688413683","cardType":"American Express","currency":"JPY","iban":"DE47803706973935779318"},"company":{"department":"Legal","name":"Rippin Inc","title":"Technical Support Engineer","address":{"address":"279 Madison Street","city":"San Antonio","state":"Louisiana","stateCode":"LA","postalCode":"25808","coordinates":{"lat":32.513584,"lng":-145.587193},"country":"United States"}},"ein":"965-469","ssn":"272-696-785","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":7,"firstName":"Alexander","lastName":"Jones","maidenName":"","age":39,"gender":"male","email":"alexander.jones@x.dummyjson.com","phone":"+61 260-824-4986","username":"alexanderj","password":"alexanderjpass","birthDate":"1986-10-20","image":"https://dummyjson.com/icon/alexanderj/128","bloodGroup":"AB-","height":153.89,"weight":77.42,"eyeColor":"Blue","hair":{"color":"White","type":"Straight"},"ip":"166.204.84.32","address":{"address":"664 Maple Street","city":"Indianapolis","state":"Delaware","stateCode":"DE","postalCode":"86684","coordinates":{"lat":35.289664,"lng":7.063255},"country":"United States"},"macAddress":"d2:64:58:2d:1c:46","university":"University of Illinois--Urbana-Champaign","bank":{"cardExpire":"12/29","cardNumber":"5189302549548693","cardType":"Mastercard","currency":"PKR","iban":"DE67517655968963441488"},"company":{"department":"Engineering","name":"Dickens - Beahan","title":"Web Developer","address":{"address":"996 Eighth Street","city":"Washington","state":"Kansas","stateCode":"KS","postalCode":"27858","coordinates":{"lat":-75.462366,"lng":-128.025697},"country":"United States"}},"ein":"638-127","ssn":"722-993-925","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"moderator"},{"id":112,"firstName":"Alexander","lastName":"Hernandez","maidenName":"","age":42,"gender":"male","email":"alexander.hernandez@x.dummyjson.com","phone":"+49 410-245-8608","username":"alexanderh","password":"alexanderhpass","birthDate":"1983-7-4","image":"https://dummyjson.com/icon/alexanderh/128","bloodGroup":"B-","height":172.2,"weight":82.3,"eyeColor":"Blue","hair":{"color":"Brown","type":"Kinky"},"ip":"145.104.53.16","address":{"address":"329 Second Street","city":"Dallas","state":"Idaho","stateCode":"ID","postalCode":"49314","coordinates":{"lat":14.101714,"lng":-148.130379},"country":"United States"},"macAddress":"4c:83:2a:82:f:c6","university":"University of Florida","bank":{"cardExpire":"11/30","cardNumber":"3511024200905426","cardType":"JCB","currency":"JPY","iban":"DE42863681794561041810"},"company":{"department":"Sales","name":"Gibson LLC","title":"Chief Technology Officer","address":{"address":"176 Main Street","city":"Seattle","state":"Pennsylvania","stateCode":"PA","postalCode":"61558","coordinates":{"lat":25.794587,"lng":101.693435},"country":"United States"}},"ein":"355-181","ssn":"583-406-155","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":101,"firstName":"Alice","lastName":"Smith","maidenName":"Johnson","age":29,"gender":"female","email":"alice.smith@x.dummyjson.com","phone":"+61 611-556-8989","username":"alicej","password":"alicejpass","birthDate":"1996-9-8","image":"https://dummyjson.com/icon/alicej/128","bloodGroup":"AB-","height":171.67,"weight":56.25,"eyeColor":"Red","hair":{"color":"Black","type":"Straight"},"ip":"223.157.14.11","address":{"address":"1631 Fourth Street","city":"Houston","state":"Arkansas","stateCode":"AR","postalCode":"81896","coordinates":{"lat":-16.873954,"lng":118.766256},"country":"United States"},"macAddress":"f3:c3:7b:69:2e:ab","university":"Wake Forest University","bank":{"cardExpire":"07/27","cardNumber":"5560162465503729","cardType":"Mastercard","currency":"CNY","iban":"DE11729875884000312491"},"company":{"department":"Marketing","name":"Jast - Nader","title":"Product Manager","address":{"address":"144 Eighth Street","city":"Austin","state":"Delaware","stateCode":"DE","postalCode":"55767","coordinates":{"lat":25.070859,"lng":15.203994},"country":"United States"}},"ein":"560-590","ssn":"479-900-352","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":117,"firstName":"Amelia","lastName":"Perez","maidenName":"Gonzalez","age":44,"gender":"female","email":"amelia.perez@x.dummyjson.com","phone":"+49 751-988-9521","username":"ameliag","password":"ameliagpass","birthDate":"1981-1-29","image":"https://dummyjson.com/icon/ameliag/128","bloodGroup":"B+","height":186.66,"weight":80.38,"eyeColor":"Brown","hair":{"color":"Brown","type":"Wavy"},"ip":"249.222.49.78","address":{"address":"25 Elm Street","city":"New York","state":"New Hampshire","stateCode":"NH","postalCode":"88314","coordinates":{"lat":-55.895738,"lng":-117.829232},"country":"United States"},"macAddress":"1:64:41:63:ca:9e","university":"University of Michigan--Ann Arbor","bank":{"cardExpire":"05/30","cardNumber":"349189566293370","cardType":"American Express","currency":"EUR","iban":"IT88GLSNDVETYALH79DUSDQWYBNMA"},"company":{"department":"Services","name":"Swift - Stamm","title":"Chief Executive Officer","address":{"address":"1390 Pine Street","city":"Philadelphia","state":"Maine","stateCode":"ME","postalCode":"21632","coordinates":{"lat":-19.615702,"lng":42.511462},"country":"United States"}},"ein":"836-867","ssn":"769-496-865","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":38,"firstName":"Aria","lastName":"Roberts","maidenName":"","age":27,"gender":"female","email":"aria.roberts@x.dummyjson.com","phone":"+61 411-514-5320","username":"ariar","password":"ariarpass","birthDate":"1998-3-25","image":"https://dummyjson.com/icon/ariar/128","bloodGroup":"A-","height":199.62,"weight":88.96,"eyeColor":"Gray","hair":{"color":"Blue","type":"Curly"},"ip":"208.86.10.37","address":{"address":"560 Fifth Street","city":"Seattle","state":"Rhode Island","stateCode":"RI","postalCode":"70664","coordinates":{"lat":36.157244,"lng":-29.219594},"country":"United States"},"macAddress":"7d:16:14:f8:d5:4","university":"Princeton University","bank":{"cardExpire":"10/28","cardNumber":"372071021242970","cardType":"American Express","currency":"CAD","iban":"DE33897381873184367321"},"company":{"department":"Legal","name":"Sanford and Sons","title":"Database Administrator","address":{"address":"69 Ninth Street","city":"Chicago","state":"Ohio","stateCode":"OH","postalCode":"77252","coordinates":{"lat":-1.902962,"lng":15.129767},"country":"United States"}},"ein":"329-619","ssn":"631-656-511","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":66,"firstName":"Aria","lastName":"Ferguson","maidenName":"","age":28,"gender":"female","email":"aria.ferguson@x.dummyjson.com","phone":"+44 434-406-8551","username":"ariaf","password":"ariafpass","birthDate":"1997-6-1","image":"https://dummyjson.com/icon/ariaf/128","bloodGroup":"B+","height":161.81,"weight":97.12,"eyeColor":"Blue","hair":{"color":"Blue","type":"Wavy"},"ip":"180.24.111.167","address":{"address":"1553 Sixth Street","city":"San Diego","state":"Wyoming","stateCode":"WY","postalCode":"59501","coordinates":{"lat":-66.092723,"lng":169.9952},"country":"United States"},"macAddress":"e2:71:6d:81:6:db","university":"Cornell University","bank":{"cardExpire":"02/28","cardNumber":"5222769696858258","cardType":"Mastercard","currency":"GBP","iban":"GB93YU9GTP9S3UJCULWWWL"},"company":{"department":"Legal","name":"Wisozk, Schamberger and Huels","title":"Project Manager","address":{"address":"807 Eighth Street","city":"Phoenix","state":"New Jersey","stateCode":"NJ","postalCode":"75765","coordinates":{"lat":46.824227,"lng":-51.392185},"country":"United States"}},"ein":"952-671","ssn":"705-592-753","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":142,"firstName":"Aria","lastName":"Parker","maidenName":"Miller","age":28,"gender":"female","email":"aria.parker@x.dummyjson.com","phone":"+91 762-847-6884","username":"ariam","password":"ariampass","birthDate":"1997-7-6","image":"https://dummyjson.com/icon/ariam/128","bloodGroup":"AB-","height":164.79,"weight":92.15,"eyeColor":"Blue","hair":{"color":"Green","type":"Curly"},"ip":"112.164.28.147","address":{"address":"1504 Tenth Street","city":"Phoenix","state":"Alabama","stateCode":"AL","postalCode":"16573","coordinates":{"lat":56.943768,"lng":41.212736},"country":"United States"},"macAddress":"c1:1:6a:d:86:c4","university":"Stanford University","bank":{"cardExpire":"09/27","cardNumber":"6011811630030256","cardType":"Discover","currency":"INR","iban":"DE52636264791885715598"},"company":{"department":"Human Resources","name":"Oberbrunner, Mosciski and Witting","title":"Software Architect","address":{"address":"1103 Maple Street","city":"Los Angeles","state":"Kentucky","stateCode":"KY","postalCode":"37560","coordinates":{"lat":-5.555558,"lng":-6.162671},"country":"United States"}},"ein":"385-819","ssn":"889-374-959","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":188,"firstName":"Aria","lastName":"Flores","maidenName":"Martin","age":26,"gender":"female","email":"aria.flores@x.dummyjson.com","phone":"+61 415-771-8232","username":"ariamx","password":"ariamxpass","birthDate":"1999-11-8","image":"https://dummyjson.com/icon/ariamx/128","bloodGroup":"O-","height":160.06,"weight":92.02,"eyeColor":"Amber","hair":{"color":"Brown","type":"Wavy"},"ip":"86.67.36.191","address":{"address":"492 Pine Street","city":"Indianapolis","state":"Tennessee","stateCode":"TN","postalCode":"71284","coordinates":{"lat":-88.3996,"lng":22.908268},"country":"United States"},"macAddress":"9d:d1:19:e7:45:26","university":"Columbia University","bank":{"cardExpire":"07/30","cardNumber":"3568996021436297","cardType":"JCB","currency":"AUD","iban":"DE53096479676200434539"},"company":{"department":"Sales","name":"Gibson LLC","title":"Sales Manager","address":{"address":"1728 Sixth Street","city":"Fort Worth","state":"Nebraska","stateCode":"NE","postalCode":"74809","coordinates":{"lat":51.558679,"lng":-85.819219},"country":"United States"}},"ein":"784-961","ssn":"132-677-684","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":172,"firstName":"Ariana","lastName":"Ross","maidenName":"Ward","age":37,"gender":"female","email":"ariana.ross@x.dummyjson.com","phone":"+61 393-553-7155","username":"arianaw","password":"arianawpass","birthDate":"1988-9-26","image":"https://dummyjson.com/icon/arianaw/128","bloodGroup":"O-","height":164.81,"weight":50.3,"eyeColor":"Red","hair":{"color":"White","type":"Kinky"},"ip":"47.190.165.179","address":{"address":"911 First Street","city":"Chicago","state":"West Virginia","stateCode":"WV","postalCode":"59220","coordinates":{"lat":-39.772203,"lng":-90.030002},"country":"United States"},"macAddress":"e5:32:fa:4f:da:f3","university":"University of Virginia","bank":{"cardExpire":"08/27","cardNumber":"5267990819173310","cardType":"Mastercard","currency":"JPY","iban":"DE05893634226384406776"},"company":{"department":"Accounting","name":"Stiedemann LLC","title":"Engineer","address":{"address":"429 Madison Street","city":"Denver","state":"New Mexico","stateCode":"NM","postalCode":"86999","coordinates":{"lat":33.005004,"lng":125.026624},"country":"United States"}},"ein":"873-983","ssn":"479-571-715","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":173,"firstName":"Asher","lastName":"Scott","maidenName":"","age":31,"gender":"male","email":"asher.scott@x.dummyjson.com","phone":"+81 469-421-7639","username":"ashers","password":"asherspass","birthDate":"1994-8-18","image":"https://dummyjson.com/icon/ashers/128","bloodGroup":"O+","height":169.56,"weight":54.08,"eyeColor":"Blue","hair":{"color":"Blue","type":"Curly"},"ip":"150.136.12.36","address":{"address":"666 Main Street","city":"Dallas","state":"Vermont","stateCode":"VT","postalCode":"82460","coordinates":{"lat":-80.129031,"lng":-63.515107},"country":"United States"},"macAddress":"7f:1d:2a:a2:c0:29","university":"Columbia University","bank":{"cardExpire":"01/30","cardNumber":"6011589163616085","cardType":"Discover","currency":"EUR","iban":"FR915U90IRZVO9NSF11TNJ90JOZ"},"company":{"department":"Human Resources","name":"Ullrich LLC","title":"Sales Manager","address":{"address":"1640 Oak Street","city":"Washington","state":"Oklahoma","stateCode":"OK","postalCode":"29026","coordinates":{"lat":-29.790789,"lng":-43.572763},"country":"United States"}},"ein":"172-363","ssn":"744-472-971","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.3 Safari/605.1.15","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":88,"firstName":"Aubrey","lastName":"Wagner","maidenName":"","age":31,"gender":"female","email":"aubrey.wagner@x.dummyjson.com","phone":"+81 285-568-5834","username":"aubreyw","password":"aubreywpass","birthDate":"1994-4-1","image":"https://dummyjson.com/icon/aubreyw/128","bloodGroup":"B+","height":168.73,"weight":79.86,"eyeColor":"Red","hair":{"color":"Blonde","type":"Wavy"},"ip":"203.204.53.60","address":{"address":"1147 Adams Street","city":"Phoenix","state":"North Carolina","stateCode":"NC","postalCode":"72711","coordinates":{"lat":-55.796433,"lng":-163.621876},"country":"United States"},"macAddress":"5a:18:55:d7:84:b9","university":"Vanderbilt University","bank":{"cardExpire":"10/29","cardNumber":"3692710040595549","cardType":"Diners Club International","currency":"CAD","iban":"DE48679614573470291447"},"company":{"department":"Sales","name":"Cassin Group","title":"Engineer","address":{"address":"1580 Tenth Street","city":"San Jose","state":"New Jersey","stateCode":"NJ","postalCode":"33398","coordinates":{"lat":35.508597,"lng":12.058887},"country":"United States"}},"ein":"990-866","ssn":"678-854-911","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":158,"firstName":"Aubrey","lastName":"Gutierrez","maidenName":"Baker","age":37,"gender":"female","email":"aubrey.gutierrez@x.dummyjson.com","phone":"+92 881-268-9845","username":"aubreyb","password":"aubreybpass","birthDate":"1988-2-19","image":"https://dummyjson.com/icon/aubreyb/128","bloodGroup":"AB-","height":186.45,"weight":69.83,"eyeColor":"Brown","hair":{"color":"Black","type":"Wavy"},"ip":"19.183.244.21","address":{"address":"1207 Oak Street","city":"Philadelphia","state":"Connecticut","stateCode":"CT","postalCode":"78892","coordinates":{"lat":-3.033666,"lng":-35.006014},"country":"United States"},"macAddress":"41:7:7b:23:29:e9","university":"University of Illinois--Urbana-Champaign","bank":{"cardExpire":"10/29","cardNumber":"6011134098408991","cardType":"Discover","currency":"AUD","iban":"DE95703770320430230584"},"company":{"department":"Human Resources","name":"Kreiger and Sons","title":"Developer","address":{"address":"1549 Second Street","city":"Columbus","state":"Arkansas","stateCode":"AR","postalCode":"62481","coordinates":{"lat":85.690418,"lng":-48.156251},"country":"United States"}},"ein":"821-613","ssn":"642-178-241","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":205,"firstName":"Aubrey","lastName":"Garcia","maidenName":"Gray","age":29,"gender":"female","email":"aubrey.garcia@x.dummyjson.com","phone":"+1 470-576-9130","username":"aubreyg","password":"aubreygpass","birthDate":"1996-11-5","image":"https://dummyjson.com/icon/aubreyg/128","bloodGroup":"AB+","height":192.28,"weight":85.89,"eyeColor":"Brown","hair":{"color":"Red","type":"Curly"},"ip":"0.163.108.147","address":{"address":"1221 Washington Street","city":"Los Angeles","state":"South Carolina","stateCode":"SC","postalCode":"78498","coordinates":{"lat":80.449539,"lng":-142.231527},"country":"United States"},"macAddress":"fb:ae:f9:15:24:90","university":"Pepperdine University","bank":{"cardExpire":"01/29","cardNumber":"4922036660101826","cardType":"Visa","currency":"NZD","iban":"DE91641615994664908034"},"company":{"department":"Legal","name":"Moore Inc","title":"Web Developer","address":{"address":"240 Third Street","city":"San Francisco","state":"Minnesota","stateCode":"MN","postalCode":"58649","coordinates":{"lat":3.609112,"lng":-35.397672},"country":"United States"}},"ein":"428-615","ssn":"344-154-808","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":96,"firstName":"Aurora","lastName":"Lawson","maidenName":"","age":27,"gender":"female","email":"aurora.lawson@x.dummyjson.com","phone":"+92 802-452-4192","username":"auroral","password":"auroralpass","birthDate":"1998-6-16","image":"https://dummyjson.com/icon/auroral/128","bloodGroup":"O+","height":174.28,"weight":88.18,"eyeColor":"Violet","hair":{"color":"Green","type":"Wavy"},"ip":"161.244.58.227","address":{"address":"1140 Adams Street","city":"Dallas","state":"Minnesota","stateCode":"MN","postalCode":"29004","coordinates":{"lat":83.417744,"lng":-7.933044},"country":"United States"},"macAddress":"34:95:bd:59:f4:39","university":"Boston University","bank":{"cardExpire":"07/29","cardNumber":"5480171454066942","cardType":"Mastercard","currency":"GBP","iban":"GB36C9TE2MIXX12X8IJMLG"},"company":{"department":"Product Management","name":"Hudson - Marquardt","title":"Chief Information Officer","address":{"address":"164 Fifth Street","city":"Indianapolis","state":"New York","stateCode":"NY","postalCode":"27958","coordinates":{"lat":89.270633,"lng":-72.618747},"country":"United States"}},"ein":"477-337","ssn":"191-532-292","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:97.0) Gecko/20100101 Firefox/97.0","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":148,"firstName":"Aurora","lastName":"Barnes","maidenName":"Gomez","age":30,"gender":"female","email":"aurora.barnes@x.dummyjson.com","phone":"+91 403-842-9683","username":"aurorag","password":"auroragpass","birthDate":"1995-12-15","image":"https://dummyjson.com/icon/aurorag/128","bloodGroup":"B+","height":185.79,"weight":53.66,"eyeColor":"Green","hair":{"color":"Red","type":"Curly"},"ip":"204.17.198.20","address":{"address":"1184 Adams Street","city":"New York","state":"Idaho","stateCode":"ID","postalCode":"19201","coordinates":{"lat":-20.67407,"lng":107.281052},"country":"United States"},"macAddress":"8c:49:78:e2:70:b2","university":"Georgetown University","bank":{"cardExpire":"04/28","cardNumber":"3623396287064565","cardType":"Diners Club International","currency":"GBP","iban":"GB87US86D82O10U5WQ3949"},"company":{"department":"Sales","name":"Cassin Group","title":"Chief Financial Officer","address":{"address":"478 Ninth Street","city":"Phoenix","state":"Connecticut","stateCode":"CT","postalCode":"39433","coordinates":{"lat":-19.046529,"lng":48.682257},"country":"United States"}},"ein":"470-547","ssn":"310-708-861","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Edge/97.0.1072.76 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":180,"firstName":"Aurora","lastName":"Rodriguez","maidenName":"Nelson","age":32,"gender":"female","email":"aurora.rodriguez@x.dummyjson.com","phone":"+61 393-225-2755","username":"auroran","password":"auroranpass","birthDate":"1993-11-23","image":"https://dummyjson.com/icon/auroran/128","bloodGroup":"AB+","height":164.92,"weight":65.48,"eyeColor":"Brown","hair":{"color":"Black","type":"Kinky"},"ip":"127.15.107.0","address":{"address":"1388 Madison Street","city":"Chicago","state":"Missouri","stateCode":"MO","postalCode":"60765","coordinates":{"lat":11.918088,"lng":-78.222936},"country":"United States"},"macAddress":"a0:81:60:92:50:e9","university":"University of Virginia","bank":{"cardExpire":"01/29","cardNumber":"5491854809080174","cardType":"Mastercard","currency":"NZD","iban":"DE91340258026412696778"},"company":{"department":"Research and Development","name":"Runolfsson, Kohler and Welch","title":"Software Engineer","address":{"address":"1277 Third Street","city":"Chicago","state":"North Dakota","stateCode":"ND","postalCode":"37621","coordinates":{"lat":35.160252,"lng":-141.580146},"country":"United States"}},"ein":"225-878","ssn":"879-917-944","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":81,"firstName":"Austin","lastName":"Hudson","maidenName":"","age":30,"gender":"male","email":"austin.hudson@x.dummyjson.com","phone":"+81 405-412-4250","username":"austinh","password":"austinhpass","birthDate":"1995-5-1","image":"https://dummyjson.com/icon/austinh/128","bloodGroup":"A-","height":189.77,"weight":66.83,"eyeColor":"Blue","hair":{"color":"Blue","type":"Straight"},"ip":"147.130.253.116","address":{"address":"1468 Eighth Street","city":"Los Angeles","state":"Maryland","stateCode":"MD","postalCode":"64305","coordinates":{"lat":-28.392471,"lng":-44.144328},"country":"United States"},"macAddress":"e:c0:3:62:e2:d0","university":"University of Michigan--Ann Arbor","bank":{"cardExpire":"02/30","cardNumber":"6011463292832932","cardType":"Discover","currency":"GBP","iban":"GB912RDPFF9YXGMYS7IO14"},"company":{"department":"Sales","name":"Okuneva Group","title":"Legal Counsel","address":{"address":"1323 Adams Street","city":"Jacksonville","state":"Mississippi","stateCode":"MS","postalCode":"18643","coordinates":{"lat":-47.033335,"lng":-68.205081},"country":"United States"}},"ein":"536-921","ssn":"731-202-997","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":92,"firstName":"Autumn","lastName":"Gomez","maidenName":"","age":27,"gender":"female","email":"autumn.gomez@x.dummyjson.com","phone":"+1 340-455-2897","username":"autumng","password":"autumngpass","birthDate":"1998-2-1","image":"https://dummyjson.com/icon/autumng/128","bloodGroup":"A-","height":182.61,"weight":92.77,"eyeColor":"Amber","hair":{"color":"Purple","type":"Wavy"},"ip":"104.233.56.225","address":{"address":"1585 Washington Street","city":"Dallas","state":"Illinois","stateCode":"IL","postalCode":"53203","coordinates":{"lat":27.443768,"lng":-176.861979},"country":"United States"},"macAddress":"75:e4:8e:ea:ce:9d","university":"University of Chicago","bank":{"cardExpire":"09/29","cardNumber":"3618727858757814","cardType":"Diners Club International","currency":"GBP","iban":"GB512IQ7OY0FUSMWYQ1ZY7"},"company":{"department":"Product Management","name":"Kuhlman LLC","title":"Business Analyst","address":{"address":"1818 Jefferson Street","city":"Philadelphia","state":"New York","stateCode":"NY","postalCode":"69388","coordinates":{"lat":-46.202815,"lng":163.840848},"country":"United States"}},"ein":"411-642","ssn":"165-661-612","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":8,"firstName":"Ava","lastName":"Taylor","maidenName":"","age":28,"gender":"female","email":"ava.taylor@x.dummyjson.com","phone":"+1 458-853-7877","username":"avat","password":"avatpass","birthDate":"1997-8-25","image":"https://dummyjson.com/icon/avat/128","bloodGroup":"AB-","height":168.47,"weight":57.08,"eyeColor":"Hazel","hair":{"color":"Red","type":"Kinky"},"ip":"150.73.197.233","address":{"address":"1197 First Street","city":"Fort Worth","state":"Rhode Island","stateCode":"RI","postalCode":"24771","coordinates":{"lat":-81.194833,"lng":-87.948158},"country":"United States"},"macAddress":"8d:2e:c2:d6:e7:a8","university":"University of Wisconsin--Madison","bank":{"cardExpire":"08/30","cardNumber":"5349974103330333","cardType":"Mastercard","currency":"EUR","iban":"FR94ZM2MMGL1EVYQE1ZLCVCFH83"},"company":{"department":"Marketing","name":"Nikolaus Inc","title":"Chief Executive Officer","address":{"address":"930 Lincoln Street","city":"Austin","state":"Colorado","stateCode":"CO","postalCode":"47592","coordinates":{"lat":87.970083,"lng":-42.769351},"country":"United States"}},"ein":"297-762","ssn":"257-419-109","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"moderator"},{"id":54,"firstName":"Ava","lastName":"Harrison","maidenName":"","age":29,"gender":"female","email":"ava.harrison@x.dummyjson.com","phone":"+44 926-778-4653","username":"avah","password":"avahpass","birthDate":"1996-4-22","image":"https://dummyjson.com/icon/avah/128","bloodGroup":"O-","height":155.72,"weight":93.47,"eyeColor":"Hazel","hair":{"color":"Brown","type":"Curly"},"ip":"225.40.138.177","address":{"address":"1094 Adams Street","city":"San Antonio","state":"Vermont","stateCode":"VT","postalCode":"14336","coordinates":{"lat":-84.032892,"lng":-46.255902},"country":"United States"},"macAddress":"4e:2b:e4:33:7a:f8","university":"Harvard University","bank":{"cardExpire":"01/27","cardNumber":"3694482369735209","cardType":"Diners Club International","currency":"AUD","iban":"DE64412118002973670494"},"company":{"department":"Engineering","name":"Blanda - Jacobson","title":"Legal Counsel","address":{"address":"1374 Cedar Street","city":"Philadelphia","state":"Delaware","stateCode":"DE","postalCode":"21641","coordinates":{"lat":-56.564069,"lng":-134.42879},"country":"United States"}},"ein":"145-780","ssn":"621-536-422","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":121,"firstName":"Ava","lastName":"Harris","maidenName":"","age":30,"gender":"female","email":"ava.harris@x.dummyjson.com","phone":"+44 422-227-6412","username":"avahx","password":"avahxpass","birthDate":"1995-8-26","image":"https://dummyjson.com/icon/avahx/128","bloodGroup":"A-","height":199.36,"weight":63.3,"eyeColor":"Blue","hair":{"color":"Brown","type":"Wavy"},"ip":"23.127.175.229","address":{"address":"518 Elm Street","city":"San Antonio","state":"Florida","stateCode":"FL","postalCode":"35171","coordinates":{"lat":74.817644,"lng":15.72801},"country":"United States"},"macAddress":"4:c3:e9:35:23:2a","university":"University of Florida","bank":{"cardExpire":"02/30","cardNumber":"3622583668551978","cardType":"Diners Club International","currency":"JPY","iban":"DE72545287965967528178"},"company":{"department":"Marketing","name":"Lebsack Inc","title":"Engineer","address":{"address":"1495 First Street","city":"Columbus","state":"Alaska","stateCode":"AK","postalCode":"64989","coordinates":{"lat":18.943383,"lng":-136.717336},"country":"United States"}},"ein":"715-161","ssn":"906-771-261","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":16,"firstName":"Avery","lastName":"Perez","maidenName":"","age":26,"gender":"female","email":"avery.perez@x.dummyjson.com","phone":"+61 731-431-3457","username":"averyp","password":"averyppass","birthDate":"1999-3-10","image":"https://dummyjson.com/icon/averyp/128","bloodGroup":"O-","height":172.68,"weight":93.9,"eyeColor":"Brown","hair":{"color":"Green","type":"Curly"},"ip":"131.217.4.214","address":{"address":"1125 First Street","city":"Columbus","state":"Iowa","stateCode":"IA","postalCode":"30973","coordinates":{"lat":12.789127,"lng":85.792598},"country":"United States"},"macAddress":"b3:ff:f3:c5:37:46","university":"Harvard University","bank":{"cardExpire":"08/29","cardNumber":"378024038311910","cardType":"American Express","currency":"USD","iban":"DE42403186906981858976"},"company":{"department":"Accounting","name":"Herzog Inc","title":"Database Administrator","address":{"address":"183 Maple Street","city":"New York","state":"Rhode Island","stateCode":"RI","postalCode":"45238","coordinates":{"lat":-53.318189,"lng":105.835271},"country":"United States"}},"ein":"348-493","ssn":"679-523-686","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":42,"firstName":"Avery","lastName":"Carter","maidenName":"","age":29,"gender":"female","email":"avery.carter@x.dummyjson.com","phone":"+44 254-655-6112","username":"averyc","password":"averycpass","birthDate":"1996-8-21","image":"https://dummyjson.com/icon/averyc/128","bloodGroup":"B-","height":179.92,"weight":59.37,"eyeColor":"Blue","hair":{"color":"Blue","type":"Straight"},"ip":"187.69.252.251","address":{"address":"1999 Seventh Street","city":"San Diego","state":"West Virginia","stateCode":"WV","postalCode":"13916","coordinates":{"lat":-59.303292,"lng":-87.318538},"country":"United States"},"macAddress":"f0:9a:ba:d9:48:d5","university":"Yale University","bank":{"cardExpire":"09/30","cardNumber":"3617114029166871","cardType":"Diners Club International","currency":"AUD","iban":"DE93605312121879910330"},"company":{"department":"Support","name":"Schmidt - Hyatt","title":"Sales Manager","address":{"address":"979 Tenth Street","city":"San Jose","state":"New York","stateCode":"NY","postalCode":"59824","coordinates":{"lat":-5.788002,"lng":88.846665},"country":"United States"}},"ein":"854-428","ssn":"902-510-406","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"}],"total":208,"skip":0,"limit":30}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Retrieves all shopping carts associated with a specific user by their user ID.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/users/4/carts`
## Authentication
- **Required**: No
- This is a public endpoint that doesn't require authentication
## Parameters
### Path Variables
- `userId` (required) - The unique identifier of the user whose carts to retrieve
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
{
"carts": [
{
"id": 1,
"products": [
{
"id": 1,
"title": "Product Name",
"price": 549,
"quantity": 2,
"total": 1098
}
],
"total": 1098,
"discountedTotal": 985,
"userId": 1,
"totalProducts": 1,
"totalQuantity": 2
}
],
"total": 3,
"skip": 0,
"limit": 30
}
```
## Tests Included
- Validates response status code is 200
- Verifies all carts belong to specified user
- Checks carts array structure
- Confirms cart totals and product details
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNzksImV4cCI6MTc2OTk2NDc3OX0.au6-HNuanDOW1Q3iDl4MYxifr14HAULtIcahDIP9Pos |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | ddd4f91e-fa6d-438b-8a0c-d30ab8bdf522 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:09 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 94 |
| x-ratelimit-reset | 1769961193 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"29-eepc+18O6U8zRJowEIQsenFBqoU" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=jINifqAib%2BMMKF%2BYUnPJWZ0wlWjhkSTpFNe6%2B6rKdAWXKetxMY2fpt8un%2FMz%2B07iGNduaJdTQWqadHQav7zkQW66A8eBgnBIWX%2BZ0a4%3D"}]} |
| Content-Encoding | br |
| CF-RAY | 9c729ebb4c742891-AMM |
{"carts":[],"total":0,"skip":0,"limit":0}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Retrieves all posts created by a specific user by their user ID.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/users/4/posts`
## Authentication
- **Required**: No
- This is a public endpoint that doesn't require authentication
## Parameters
### Path Variables
- `userId` (required) - The unique identifier of the user whose posts to retrieve
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
{
"posts": [
{
"id": 1,
"title": "Post Title",
"body": "Post content...",
"tags": ["tag1", "tag2"],
"reactions": {
"likes": 10,
"dislikes": 2
},
"views": 150,
"userId": 1
}
],
"total": 5,
"skip": 0,
"limit": 30
}
```
## Tests Included
- Validates response status code is 200
- Verifies all posts belong to specified user
- Checks posts array structure
- Confirms post fields (title, body, tags, reactions)
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNzksImV4cCI6MTc2OTk2NDc3OX0.au6-HNuanDOW1Q3iDl4MYxifr14HAULtIcahDIP9Pos |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 61c1b955-6b22-47d8-af65-c0c72d48c37b |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:10 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 95 |
| x-ratelimit-reset | 1769961197 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"29-xwojxKfZ82dFWetrHAY/LBMOM7Y" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=2gEJl%2Bw8Kh%2BONWf5HzKYZhtvkGReyxnzPeLoRuPJLRXPe2bc8dXzR4NuDNEjktcNgmZxVfWLticnSNKH2dyebUB2ijBgUFJrvpUdIQ0%3D"}]} |
| Content-Encoding | br |
| CF-RAY | 9c729ebcfe2d2891-AMM |
{"posts":[],"total":0,"skip":0,"limit":0}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Creates a new user in the system with the provided user details.
## Method & Endpoint
- **Method**: `POST`
- **Endpoint**: `https://dummyjson.com/users/add`
## Authentication
- **Required**: No
- This is a public endpoint for demonstration purposes
## Parameters
### Request Body (JSON)
```json
{
"firstName": "John",
"lastName": "Doe",
"email": "john.doe@example.com",
"username": "johndoe",
"password": "password123",
"age": 30,
"gender": "male",
"phone": "+1-555-123-4567"
}
```
**Required Fields**:
- `firstName` - User's first name
- `lastName` - User's last name
- `email` - User's email address
- `username` - Unique username
- `password` - User's password
**Optional Fields**:
- `age`, `gender`, `phone`, `birthDate`, `address`, `company`
## Expected Response
- **Status Code**: `201 Created`
- **Response Structure**: Returns the created user with an assigned ID
```json
{
"id": 209,
"firstName": "John",
"lastName": "Doe",
"email": "john.doe@example.com",
"username": "johndoe",
...
}
```
## Tests Included
- Validates response status code is 201
- Verifies user ID is assigned
- Checks all submitted fields are returned
- Confirms user creation timestamp
| Header Name | Header Value |
|---|---|
| Content-Type | application/json |
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNzksImV4cCI6MTc2OTk2NDc3OX0.au6-HNuanDOW1Q3iDl4MYxifr14HAULtIcahDIP9Pos |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 1b9fbb2a-c509-4c9e-9c0a-b5e57779690f |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 70 |
{
"firstName": "Muhammad",
"lastName": "Ovi",
"age": 250
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:10 GMT |
| Content-Type | application/json; charset=utf-8 |
| Content-Length | 769 |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 98 |
| x-ratelimit-reset | 1769961199 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"301-gKnmafr9l9B8nywhCgSqj6WVp/E" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=zU%2B53bQapezuxW8PFVDInzCFj%2FyOZOaLLy1K7d%2BotYMjyWXQNGWkYIV%2FEYp01EUmnxTCytCSUYZYyu%2Fy76I49ckfZD%2Fk5tKxoOj8oJE%3D"}]} |
| CF-RAY | 9c729ebe8fe52891-AMM |
{"id":209,"firstName":"Muhammad","lastName":"Ovi","maidenName":"","age":250,"gender":"","email":"","phone":"","username":"","password":"","birthDate":"","image":"","bloodGroup":"","height":null,"weight":null,"eyeColor":"","hair":{"color":"","type":""},"ip":"","address":{"address":"","city":"","state":"","stateCode":"","postalCode":"","coordinates":{"lat":null,"lng":null},"country":""},"macAddress":"","university":"","bank":{"cardExpire":"","cardNumber":"","cardType":"","currency":"","iban":""},"company":{"department":"","name":"","title":"","address":{"address":"","city":"","state":"","stateCode":"","postalCode":"","coordinates":{"lat":null,"lng":null},"country":""}},"ein":"","ssn":"","userAgent":"","crypto":{"coin":"","wallet":"","network":""},"role":"user"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 201 | 1 | 0 | 0 |
| firstName and lastName are correct | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 3 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Updates an existing user's information by their unique identifier.
## Method & Endpoint
- **Method**: `PUT`
- **Endpoint**: `https://dummyjson.com/users/4`
## Authentication
- **Required**: No
- This is a public endpoint for demonstration purposes
## Parameters
### Path Variables
- `userId` (required) - The unique identifier of the user to update
### Request Body (JSON)
```json
{
"firstName": "Jane",
"lastName": "Smith",
"email": "jane.smith@example.com",
"age": 32,
"phone": "+1-555-987-6543"
}
```
**Note**: Only include fields you want to update. Unspecified fields remain unchanged.
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**: Returns the updated user with all fields
```json
{
"id": 1,
"firstName": "Jane",
"lastName": "Smith",
"email": "jane.smith@example.com",
"age": 32,
"phone": "+1-555-987-6543",
...
}
```
## Tests Included
- Validates response status code is 200
- Verifies updated fields match request
- Checks user ID remains unchanged
- Confirms other fields are preserved
| Header Name | Header Value |
|---|---|
| Content-Type | application/json |
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNzksImV4cCI6MTc2OTk2NDc3OX0.au6-HNuanDOW1Q3iDl4MYxifr14HAULtIcahDIP9Pos |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 5142f247-eff1-44c4-ae7d-c9a09422147d |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 29 |
{
"lastName": "Owais"
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:10 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 94 |
| x-ratelimit-reset | 1769961197 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"577-AaYYXx8pEPShiBPHOWYz6WVHMB4" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=Rd%2BVaP3y%2FSyD56mM%2BKgPzwy6%2FbvUZxM2ppNll4Uf4tw%2B7BGvL1Uygvfw9JrorZPJNaSJL82kgO5zqUpvEma4LAqCEIMuWAYnEsHoaYk%3D"}]} |
| CF-RAY | 9c729ec019632891-AMM |
{"id":4,"firstName":"James","lastName":"Owais","maidenName":"","age":46,"gender":"male","email":"james.davis@x.dummyjson.com","phone":"+49 614-958-9364","username":"jamesd","password":"jamesdpass","birthDate":"1979-5-4","image":"https://dummyjson.com/icon/jamesd/128","bloodGroup":"AB+","height":193.31,"weight":62.1,"eyeColor":"Amber","hair":{"color":"Blonde","type":"Straight"},"ip":"101.118.131.66","address":{"address":"238 Jefferson Street","city":"Seattle","state":"Pennsylvania","stateCode":"PA","postalCode":"68354","coordinates":{"lat":16.782513,"lng":-139.34723},"country":"United States"},"macAddress":"10:7d:df:1f:97:58","university":"University of Southern California","bank":{"cardExpire":"07/30","cardNumber":"5303440212268149","cardType":"Mastercard","currency":"CAD","iban":"DE01300746880579852937"},"company":{"department":"Support","name":"Pagac and Sons","title":"Research Analyst","address":{"address":"1622 Lincoln Street","city":"Fort Worth","state":"Pennsylvania","stateCode":"PA","postalCode":"27768","coordinates":{"lat":54.91193,"lng":-79.498328},"country":"United States"}},"ein":"904-810","ssn":"116-951-314","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"admin"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Deletes a specific user from the system by their unique identifier.
## Method & Endpoint
- **Method**: `DELETE`
- **Endpoint**: `https://dummyjson.com/users/4`
## Authentication
- **Required**: No
- This is a public endpoint for demonstration purposes
## Parameters
### Path Variables
- `userId` (required) - The unique identifier of the user to delete
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**: Returns the deleted user information with deletion confirmation
```json
{
"id": 1,
"firstName": "Emily",
"lastName": "Johnson",
"email": "emily.johnson@x.dummyjson.com",
"username": "emilys",
"isDeleted": true,
"deletedOn": "2024-01-01T12:00:00.000Z",
...
}
```
## Tests Included
- Validates response status code is 200
- Verifies `isDeleted` flag is true
- Checks deletion timestamp is present
- Confirms deleted user details are returned
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNzksImV4cCI6MTc2OTk2NDc3OX0.au6-HNuanDOW1Q3iDl4MYxifr14HAULtIcahDIP9Pos |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 6ba3169e-3252-4acc-a86a-f77a091a49d4 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:10 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 97 |
| x-ratelimit-reset | 1769961199 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"5af-pPXP5pPPzPS5ajZ1+jPsKMtPbOs" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=stgbAoVfgh7KDkkWuN%2BF%2FdbSk2TNq1b1uwETVR4KR%2B5OTnZhcea2knQsSM3NIFqwuB6dDqlBFw9x%2F42K81kBLEL7PPfwWMyzQcy0pFE%3D"}]} |
| CF-RAY | 9c729ec19b5b2891-AMM |
{"id":4,"firstName":"James","lastName":"Davis","maidenName":"","age":46,"gender":"male","email":"james.davis@x.dummyjson.com","phone":"+49 614-958-9364","username":"jamesd","password":"jamesdpass","birthDate":"1979-5-4","image":"https://dummyjson.com/icon/jamesd/128","bloodGroup":"AB+","height":193.31,"weight":62.1,"eyeColor":"Amber","hair":{"color":"Blonde","type":"Straight"},"ip":"101.118.131.66","address":{"address":"238 Jefferson Street","city":"Seattle","state":"Pennsylvania","stateCode":"PA","postalCode":"68354","coordinates":{"lat":16.782513,"lng":-139.34723},"country":"United States"},"macAddress":"10:7d:df:1f:97:58","university":"University of Southern California","bank":{"cardExpire":"07/30","cardNumber":"5303440212268149","cardType":"Mastercard","currency":"CAD","iban":"DE01300746880579852937"},"company":{"department":"Support","name":"Pagac and Sons","title":"Research Analyst","address":{"address":"1622 Lincoln Street","city":"Fort Worth","state":"Pennsylvania","stateCode":"PA","postalCode":"27768","coordinates":{"lat":54.91193,"lng":-79.498328},"country":"United States"}},"ein":"904-810","ssn":"116-951-314","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"admin","isDeleted":true,"deletedOn":"2026-02-01T15:53:10.730Z"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
# Login User and Get Tokens
## Overview
This endpoint authenticates users with the DummyJSON API and returns access tokens for subsequent authenticated requests. Upon successful authentication, the user receives both an access token and refresh token, along with their profile information.
---
## Request Details
### Endpoint
- **URL**: `https://dummyjson.com/auth/login`
- **Method**: `POST`
- **Content-Type**: `application/json`
### Required Body Parameters
| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `username` | string | Yes | The user's username for authentication |
| `password` | string | Yes | The user's password for authentication |
### Example Request Body
```json
{
"username": "emilys",
"password": "emilyspass"
}
```
---
## Response Structure
### Success Response (200 OK)
The API returns a JSON object containing authentication tokens and user profile information:
| Field | Type | Description |
|-------|------|-------------|
| `accessToken` | string | JWT token used for authenticating subsequent API requests |
| `refreshToken` | string | Token used to refresh the access token when it expires |
| `id` | number | Unique identifier for the authenticated user |
| `username` | string | The user's username |
| `email` | string | The user's email address |
| `firstName` | string | The user's first name |
| `lastName` | string | The user's last name |
| `gender` | string | The user's gender |
| `image` | string | URL to the user's profile image |
### Example Response
```json
{
"accessToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
"refreshToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
"id": 1,
"username": "emilys",
"email": "emily.johnson@x.dummyjson.com",
"firstName": "Emily",
"lastName": "Johnson",
"gender": "female",
"image": "https://dummyjson.com/icon/emilys/128"
}
```
---
## Authentication Flow
1. **Send Login Request**: Submit username and password to the `/auth/login` endpoint
2. **Receive Tokens**: Upon successful authentication, receive `accessToken` and `refreshToken`
3. **Automatic Storage**: The `accessToken` is automatically extracted from the response and stored in the `eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNzksImV4cCI6MTc2OTk2NDc3OX0.au6-HNuanDOW1Q3iDl4MYxifr14HAULtIcahDIP9Pos` environment variable via the post-response script
4. **Use Token**: The stored token is then available for use in subsequent authenticated requests via the `eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNzksImV4cCI6MTc2OTk2NDc3OX0.au6-HNuanDOW1Q3iDl4MYxifr14HAULtIcahDIP9Pos` variable
5. **Token Usage**: Include the access token in the `Authorization` header as `Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNzksImV4cCI6MTc2OTk2NDc3OX0.au6-HNuanDOW1Q3iDl4MYxifr14HAULtIcahDIP9Pos` for protected endpoints
---
## Automated Tests
This request includes comprehensive automated tests that validate the response:
### Test Suite
1. **Status Code Validation**
- Verifies the response status code is `200 OK`
- Ensures successful authentication
2. **Access Token Validation**
- Checks that the `accessToken` field exists in the response
- Confirms the token is returned for authentication
3. **Required Fields Validation**
- Validates presence of essential fields: `id`, `username`, `accessToken`
- Ensures complete user data is returned
4. **Response Time Check**
- Verifies the API responds within 2000ms (2 seconds)
- Monitors performance and ensures acceptable response times
All tests run automatically after the request is sent, providing immediate feedback on the authentication process.
---
## Integration with Authentication Workflow
This endpoint is the **entry point** for the authentication workflow in this collection:
1. **First Step**: This is typically the first request to execute when working with authenticated endpoints
2. **Token Generation**: Generates the access token required for protected resources
3. **Environment Setup**: Automatically configures the environment with the necessary authentication credentials
4. **Subsequent Requests**: Other requests in the collection (like "Get Current auth User", "Refresh auth Session") depend on the token generated here
5. **Session Management**: The refresh token can be used with the "Refresh auth Session" endpoint to obtain a new access token without re-authenticating
---
## Notes
- **Test Credentials**: The example uses test credentials (`emilys` / `emilyspass`) from the DummyJSON demo API
- **Token Expiration**: Access tokens may expire after a certain period; use the refresh token to obtain a new one
- **Security**: In production environments, always use HTTPS and never hardcode credentials
- **Environment Variables**: Ensure the `https://dummyjson.com` variable is set to `https://dummyjson.com` in your active environment
| Header Name | Header Value |
|---|---|
| Content-Type | application/json |
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExNzksImV4cCI6MTc2OTk2NDc3OX0.au6-HNuanDOW1Q3iDl4MYxifr14HAULtIcahDIP9Pos |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 3a343aa2-ef45-46fc-b2a7-47e1a6d054e8 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 69 |
{
"username": "emilys",
"password": "emilyspass"
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:11 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 96 |
| x-ratelimit-reset | 1769961199 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| Set-Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc2OTk2NDc5MX0.3W-gD3oxKuMoEVC_ZILbZsE2n66DWZhtJGckyUS699c; Max-Age=3600; Path=/; Expires=Sun, 01 Feb 2026 16:53:11 GMT; HttpOnly; Secure |
| Set-Cookie | refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc3MjU1MzE5MX0.ag444jYthA_pkQrLkpGgh1QKllIc85htgvZvlFTM3Aw; Max-Age=3600; Path=/; Expires=Sun, 01 Feb 2026 16:53:11 GMT; HttpOnly; Secure |
| etag | W/"3a2-kBipqqCuOjXhacf0twsi8/UrdrM" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=CAWbWnj5Sm%2Fr8EA0xMxMofMEJmLCLLvI4umdAQ5EKmqT4QryOSkxrUwaZqjR%2Fdo%2BlhmYyTUrFRoV8H%2BGndxePQgfKBvgBYpZfSAj3uk%3D"}]} |
| Content-Encoding | br |
| CF-RAY | 9c729ec34d662891-AMM |
{"accessToken":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc2OTk2NDc5MX0.3W-gD3oxKuMoEVC_ZILbZsE2n66DWZhtJGckyUS699c","refreshToken":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc3MjU1MzE5MX0.ag444jYthA_pkQrLkpGgh1QKllIc85htgvZvlFTM3Aw","id":1,"username":"emilys","email":"emily.johnson@x.dummyjson.com","firstName":"Emily","lastName":"Johnson","gender":"female","image":"https://dummyjson.com/icon/emilys/128"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Access token exists | 1 | 0 | 0 |
| Required fields exist | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 4 | 0 | 0 |
| Test Name | Assertion Error |
|---|
# Get Authenticated User
## Description
This endpoint retrieves the complete profile information of the currently authenticated user. It returns detailed user data including personal information, contact details, address, company information, and account metadata.
## Authentication
**Required**: Bearer Token
This endpoint requires authentication via a Bearer token in the Authorization header. The token must be obtained first by logging in through the `/auth/login` endpoint.
```
Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc2OTk2NDc5MX0.3W-gD3oxKuMoEVC_ZILbZsE2n66DWZhtJGckyUS699c
```
## Request
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/auth/me`
- **Headers**:
- `Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc2OTk2NDc5MX0.3W-gD3oxKuMoEVC_ZILbZsE2n66DWZhtJGckyUS699c`
## Response
### Success Response (200 OK)
Returns a JSON object containing the authenticated user's complete profile:
```json
{
"id": 1,
"firstName": "Emily",
"lastName": "Johnson",
"maidenName": "Smith",
"age": 29,
"gender": "female",
"email": "emily.johnson@x.dummyjson.com",
"phone": "+81 965-431-3024",
"username": "emilys",
"birthDate": "1996-5-30",
"image": "https://dummyjson.com/icon/emilys/128",
"bloodGroup": "O-",
"height": 193.24,
"weight": 63.16,
"eyeColor": "Green",
"hair": {
"color": "Brown",
"type": "Curly"
},
"address": {
"address": "626 Main Street",
"city": "Phoenix",
"state": "Mississippi",
"stateCode": "MS",
"postalCode": "29112",
"coordinates": {
"lat": -77.16213,
"lng": -92.084824
},
"country": "United States"
},
"company": {
"department": "Engineering",
"name": "Dooley, Kozey and Cronin",
"title": "Sales Manager",
"address": { ... }
},
"bank": {
"cardExpire": "05/28",
"cardNumber": "3693233511855044",
"cardType": "Diners Club International",
"currency": "GBP",
"iban": "GB74MH2UZLR9TRPHYNU8F8"
},
"role": "admin"
}
```
### Response Fields
| Field | Type | Description |
|-------|------|-------------|
| `id` | integer | Unique user identifier |
| `username` | string | User's login username |
| `firstName` | string | User's first name |
| `lastName` | string | User's last name |
| `email` | string | User's email address |
| `phone` | string | User's phone number |
| `age` | integer | User's age |
| `gender` | string | User's gender |
| `birthDate` | string | User's date of birth |
| `image` | string | URL to user's profile image |
| `address` | object | User's address information including coordinates |
| `company` | object | User's company and employment details |
| `bank` | object | User's banking information |
| `role` | string | User's role/permission level |
## Use Cases
1. **Profile Display**: Fetch user data to display on a profile page or dashboard
2. **Session Validation**: Verify that the current authentication token is valid and retrieve associated user
3. **Personalization**: Get user preferences and information to customize the application experience
4. **Authorization Checks**: Retrieve user role and permissions for access control
5. **User Context**: Obtain user details for logging, analytics, or audit trails
## Example Usage
### JavaScript (Fetch API)
```javascript
const response = await fetch('https://dummyjson.com/auth/me', {
method: 'GET',
headers: {
'Authorization': `Bearer ${accessToken}`,
'Content-Type': 'application/json'
}
});
const userData = await response.json();
console.log(`Welcome, ${userData.firstName}!`);
```
### cURL
```bash
curl -X GET 'https://dummyjson.com/auth/me' \
-H 'Authorization: Bearer YOUR_ACCESS_TOKEN'
```
## Notes
- **Token Expiration**: If the Bearer token has expired, this endpoint will return an authentication error. Use the `/auth/refresh` endpoint to obtain a new token.
- **Sensitive Data**: The response includes sensitive information like banking details. Ensure proper security measures when handling this data.
- **Response Time**: Expected response time is under 2 seconds (validated by automated tests).
- **Required Fields**: The response always includes `id` and `username` fields (validated by automated tests).
- **No Parameters**: This endpoint does not accept any query parameters or request body.
## Error Responses
### 401 Unauthorized
Returned when the Bearer token is missing, invalid, or expired.
```json
{
"message": "Authentication required"
}
```
### 403 Forbidden
Returned when the token is valid but lacks necessary permissions.
## Related Endpoints
- `POST /auth/login` - Obtain access token
- `POST /auth/refresh` - Refresh expired token
- `PUT /users/{userId}` - Update user information
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc2OTk2NDc5MX0.3W-gD3oxKuMoEVC_ZILbZsE2n66DWZhtJGckyUS699c |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 4c3d35f1-1251-4dc9-a5a2-8baa13601098 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc2OTk2NDc5MX0.3W-gD3oxKuMoEVC_ZILbZsE2n66DWZhtJGckyUS699c; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc3MjU1MzE5MX0.ag444jYthA_pkQrLkpGgh1QKllIc85htgvZvlFTM3Aw |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:11 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 93 |
| x-ratelimit-reset | 1769961197 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"58f-CoL/KoXlW3x1PtqQr3wqPsXj6DE" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=I7eiRe9uwkwtrVeUtdo3J9jqhGR152RI%2FoxG8T9s4ER0JCMHa6EWwiUn8V2aGOAV0twKY6fTt6YYyhbPjhH4JgekcNyQaA5GWxAPVos%3D"}]} |
| CF-RAY | 9c729ec4aec92891-AMM |
{"id":1,"firstName":"Emily","lastName":"Johnson","maidenName":"Smith","age":29,"gender":"female","email":"emily.johnson@x.dummyjson.com","phone":"+81 965-431-3024","username":"emilys","password":"emilyspass","birthDate":"1996-5-30","image":"https://dummyjson.com/icon/emilys/128","bloodGroup":"O-","height":193.24,"weight":63.16,"eyeColor":"Green","hair":{"color":"Brown","type":"Curly"},"ip":"42.48.100.32","address":{"address":"626 Main Street","city":"Phoenix","state":"Mississippi","stateCode":"MS","postalCode":"29112","coordinates":{"lat":-77.16213,"lng":-92.084824},"country":"United States"},"macAddress":"47:fa:41:18:ec:eb","university":"University of Wisconsin--Madison","bank":{"cardExpire":"05/28","cardNumber":"3693233511855044","cardType":"Diners Club International","currency":"GBP","iban":"GB74MH2UZLR9TRPHYNU8F8"},"company":{"department":"Engineering","name":"Dooley, Kozey and Cronin","title":"Sales Manager","address":{"address":"263 Tenth Street","city":"San Francisco","state":"Wisconsin","stateCode":"WI","postalCode":"37657","coordinates":{"lat":71.814525,"lng":-161.150263},"country":"United States"}},"ein":"977-175","ssn":"900-590-289","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"admin"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| User content is correct | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 3 | 0 | 0 |
| Test Name | Assertion Error |
|---|
# Refresh Authentication Session
## Overview
This endpoint refreshes an existing authentication session by generating a new access token and refresh token pair. Use this endpoint when your current access token is about to expire or has expired, allowing you to maintain an authenticated session without requiring the user to log in again.
---
## Endpoint Details
**Method:** `POST`
**Path:** `https://dummyjson.com/auth/refresh`
---
## Request Body
The request requires a JSON payload with the following parameters:
| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `refreshToken` | string | Yes | The current valid refresh token (or access token) used to generate new tokens |
| `expiresInMins` | integer | Yes | The desired expiration time for the new access token in minutes (e.g., 30) |
### Example Request Body
```json
{
"refreshToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc2OTk2NDc5MX0.3W-gD3oxKuMoEVC_ZILbZsE2n66DWZhtJGckyUS699c",
"expiresInMins": 30
}
```
---
## Response Format
### Success Response (200 OK)
Returns a JSON object containing new authentication tokens:
```json
{
"accessToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
"refreshToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."
}
```
| Field | Type | Description |
|-------|------|-------------|
| `accessToken` | string | New JWT access token for authenticated requests |
| `refreshToken` | string | New refresh token for future token refresh operations |
---
## Authentication Requirements
- Requires a valid refresh token (or access token) in the request body
- No additional authentication headers required for this endpoint
- The provided token must not be expired or invalid
---
## Use Cases
### When to Use This Endpoint
1. **Token Expiration Prevention**: Proactively refresh tokens before they expire to maintain uninterrupted access
2. **Expired Token Recovery**: Obtain new tokens when your access token has expired
3. **Session Extension**: Extend user sessions without requiring re-authentication
4. **Security Best Practices**: Regularly rotate tokens to minimize security risks
### Typical Workflow
```
1. User logs in → Receives accessToken and refreshToken
2. User makes authenticated requests using accessToken
3. Before accessToken expires → Call /auth/refresh
4. Receive new accessToken and refreshToken
5. Update stored tokens and continue making requests
```
---
## Important Notes
### Token Expiration
- Access tokens have a limited lifespan defined by `expiresInMins`
- The default expiration is typically 30 minutes
- Refresh tokens generally have a longer lifespan than access tokens
- Always store the new tokens returned from this endpoint
### Best Practices
- **Automatic Refresh**: Implement automatic token refresh logic in your application
- **Token Storage**: Securely store both access and refresh tokens (use environment variables in Postman)
- **Error Handling**: If refresh fails, redirect users to login again
- **Token Rotation**: Update both tokens after each refresh for enhanced security
### Error Scenarios
If the refresh token is invalid or expired, you will receive an error response and must authenticate again using the `/auth/login` endpoint.
---
## Related Endpoints
- **Login**: `POST https://dummyjson.com/auth/login` - Initial authentication to obtain tokens
- **Get Current User**: `GET https://dummyjson.com/auth/me` - Verify token validity and get user info
| Header Name | Header Value |
|---|---|
| Content-Type | application/json |
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc2OTk2NDc5MX0.3W-gD3oxKuMoEVC_ZILbZsE2n66DWZhtJGckyUS699c |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 97d39854-308f-47f4-a65b-5ef550471e2b |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 414 |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc2OTk2NDc5MX0.3W-gD3oxKuMoEVC_ZILbZsE2n66DWZhtJGckyUS699c; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc3MjU1MzE5MX0.ag444jYthA_pkQrLkpGgh1QKllIc85htgvZvlFTM3Aw |
{
"refreshToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc2OTk2NDc5MX0.3W-gD3oxKuMoEVC_ZILbZsE2n66DWZhtJGckyUS699c",
"expiresInMins": 30
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:11 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 93 |
| x-ratelimit-reset | 1769961193 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| Set-Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc2OTk2Mjk5MX0.Lj9nWLp2oNsvJH3yshjHjJE7lhuVp0g8wjs1ru5l0hA; Max-Age=1800; Path=/; Expires=Sun, 01 Feb 2026 16:23:11 GMT; HttpOnly; Secure |
| Set-Cookie | refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc3MjU1MzE5MX0.ag444jYthA_pkQrLkpGgh1QKllIc85htgvZvlFTM3Aw; Max-Age=1800; Path=/; Expires=Sun, 01 Feb 2026 16:23:11 GMT; HttpOnly; Secure |
| etag | W/"2f4-H7Rm+JM3Lymc1l8lN+/wgs+10n0" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=c6JonsT7HlDFaoqtWcbll1Y9Y%2BChYb8nCubx5kOSs6kOWia966PCbm1mSgoloFtKVSaRtqAKfw8dRioDcbDKh8daU%2F0QyQGvjtNTlhg%3D"}]} |
| Content-Encoding | br |
| CF-RAY | 9c729ec638642891-AMM |
{"accessToken":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc2OTk2Mjk5MX0.Lj9nWLp2oNsvJH3yshjHjJE7lhuVp0g8wjs1ru5l0hA","refreshToken":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc3MjU1MzE5MX0.ag444jYthA_pkQrLkpGgh1QKllIc85htgvZvlFTM3Aw"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Access token is present | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 3 | 0 | 0 |
| Test Name | Assertion Error |
|---|
# Negative Test: Refresh Authentication Session with Invalid Token
## Overview
This is a **negative test case** designed to validate the API's error handling when attempting to refresh an authentication session using an invalid or expired refresh token.
## Purpose
Tests the authentication refresh endpoint's ability to properly reject and handle invalid refresh token requests, ensuring the API maintains security standards by not allowing unauthorized session refreshes.
## Expected Behavior
- **Status Code**: `401 Unauthorized` or `403 Forbidden`
- **Response Body**: Should contain an error message indicating the token is invalid
- **Security**: The API must reject the request and not generate a new access token
## Request Details
### Endpoint
`POST https://dummyjson.com/auth/refresh`
### Request Body Parameters
| Parameter | Type | Value | Description |
|-----------|------|-------|-------------|
| `refreshToken` | string | `"expired_invalid_token_xyz"` | An intentionally invalid/expired refresh token |
| `expiresInMins` | integer | `30` | Requested token expiration time in minutes |
### Test Scenario
This request deliberately sends an invalid refresh token (`expired_invalid_token_xyz`) to verify the API properly rejects unauthorized refresh attempts.
## Test Validations
The following automated tests are executed on the response:
1. **Status Code Validation**: Verifies the response status code is either `401` or `403`
2. **Error Message Validation**: Confirms the response contains an error message field that is a string
## Use Case & Importance
### Security Validation
This negative test is critical for API security because it:
- **Prevents Token Forgery**: Ensures attackers cannot use fabricated tokens to gain unauthorized access
- **Validates Token Expiration**: Confirms expired tokens are properly rejected
- **Error Handling**: Verifies appropriate error messages are returned to clients
- **Session Security**: Protects against session hijacking attempts
### Real-World Scenarios
This test simulates situations where:
- A user's refresh token has expired
- An attacker attempts to use a stolen or guessed token
- A client application has cached an old/invalid token
- Network issues caused token corruption
By validating proper rejection of invalid tokens, this test ensures the authentication system maintains its security integrity and provides clear feedback for troubleshooting legitimate authentication issues.
| Header Name | Header Value |
|---|---|
| Content-Type | application/json |
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc2OTk2NDc5MX0.3W-gD3oxKuMoEVC_ZILbZsE2n66DWZhtJGckyUS699c |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | fcfc1b1e-685d-4957-a86f-9eb4c27012b9 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 81 |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc2OTk2Mjk5MX0.Lj9nWLp2oNsvJH3yshjHjJE7lhuVp0g8wjs1ru5l0hA; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc3MjU1MzE5MX0.ag444jYthA_pkQrLkpGgh1QKllIc85htgvZvlFTM3Aw |
{
"refreshToken": "expired_invalid_token_xyz",
"expiresInMins": 30
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:11 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 92 |
| x-ratelimit-reset | 1769961197 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"23-pPrdIf6OEYUEvqJKlUDSyBAT260" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=eqWfCzgSMkehikBzm3tGG4DHORrnYPP0svUfpQNNiKIxGUwOLAwPMJ%2FU5o1XM5HeR%2Fl8awLYUAtJPLyi4e7PsPMni2rViyPCYflAkz4%3D"}]} |
| Content-Encoding | br |
| CF-RAY | 9c729ec7e9f92891-AMM |
{"message":"Invalid refresh token"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 401 or 403 | 1 | 0 | 0 |
| Response has error message | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
# Get All Products
## Overview
This endpoint retrieves a complete list of all products available in the e-commerce catalog. It returns comprehensive product information including pricing, inventory, specifications, and customer reviews.
## Request Details
**Method:** `GET`
**URL:** `https://dummyjson.com/products`
**Authentication:** Not required
**Query Parameters:** None (base endpoint)
### Optional Query Parameters
While the base endpoint returns all products, you can use the following query parameters to customize the response:
- `limit` - Limit the number of products returned (e.g., `?limit=10`)
- `skip` - Skip a number of products for pagination (e.g., `?skip=10`)
- `select` - Select specific fields to return (e.g., `?select=title,price`)
- `sortBy` - Sort products by a specific field (e.g., `?sortBy=price`)
- `order` - Sort order: `asc` or `desc` (e.g., `?order=asc`)
## Response Structure
The endpoint returns a JSON object with the following structure:
```json
{
"products": [
{
"id": 1,
"title": "Product Name",
"description": "Product description",
"category": "Category name",
"price": 99.99,
"discountPercentage": 10.5,
"rating": 4.5,
"stock": 100,
"tags": ["tag1", "tag2"],
"brand": "Brand Name",
"sku": "SKU-CODE",
"weight": 5,
"dimensions": {
"width": 10.5,
"height": 15.2,
"depth": 8.3
},
"warrantyInformation": "1 year warranty",
"shippingInformation": "Ships in 1-2 business days",
"availabilityStatus": "In Stock",
"reviews": [
{
"rating": 5,
"comment": "Great product!",
"date": "2025-04-30T09:41:02.053Z",
"reviewerName": "John Doe",
"reviewerEmail": "john.doe@example.com"
}
],
"returnPolicy": "30 days return policy",
"minimumOrderQuantity": 1,
"meta": {
"createdAt": "2025-04-30T09:41:02.053Z",
"updatedAt": "2025-04-30T09:41:02.053Z",
"barcode": "1234567890123",
"qrCode": "https://example.com/qr-code.png"
},
"images": ["https://example.com/image1.jpg"],
"thumbnail": "https://example.com/thumbnail.jpg"
}
],
"total": 100,
"skip": 0,
"limit": 30
}
```
### Response Fields
- **products** (array): Array of product objects
- **total** (number): Total number of products available
- **skip** (number): Number of products skipped (for pagination)
- **limit** (number): Maximum number of products returned
### Product Object Fields
- **id**: Unique product identifier
- **title**: Product name
- **description**: Detailed product description
- **category**: Product category
- **price**: Product price in USD
- **discountPercentage**: Current discount percentage
- **rating**: Average customer rating (0-5)
- **stock**: Available inventory quantity
- **tags**: Array of product tags for categorization
- **brand**: Product brand name
- **sku**: Stock Keeping Unit identifier
- **weight**: Product weight
- **dimensions**: Physical dimensions (width, height, depth)
- **warrantyInformation**: Warranty details
- **shippingInformation**: Shipping time and details
- **availabilityStatus**: Current availability status
- **reviews**: Array of customer reviews with ratings and comments
- **returnPolicy**: Return policy information
- **minimumOrderQuantity**: Minimum quantity required for purchase
- **meta**: Metadata including creation date, barcode, and QR code
- **images**: Array of product image URLs
- **thumbnail**: Main product thumbnail URL
## Example Use Cases
### 1. Display Product Catalog
Retrieve all products to display in a product listing page or catalog view.
### 2. Inventory Management
Fetch complete product list to check stock levels and availability across all items.
### 3. Data Analysis
Pull all product data for analytics, reporting, or business intelligence purposes.
### 4. Search Index Building
Retrieve all products to build or update a search index for the e-commerce platform.
### 5. Product Comparison
Get complete product information to enable comparison features across multiple products.
## Response Validation
This endpoint includes automated tests that verify:
- ✅ Status code is 200 (OK)
- ✅ Response contains a `products` property
- ✅ `products` is an array
- ✅ Response time is under 2000ms
## Notes
- **Performance**: This endpoint returns all products by default. For large catalogs, consider using pagination parameters (`limit` and `skip`) to improve performance.
- **No Authentication Required**: This is a public endpoint that doesn't require authentication.
- **Rate Limiting**: Be mindful of API rate limits when making frequent requests.
- **Caching**: Consider implementing client-side caching for product data to reduce API calls.
- **Related Endpoints**:
- Use `/products/{id}` to get a single product by ID
- Use `/products/search?q={query}` to search for specific products
- Use `/products/category/{category}` to filter by category
- Use `/products/categories` to get all available categories
## Status Codes
- **200 OK**: Successfully retrieved products
- **500 Internal Server Error**: Server error occurred
## Example Request
```bash
GET https://dummyjson.com/products
```
## Example Response (Truncated)
```json
{
"products": [
{
"id": 1,
"title": "Essence Mascara Lash Princess",
"category": "beauty",
"price": 9.99,
"rating": 2.56,
"stock": 99
},
{
"id": 2,
"title": "Eyeshadow Palette with Mirror",
"category": "beauty",
"price": 19.99,
"rating": 2.86,
"stock": 34
}
],
"total": 194,
"skip": 0,
"limit": 30
}
```
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc2OTk2NDc5MX0.3W-gD3oxKuMoEVC_ZILbZsE2n66DWZhtJGckyUS699c |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 5185dc78-902f-4cda-ad2f-abed1dc88e29 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc2OTk2Mjk5MX0.Lj9nWLp2oNsvJH3yshjHjJE7lhuVp0g8wjs1ru5l0hA; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc3MjU1MzE5MX0.ag444jYthA_pkQrLkpGgh1QKllIc85htgvZvlFTM3Aw |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:11 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 99 |
| x-ratelimit-reset | 1769448742 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"ac3a-uk0FDUI0X0lS5liyUbIxqA7L7F4" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| Age | 512459 |
| Cache-Control | no-store |
| cf-cache-status | HIT |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=aNVWYnvDj1xJXudRwGQN9DK33DuWsuKT7vnpT5nSm1IhyLCKcb6Q%2B5YrYH4dvxLsnyFyFBGbvY2h8xPIiNNsZhB9%2B6CDkyvmRki0980%3D"}]} |
| CF-RAY | 9c729ec98ba32891-AMM |
{"products":[{"id":1,"title":"Essence Mascara Lash Princess","description":"The Essence Mascara Lash Princess is a popular mascara known for its volumizing and lengthening effects. Achieve dramatic lashes with this long-lasting and cruelty-free formula.","category":"beauty","price":9.99,"discountPercentage":10.48,"rating":2.56,"stock":99,"tags":["beauty","mascara"],"brand":"Essence","sku":"BEA-ESS-ESS-001","weight":4,"dimensions":{"width":15.14,"height":13.08,"depth":22.99},"warrantyInformation":"1 week warranty","shippingInformation":"Ships in 3-5 business days","availabilityStatus":"In Stock","reviews":[{"rating":3,"comment":"Would not recommend!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Eleanor Collins","reviewerEmail":"eleanor.collins@x.dummyjson.com"},{"rating":4,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Lucas Gordon","reviewerEmail":"lucas.gordon@x.dummyjson.com"},{"rating":5,"comment":"Highly impressed!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Eleanor Collins","reviewerEmail":"eleanor.collins@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":48,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"5784719087687","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/beauty/essence-mascara-lash-princess/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/beauty/essence-mascara-lash-princess/thumbnail.webp"},{"id":2,"title":"Eyeshadow Palette with Mirror","description":"The Eyeshadow Palette with Mirror offers a versatile range of eyeshadow shades for creating stunning eye looks. With a built-in mirror, it's convenient for on-the-go makeup application.","category":"beauty","price":19.99,"discountPercentage":18.19,"rating":2.86,"stock":34,"tags":["beauty","eyeshadow"],"brand":"Glamour Beauty","sku":"BEA-GLA-EYE-002","weight":9,"dimensions":{"width":9.26,"height":22.47,"depth":27.67},"warrantyInformation":"1 year warranty","shippingInformation":"Ships in 2 weeks","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Great product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Savannah Gomez","reviewerEmail":"savannah.gomez@x.dummyjson.com"},{"rating":4,"comment":"Awesome product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Christian Perez","reviewerEmail":"christian.perez@x.dummyjson.com"},{"rating":1,"comment":"Poor quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Nicholas Bailey","reviewerEmail":"nicholas.bailey@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":20,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"9170275171413","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/beauty/eyeshadow-palette-with-mirror/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/beauty/eyeshadow-palette-with-mirror/thumbnail.webp"},{"id":3,"title":"Powder Canister","description":"The Powder Canister is a finely milled setting powder designed to set makeup and control shine. With a lightweight and translucent formula, it provides a smooth and matte finish.","category":"beauty","price":14.99,"discountPercentage":9.84,"rating":4.64,"stock":89,"tags":["beauty","face powder"],"brand":"Velvet Touch","sku":"BEA-VEL-POW-003","weight":8,"dimensions":{"width":29.27,"height":27.93,"depth":20.59},"warrantyInformation":"3 months warranty","shippingInformation":"Ships in 1-2 business days","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Would buy again!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Alexander Jones","reviewerEmail":"alexander.jones@x.dummyjson.com"},{"rating":5,"comment":"Highly impressed!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Elijah Cruz","reviewerEmail":"elijah.cruz@x.dummyjson.com"},{"rating":1,"comment":"Very dissatisfied!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Avery Perez","reviewerEmail":"avery.perez@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":22,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"8418883906837","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/beauty/powder-canister/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/beauty/powder-canister/thumbnail.webp"},{"id":4,"title":"Red Lipstick","description":"The Red Lipstick is a classic and bold choice for adding a pop of color to your lips. With a creamy and pigmented formula, it provides a vibrant and long-lasting finish.","category":"beauty","price":12.99,"discountPercentage":12.16,"rating":4.36,"stock":91,"tags":["beauty","lipstick"],"brand":"Chic Cosmetics","sku":"BEA-CHI-LIP-004","weight":1,"dimensions":{"width":18.11,"height":28.38,"depth":22.17},"warrantyInformation":"3 year warranty","shippingInformation":"Ships in 1 week","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Great product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Liam Garcia","reviewerEmail":"liam.garcia@x.dummyjson.com"},{"rating":5,"comment":"Great product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Ruby Andrews","reviewerEmail":"ruby.andrews@x.dummyjson.com"},{"rating":5,"comment":"Would buy again!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Clara Berry","reviewerEmail":"clara.berry@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":40,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"9467746727219","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/beauty/red-lipstick/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/beauty/red-lipstick/thumbnail.webp"},{"id":5,"title":"Red Nail Polish","description":"The Red Nail Polish offers a rich and glossy red hue for vibrant and polished nails. With a quick-drying formula, it provides a salon-quality finish at home.","category":"beauty","price":8.99,"discountPercentage":11.44,"rating":4.32,"stock":79,"tags":["beauty","nail polish"],"brand":"Nail Couture","sku":"BEA-NAI-NAI-005","weight":8,"dimensions":{"width":21.63,"height":16.48,"depth":29.84},"warrantyInformation":"1 month warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":2,"comment":"Poor quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Benjamin Wilson","reviewerEmail":"benjamin.wilson@x.dummyjson.com"},{"rating":5,"comment":"Great product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Liam Smith","reviewerEmail":"liam.smith@x.dummyjson.com"},{"rating":1,"comment":"Very unhappy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Clara Berry","reviewerEmail":"clara.berry@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":22,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"4063010628104","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/beauty/red-nail-polish/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/beauty/red-nail-polish/thumbnail.webp"},{"id":6,"title":"Calvin Klein CK One","description":"CK One by Calvin Klein is a classic unisex fragrance, known for its fresh and clean scent. It's a versatile fragrance suitable for everyday wear.","category":"fragrances","price":49.99,"discountPercentage":1.89,"rating":4.37,"stock":29,"tags":["fragrances","perfumes"],"brand":"Calvin Klein","sku":"FRA-CAL-CAL-006","weight":7,"dimensions":{"width":29.36,"height":27.76,"depth":20.72},"warrantyInformation":"1 week warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":2,"comment":"Very disappointed!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Layla Young","reviewerEmail":"layla.young@x.dummyjson.com"},{"rating":4,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Daniel Cook","reviewerEmail":"daniel.cook@x.dummyjson.com"},{"rating":3,"comment":"Not as described!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Jacob Cooper","reviewerEmail":"jacob.cooper@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":9,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"2451534060749","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/fragrances/calvin-klein-ck-one/1.webp","https://cdn.dummyjson.com/product-images/fragrances/calvin-klein-ck-one/2.webp","https://cdn.dummyjson.com/product-images/fragrances/calvin-klein-ck-one/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/fragrances/calvin-klein-ck-one/thumbnail.webp"},{"id":7,"title":"Chanel Coco Noir Eau De","description":"Coco Noir by Chanel is an elegant and mysterious fragrance, featuring notes of grapefruit, rose, and sandalwood. Perfect for evening occasions.","category":"fragrances","price":129.99,"discountPercentage":16.51,"rating":4.26,"stock":58,"tags":["fragrances","perfumes"],"brand":"Chanel","sku":"FRA-CHA-CHA-007","weight":7,"dimensions":{"width":24.5,"height":25.7,"depth":25.98},"warrantyInformation":"3 year warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Highly impressed!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Ruby Andrews","reviewerEmail":"ruby.andrews@x.dummyjson.com"},{"rating":5,"comment":"Awesome product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Leah Henderson","reviewerEmail":"leah.henderson@x.dummyjson.com"},{"rating":5,"comment":"Very happy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Xavier Wright","reviewerEmail":"xavier.wright@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"4091737746820","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/fragrances/chanel-coco-noir-eau-de/1.webp","https://cdn.dummyjson.com/product-images/fragrances/chanel-coco-noir-eau-de/2.webp","https://cdn.dummyjson.com/product-images/fragrances/chanel-coco-noir-eau-de/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/fragrances/chanel-coco-noir-eau-de/thumbnail.webp"},{"id":8,"title":"Dior J'adore","description":"J'adore by Dior is a luxurious and floral fragrance, known for its blend of ylang-ylang, rose, and jasmine. It embodies femininity and sophistication.","category":"fragrances","price":89.99,"discountPercentage":14.72,"rating":3.8,"stock":98,"tags":["fragrances","perfumes"],"brand":"Dior","sku":"FRA-DIO-DIO-008","weight":4,"dimensions":{"width":27.67,"height":28.28,"depth":11.83},"warrantyInformation":"1 week warranty","shippingInformation":"Ships in 2 weeks","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Great value for money!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Nicholas Bailey","reviewerEmail":"nicholas.bailey@x.dummyjson.com"},{"rating":4,"comment":"Great value for money!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Penelope Harper","reviewerEmail":"penelope.harper@x.dummyjson.com"},{"rating":4,"comment":"Great product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Emma Miller","reviewerEmail":"emma.miller@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":10,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"1445086097250","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/fragrances/dior-j'adore/1.webp","https://cdn.dummyjson.com/product-images/fragrances/dior-j'adore/2.webp","https://cdn.dummyjson.com/product-images/fragrances/dior-j'adore/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/fragrances/dior-j'adore/thumbnail.webp"},{"id":9,"title":"Dolce Shine Eau de","description":"Dolce Shine by Dolce & Gabbana is a vibrant and fruity fragrance, featuring notes of mango, jasmine, and blonde woods. It's a joyful and youthful scent.","category":"fragrances","price":69.99,"discountPercentage":0.62,"rating":3.96,"stock":4,"tags":["fragrances","perfumes"],"brand":"Dolce & Gabbana","sku":"FRA-DOL-DOL-009","weight":6,"dimensions":{"width":27.28,"height":29.88,"depth":18.3},"warrantyInformation":"3 year warranty","shippingInformation":"Ships in 1 month","availabilityStatus":"Low Stock","reviews":[{"rating":4,"comment":"Would buy again!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Mateo Bennett","reviewerEmail":"mateo.bennett@x.dummyjson.com"},{"rating":4,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Nolan Gonzalez","reviewerEmail":"nolan.gonzalez@x.dummyjson.com"},{"rating":5,"comment":"Very happy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Aurora Lawson","reviewerEmail":"aurora.lawson@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":2,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"3023868210708","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/fragrances/dolce-shine-eau-de/1.webp","https://cdn.dummyjson.com/product-images/fragrances/dolce-shine-eau-de/2.webp","https://cdn.dummyjson.com/product-images/fragrances/dolce-shine-eau-de/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/fragrances/dolce-shine-eau-de/thumbnail.webp"},{"id":10,"title":"Gucci Bloom Eau de","description":"Gucci Bloom by Gucci is a floral and captivating fragrance, with notes of tuberose, jasmine, and Rangoon creeper. It's a modern and romantic scent.","category":"fragrances","price":79.99,"discountPercentage":14.39,"rating":2.74,"stock":91,"tags":["fragrances","perfumes"],"brand":"Gucci","sku":"FRA-GUC-GUC-010","weight":7,"dimensions":{"width":20.92,"height":21.68,"depth":11.2},"warrantyInformation":"6 months warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":1,"comment":"Very dissatisfied!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Cameron Perez","reviewerEmail":"cameron.perez@x.dummyjson.com"},{"rating":5,"comment":"Very happy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Daniel Cook","reviewerEmail":"daniel.cook@x.dummyjson.com"},{"rating":4,"comment":"Highly impressed!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Addison Wright","reviewerEmail":"addison.wright@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":2,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"3170832177880","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/fragrances/gucci-bloom-eau-de/1.webp","https://cdn.dummyjson.com/product-images/fragrances/gucci-bloom-eau-de/2.webp","https://cdn.dummyjson.com/product-images/fragrances/gucci-bloom-eau-de/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/fragrances/gucci-bloom-eau-de/thumbnail.webp"},{"id":11,"title":"Annibale Colombo Bed","description":"The Annibale Colombo Bed is a luxurious and elegant bed frame, crafted with high-quality materials for a comfortable and stylish bedroom.","category":"furniture","price":1899.99,"discountPercentage":8.57,"rating":4.77,"stock":88,"tags":["furniture","beds"],"brand":"Annibale Colombo","sku":"FUR-ANN-ANN-011","weight":10,"dimensions":{"width":28.16,"height":25.36,"depth":17.28},"warrantyInformation":"1 year warranty","shippingInformation":"Ships in 1 month","availabilityStatus":"In Stock","reviews":[{"rating":2,"comment":"Would not recommend!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Christopher West","reviewerEmail":"christopher.west@x.dummyjson.com"},{"rating":4,"comment":"Highly impressed!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Vivian Carter","reviewerEmail":"vivian.carter@x.dummyjson.com"},{"rating":1,"comment":"Poor quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Mason Wright","reviewerEmail":"mason.wright@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"3610757456581","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/furniture/annibale-colombo-bed/1.webp","https://cdn.dummyjson.com/product-images/furniture/annibale-colombo-bed/2.webp","https://cdn.dummyjson.com/product-images/furniture/annibale-colombo-bed/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/furniture/annibale-colombo-bed/thumbnail.webp"},{"id":12,"title":"Annibale Colombo Sofa","description":"The Annibale Colombo Sofa is a sophisticated and comfortable seating option, featuring exquisite design and premium upholstery for your living room.","category":"furniture","price":2499.99,"discountPercentage":14.4,"rating":3.92,"stock":60,"tags":["furniture","sofas"],"brand":"Annibale Colombo","sku":"FUR-ANN-ANN-012","weight":6,"dimensions":{"width":12.75,"height":20.55,"depth":19.06},"warrantyInformation":"Lifetime warranty","shippingInformation":"Ships in 1 week","availabilityStatus":"In Stock","reviews":[{"rating":3,"comment":"Very unhappy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Christian Perez","reviewerEmail":"christian.perez@x.dummyjson.com"},{"rating":5,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Lillian Bishop","reviewerEmail":"lillian.bishop@x.dummyjson.com"},{"rating":1,"comment":"Poor quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Lillian Simmons","reviewerEmail":"lillian.simmons@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"1777662847736","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/furniture/annibale-colombo-sofa/1.webp","https://cdn.dummyjson.com/product-images/furniture/annibale-colombo-sofa/2.webp","https://cdn.dummyjson.com/product-images/furniture/annibale-colombo-sofa/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/furniture/annibale-colombo-sofa/thumbnail.webp"},{"id":13,"title":"Bedside Table African Cherry","description":"The Bedside Table in African Cherry is a stylish and functional addition to your bedroom, providing convenient storage space and a touch of elegance.","category":"furniture","price":299.99,"discountPercentage":19.09,"rating":2.87,"stock":64,"tags":["furniture","bedside tables"],"brand":"Furniture Co.","sku":"FUR-FUR-BED-013","weight":2,"dimensions":{"width":13.47,"height":24.99,"depth":27.35},"warrantyInformation":"5 year warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Aaliyah Hanson","reviewerEmail":"aaliyah.hanson@x.dummyjson.com"},{"rating":4,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Liam Smith","reviewerEmail":"liam.smith@x.dummyjson.com"},{"rating":4,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Avery Barnes","reviewerEmail":"avery.barnes@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":3,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"6441287925979","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/furniture/bedside-table-african-cherry/1.webp","https://cdn.dummyjson.com/product-images/furniture/bedside-table-african-cherry/2.webp","https://cdn.dummyjson.com/product-images/furniture/bedside-table-african-cherry/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/furniture/bedside-table-african-cherry/thumbnail.webp"},{"id":14,"title":"Knoll Saarinen Executive Conference Chair","description":"The Knoll Saarinen Executive Conference Chair is a modern and ergonomic chair, perfect for your office or conference room with its timeless design.","category":"furniture","price":499.99,"discountPercentage":2.01,"rating":4.88,"stock":26,"tags":["furniture","office chairs"],"brand":"Knoll","sku":"FUR-KNO-KNO-014","weight":10,"dimensions":{"width":13.81,"height":7.5,"depth":5.62},"warrantyInformation":"2 year warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":2,"comment":"Waste of money!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Ella Cook","reviewerEmail":"ella.cook@x.dummyjson.com"},{"rating":2,"comment":"Very dissatisfied!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Clara Berry","reviewerEmail":"clara.berry@x.dummyjson.com"},{"rating":5,"comment":"Would buy again!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Elena Long","reviewerEmail":"elena.long@x.dummyjson.com"}],"returnPolicy":"60 days return policy","minimumOrderQuantity":5,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"8919386859966","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/furniture/knoll-saarinen-executive-conference-chair/1.webp","https://cdn.dummyjson.com/product-images/furniture/knoll-saarinen-executive-conference-chair/2.webp","https://cdn.dummyjson.com/product-images/furniture/knoll-saarinen-executive-conference-chair/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/furniture/knoll-saarinen-executive-conference-chair/thumbnail.webp"},{"id":15,"title":"Wooden Bathroom Sink With Mirror","description":"The Wooden Bathroom Sink with Mirror is a unique and stylish addition to your bathroom, featuring a wooden sink countertop and a matching mirror.","category":"furniture","price":799.99,"discountPercentage":8.8,"rating":3.59,"stock":7,"tags":["furniture","bathroom"],"brand":"Bath Trends","sku":"FUR-BAT-WOO-015","weight":10,"dimensions":{"width":7.98,"height":8.88,"depth":28.46},"warrantyInformation":"3 year warranty","shippingInformation":"Ships in 3-5 business days","availabilityStatus":"Low Stock","reviews":[{"rating":4,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Logan Torres","reviewerEmail":"logan.torres@x.dummyjson.com"},{"rating":5,"comment":"Very pleased!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Aria Parker","reviewerEmail":"aria.parker@x.dummyjson.com"},{"rating":3,"comment":"Poor quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Dylan Wells","reviewerEmail":"dylan.wells@x.dummyjson.com"}],"returnPolicy":"60 days return policy","minimumOrderQuantity":2,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"1958104402873","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/furniture/wooden-bathroom-sink-with-mirror/1.webp","https://cdn.dummyjson.com/product-images/furniture/wooden-bathroom-sink-with-mirror/2.webp","https://cdn.dummyjson.com/product-images/furniture/wooden-bathroom-sink-with-mirror/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/furniture/wooden-bathroom-sink-with-mirror/thumbnail.webp"},{"id":16,"title":"Apple","description":"Fresh and crisp apples, perfect for snacking or incorporating into various recipes.","category":"groceries","price":1.99,"discountPercentage":12.62,"rating":4.19,"stock":8,"tags":["fruits"],"sku":"GRO-BRD-APP-016","weight":9,"dimensions":{"width":13.66,"height":11.01,"depth":9.73},"warrantyInformation":"3 year warranty","shippingInformation":"Ships in 2 weeks","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Sophia Brown","reviewerEmail":"sophia.brown@x.dummyjson.com"},{"rating":1,"comment":"Very dissatisfied!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Scarlett Bowman","reviewerEmail":"scarlett.bowman@x.dummyjson.com"},{"rating":3,"comment":"Very unhappy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"William Gonzalez","reviewerEmail":"william.gonzalez@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":7,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"7962803553314","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/apple/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/apple/thumbnail.webp"},{"id":17,"title":"Beef Steak","description":"High-quality beef steak, great for grilling or cooking to your preferred level of doneness.","category":"groceries","price":12.99,"discountPercentage":9.61,"rating":4.47,"stock":86,"tags":["meat"],"sku":"GRO-BRD-BEE-017","weight":10,"dimensions":{"width":18.9,"height":5.77,"depth":18.57},"warrantyInformation":"3 year warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":3,"comment":"Would not recommend!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Eleanor Tyler","reviewerEmail":"eleanor.tyler@x.dummyjson.com"},{"rating":4,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Alexander Jones","reviewerEmail":"alexander.jones@x.dummyjson.com"},{"rating":5,"comment":"Great value for money!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Natalie Harris","reviewerEmail":"natalie.harris@x.dummyjson.com"}],"returnPolicy":"60 days return policy","minimumOrderQuantity":43,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"5640063409695","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/beef-steak/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/beef-steak/thumbnail.webp"},{"id":18,"title":"Cat Food","description":"Nutritious cat food formulated to meet the dietary needs of your feline friend.","category":"groceries","price":8.99,"discountPercentage":9.58,"rating":3.13,"stock":46,"tags":["pet supplies","cat food"],"sku":"GRO-BRD-FOO-018","weight":10,"dimensions":{"width":18.08,"height":9.26,"depth":21.86},"warrantyInformation":"1 year warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":3,"comment":"Would not recommend!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Noah Lewis","reviewerEmail":"noah.lewis@x.dummyjson.com"},{"rating":3,"comment":"Very unhappy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Ruby Andrews","reviewerEmail":"ruby.andrews@x.dummyjson.com"},{"rating":2,"comment":"Very disappointed!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Ethan Thompson","reviewerEmail":"ethan.thompson@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":18,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"1483991328610","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/cat-food/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/cat-food/thumbnail.webp"},{"id":19,"title":"Chicken Meat","description":"Fresh and tender chicken meat, suitable for various culinary preparations.","category":"groceries","price":9.99,"discountPercentage":13.7,"rating":3.19,"stock":97,"tags":["meat"],"sku":"GRO-BRD-CHI-019","weight":1,"dimensions":{"width":11.03,"height":22.11,"depth":16.01},"warrantyInformation":"1 year warranty","shippingInformation":"Ships in 1 month","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Great product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Mateo Bennett","reviewerEmail":"mateo.bennett@x.dummyjson.com"},{"rating":4,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Jackson Evans","reviewerEmail":"jackson.evans@x.dummyjson.com"},{"rating":3,"comment":"Not worth the price!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Sadie Morales","reviewerEmail":"sadie.morales@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":22,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"8829514594521","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/chicken-meat/1.webp","https://cdn.dummyjson.com/product-images/groceries/chicken-meat/2.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/chicken-meat/thumbnail.webp"},{"id":20,"title":"Cooking Oil","description":"Versatile cooking oil suitable for frying, sautéing, and various culinary applications.","category":"groceries","price":4.99,"discountPercentage":9.33,"rating":4.8,"stock":10,"tags":["cooking essentials"],"sku":"GRO-BRD-COO-020","weight":5,"dimensions":{"width":19.95,"height":27.54,"depth":24.86},"warrantyInformation":"Lifetime warranty","shippingInformation":"Ships in 1-2 business days","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Very happy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Victoria McDonald","reviewerEmail":"victoria.mcdonald@x.dummyjson.com"},{"rating":2,"comment":"Would not recommend!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Hazel Evans","reviewerEmail":"hazel.evans@x.dummyjson.com"},{"rating":5,"comment":"Would buy again!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Zoe Bennett","reviewerEmail":"zoe.bennett@x.dummyjson.com"}],"returnPolicy":"30 days return policy","minimumOrderQuantity":46,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"4874727824518","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/cooking-oil/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/cooking-oil/thumbnail.webp"},{"id":21,"title":"Cucumber","description":"Crisp and hydrating cucumbers, ideal for salads, snacks, or as a refreshing side.","category":"groceries","price":1.49,"discountPercentage":0.16,"rating":4.07,"stock":84,"tags":["vegetables"],"sku":"GRO-BRD-CUC-021","weight":4,"dimensions":{"width":12.8,"height":28.38,"depth":21.34},"warrantyInformation":"2 year warranty","shippingInformation":"Ships in 1-2 business days","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Great product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Lincoln Kelly","reviewerEmail":"lincoln.kelly@x.dummyjson.com"},{"rating":4,"comment":"Great value for money!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Savannah Gomez","reviewerEmail":"savannah.gomez@x.dummyjson.com"},{"rating":2,"comment":"Poor quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"James Davis","reviewerEmail":"james.davis@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":2,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"5300066378225","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/cucumber/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/cucumber/thumbnail.webp"},{"id":22,"title":"Dog Food","description":"Specially formulated dog food designed to provide essential nutrients for your canine companion.","category":"groceries","price":10.99,"discountPercentage":10.27,"rating":4.55,"stock":71,"tags":["pet supplies","dog food"],"sku":"GRO-BRD-FOO-022","weight":10,"dimensions":{"width":16.93,"height":27.15,"depth":9.29},"warrantyInformation":"No warranty","shippingInformation":"Ships in 1-2 business days","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Nicholas Edwards","reviewerEmail":"nicholas.edwards@x.dummyjson.com"},{"rating":5,"comment":"Awesome product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Zachary Lee","reviewerEmail":"zachary.lee@x.dummyjson.com"},{"rating":4,"comment":"Great product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Nova Cooper","reviewerEmail":"nova.cooper@x.dummyjson.com"}],"returnPolicy":"60 days return policy","minimumOrderQuantity":43,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"5906686116469","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/dog-food/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/dog-food/thumbnail.webp"},{"id":23,"title":"Eggs","description":"Fresh eggs, a versatile ingredient for baking, cooking, or breakfast.","category":"groceries","price":2.99,"discountPercentage":11.05,"rating":2.53,"stock":9,"tags":["dairy"],"sku":"GRO-BRD-EGG-023","weight":2,"dimensions":{"width":11.42,"height":7.44,"depth":16.95},"warrantyInformation":"1 week warranty","shippingInformation":"Ships in 1 week","availabilityStatus":"In Stock","reviews":[{"rating":3,"comment":"Disappointing product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Penelope King","reviewerEmail":"penelope.king@x.dummyjson.com"},{"rating":3,"comment":"Poor quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Eleanor Tyler","reviewerEmail":"eleanor.tyler@x.dummyjson.com"},{"rating":4,"comment":"Very pleased!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Benjamin Foster","reviewerEmail":"benjamin.foster@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":32,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"3478638588469","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/eggs/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/eggs/thumbnail.webp"},{"id":24,"title":"Fish Steak","description":"Quality fish steak, suitable for grilling, baking, or pan-searing.","category":"groceries","price":14.99,"discountPercentage":4.23,"rating":3.78,"stock":74,"tags":["seafood"],"sku":"GRO-BRD-FIS-024","weight":6,"dimensions":{"width":14.95,"height":26.31,"depth":11.27},"warrantyInformation":"1 month warranty","shippingInformation":"Ships in 3-5 business days","availabilityStatus":"In Stock","reviews":[{"rating":2,"comment":"Would not buy again!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Caleb Perkins","reviewerEmail":"caleb.perkins@x.dummyjson.com"},{"rating":5,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Isabella Jackson","reviewerEmail":"isabella.jackson@x.dummyjson.com"},{"rating":4,"comment":"Great value for money!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Nathan Dixon","reviewerEmail":"nathan.dixon@x.dummyjson.com"}],"returnPolicy":"60 days return policy","minimumOrderQuantity":50,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"9595036192098","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/fish-steak/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/fish-steak/thumbnail.webp"},{"id":25,"title":"Green Bell Pepper","description":"Fresh and vibrant green bell pepper, perfect for adding color and flavor to your dishes.","category":"groceries","price":1.29,"discountPercentage":0.16,"rating":3.25,"stock":33,"tags":["vegetables"],"sku":"GRO-BRD-GRE-025","weight":2,"dimensions":{"width":15.33,"height":26.65,"depth":14.44},"warrantyInformation":"1 month warranty","shippingInformation":"Ships in 1 week","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Avery Carter","reviewerEmail":"avery.carter@x.dummyjson.com"},{"rating":3,"comment":"Would not recommend!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Henry Hill","reviewerEmail":"henry.hill@x.dummyjson.com"},{"rating":5,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Addison Wright","reviewerEmail":"addison.wright@x.dummyjson.com"}],"returnPolicy":"30 days return policy","minimumOrderQuantity":12,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"2365227493323","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/green-bell-pepper/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/green-bell-pepper/thumbnail.webp"},{"id":26,"title":"Green Chili Pepper","description":"Spicy green chili pepper, ideal for adding heat to your favorite recipes.","category":"groceries","price":0.99,"discountPercentage":1,"rating":3.66,"stock":3,"tags":["vegetables"],"sku":"GRO-BRD-GRE-026","weight":7,"dimensions":{"width":15.38,"height":18.12,"depth":19.92},"warrantyInformation":"2 year warranty","shippingInformation":"Ships in 1 week","availabilityStatus":"Low Stock","reviews":[{"rating":4,"comment":"Great product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Luna Russell","reviewerEmail":"luna.russell@x.dummyjson.com"},{"rating":1,"comment":"Waste of money!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Noah Lewis","reviewerEmail":"noah.lewis@x.dummyjson.com"},{"rating":3,"comment":"Very disappointed!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Clara Berry","reviewerEmail":"clara.berry@x.dummyjson.com"}],"returnPolicy":"30 days return policy","minimumOrderQuantity":39,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"9335000538563","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/green-chili-pepper/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/green-chili-pepper/thumbnail.webp"},{"id":27,"title":"Honey Jar","description":"Pure and natural honey in a convenient jar, perfect for sweetening beverages or drizzling over food.","category":"groceries","price":6.99,"discountPercentage":14.4,"rating":3.97,"stock":34,"tags":["condiments"],"sku":"GRO-BRD-HON-027","weight":2,"dimensions":{"width":9.28,"height":21.72,"depth":17.74},"warrantyInformation":"1 month warranty","shippingInformation":"Ships in 1-2 business days","availabilityStatus":"In Stock","reviews":[{"rating":1,"comment":"Very disappointed!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Autumn Gomez","reviewerEmail":"autumn.gomez@x.dummyjson.com"},{"rating":4,"comment":"Highly impressed!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Benjamin Wilson","reviewerEmail":"benjamin.wilson@x.dummyjson.com"},{"rating":2,"comment":"Very disappointed!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Nicholas Edwards","reviewerEmail":"nicholas.edwards@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":47,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"6354306346329","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/honey-jar/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/honey-jar/thumbnail.webp"},{"id":28,"title":"Ice Cream","description":"Creamy and delicious ice cream, available in various flavors for a delightful treat.","category":"groceries","price":5.49,"discountPercentage":8.69,"rating":3.39,"stock":27,"tags":["desserts"],"sku":"GRO-BRD-CRE-028","weight":1,"dimensions":{"width":14.83,"height":15.07,"depth":24.2},"warrantyInformation":"1 month warranty","shippingInformation":"Ships in 2 weeks","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Very pleased!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Elijah Cruz","reviewerEmail":"elijah.cruz@x.dummyjson.com"},{"rating":4,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Jace Smith","reviewerEmail":"jace.smith@x.dummyjson.com"},{"rating":5,"comment":"Highly impressed!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Sadie Morales","reviewerEmail":"sadie.morales@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":42,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"0788954559076","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/ice-cream/1.webp","https://cdn.dummyjson.com/product-images/groceries/ice-cream/2.webp","https://cdn.dummyjson.com/product-images/groceries/ice-cream/3.webp","https://cdn.dummyjson.com/product-images/groceries/ice-cream/4.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/ice-cream/thumbnail.webp"},{"id":29,"title":"Juice","description":"Refreshing fruit juice, packed with vitamins and great for staying hydrated.","category":"groceries","price":3.99,"discountPercentage":12.06,"rating":3.94,"stock":50,"tags":["beverages"],"sku":"GRO-BRD-JUI-029","weight":1,"dimensions":{"width":18.56,"height":21.46,"depth":28.02},"warrantyInformation":"6 months warranty","shippingInformation":"Ships in 1 week","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Nolan Gonzalez","reviewerEmail":"nolan.gonzalez@x.dummyjson.com"},{"rating":4,"comment":"Would buy again!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Bella Grant","reviewerEmail":"bella.grant@x.dummyjson.com"},{"rating":5,"comment":"Awesome product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Aria Flores","reviewerEmail":"aria.flores@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":25,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"6936112580956","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/juice/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/juice/thumbnail.webp"},{"id":30,"title":"Kiwi","description":"Nutrient-rich kiwi, perfect for snacking or adding a tropical twist to your dishes.","category":"groceries","price":2.49,"discountPercentage":15.22,"rating":4.93,"stock":99,"tags":["fruits"],"sku":"GRO-BRD-KIW-030","weight":5,"dimensions":{"width":19.4,"height":18.67,"depth":17.13},"warrantyInformation":"6 months warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Emily Brown","reviewerEmail":"emily.brown@x.dummyjson.com"},{"rating":2,"comment":"Would not buy again!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Jackson Morales","reviewerEmail":"jackson.morales@x.dummyjson.com"},{"rating":4,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Nora Russell","reviewerEmail":"nora.russell@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":30,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"2530169917252","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/kiwi/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/kiwi/thumbnail.webp"}],"total":194,"skip":0,"limit":30}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Products content is correct | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 3 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Retrieves detailed information about a specific product by its unique identifier.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/products/20`
## Authentication
- **Required**: No
- This is a public endpoint that doesn't require authentication
## Parameters
### Path Variables
- `productId` (required) - The unique identifier of the product to retrieve
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
{
"id": 1,
"title": "Product Name",
"description": "Product description",
"price": 549,
"discountPercentage": 12.96,
"rating": 4.69,
"stock": 94,
"brand": "Brand Name",
"category": "Category Name",
"thumbnail": "image_url",
"images": ["image1_url", "image2_url"]
}
```
## Tests Included
- Validates response status code is 200
- Verifies product object structure and required fields
- Checks data types for numeric and string fields
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc2OTk2NDc5MX0.3W-gD3oxKuMoEVC_ZILbZsE2n66DWZhtJGckyUS699c |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 2612714b-7289-43e2-bd41-53aa341a212c |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc2OTk2Mjk5MX0.Lj9nWLp2oNsvJH3yshjHjJE7lhuVp0g8wjs1ru5l0hA; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc3MjU1MzE5MX0.ag444jYthA_pkQrLkpGgh1QKllIc85htgvZvlFTM3Aw |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:12 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 99 |
| x-ratelimit-reset | 1769961200 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"55c-epT06uXY62/BP4rliBoJwBxhmRc" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=b7DlUuMnAOgGuwyFd8hRtsLTIQ%2Bv%2BliVHATEwAjg5K%2BYf5Tvj5NEyActqXVsWJyjoZRlTgkHv2O5cBu15f75nU0N3mXnJy7cdV7Q0CM%3D"}]} |
| CF-RAY | 9c729eca3c672891-AMM |
{"id":20,"title":"Cooking Oil","description":"Versatile cooking oil suitable for frying, sautéing, and various culinary applications.","category":"groceries","price":4.99,"discountPercentage":9.33,"rating":4.8,"stock":10,"tags":["cooking essentials"],"sku":"GRO-BRD-COO-020","weight":5,"dimensions":{"width":19.95,"height":27.54,"depth":24.86},"warrantyInformation":"Lifetime warranty","shippingInformation":"Ships in 1-2 business days","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Very happy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Victoria McDonald","reviewerEmail":"victoria.mcdonald@x.dummyjson.com"},{"rating":2,"comment":"Would not recommend!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Hazel Evans","reviewerEmail":"hazel.evans@x.dummyjson.com"},{"rating":5,"comment":"Would buy again!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Zoe Bennett","reviewerEmail":"zoe.bennett@x.dummyjson.com"}],"returnPolicy":"30 days return policy","minimumOrderQuantity":46,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"4874727824518","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/cooking-oil/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/cooking-oil/thumbnail.webp"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Searches for products based on a query string, returning all products that match the search criteria.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/products/search?q=phone`
## Authentication
- **Required**: No
- This is a public endpoint that doesn't require authentication
## Parameters
### Query Parameters
- `q` (required) - The search query string to find matching products
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
{
"products": [
{
"id": 1,
"title": "Product Name",
"description": "Product description",
"price": 549,
"category": "Category Name",
...
}
],
"total": 4,
"skip": 0,
"limit": 30
}
```
## Tests Included
- Validates response status code is 200
- Verifies products array exists
- Checks pagination metadata (total, skip, limit)
- Confirms search results match query criteria
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc2OTk2NDc5MX0.3W-gD3oxKuMoEVC_ZILbZsE2n66DWZhtJGckyUS699c |
| Content-Type | text/plain |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | f75a257b-c34b-4083-97a0-3ac3bb13e1ce |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 61 |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc2OTk2Mjk5MX0.Lj9nWLp2oNsvJH3yshjHjJE7lhuVp0g8wjs1ru5l0hA; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc3MjU1MzE5MX0.ag444jYthA_pkQrLkpGgh1QKllIc85htgvZvlFTM3Aw |
{
"username": "emilys",
"password": "emilyspass"
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:12 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 92 |
| x-ratelimit-reset | 1769961193 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"91a2-RFRCC1oz+o2Uvyk0nOQo9Pf5Q2g" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=fefpXnHdkAa9BwEyVU1U8kd2qgJGISJlmibKKt9kVM7wyTIPO0xetAAYphVeubFEvJHy1IacbIaAIpCh8%2F7qYAri6%2BZV4p4AyVEcY28%3D"}]} |
| CF-RAY | 9c729ecbeecc2891-AMM |
{"products":[{"id":101,"title":"Apple AirPods Max Silver","description":"The Apple AirPods Max in Silver are premium over-ear headphones with high-fidelity audio, adaptive EQ, and active noise cancellation. Experience immersive sound in style.","category":"mobile-accessories","price":549.99,"discountPercentage":13.67,"rating":3.47,"stock":59,"tags":["electronics","over-ear headphones"],"brand":"Apple","sku":"MOB-APP-APP-101","weight":2,"dimensions":{"width":24.88,"height":14.9,"depth":27.54},"warrantyInformation":"No warranty","shippingInformation":"Ships in 2 weeks","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Henry Adams","reviewerEmail":"henry.adams@x.dummyjson.com"},{"rating":4,"comment":"Very happy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Elijah Cruz","reviewerEmail":"elijah.cruz@x.dummyjson.com"},{"rating":4,"comment":"Would buy again!","date":"2025-04-30T09:41:02.053Z","reviewerName":"William Lopez","reviewerEmail":"william.lopez@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"4062176053732","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/mobile-accessories/apple-airpods-max-silver/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/mobile-accessories/apple-airpods-max-silver/thumbnail.webp"},{"id":104,"title":"Apple iPhone Charger","description":"The Apple iPhone Charger is a high-quality charger designed for fast and efficient charging of your iPhone. Ensure your device stays powered up and ready to go.","category":"mobile-accessories","price":19.99,"discountPercentage":18.52,"rating":4.15,"stock":31,"tags":["electronics","chargers"],"brand":"Apple","sku":"MOB-APP-APP-104","weight":1,"dimensions":{"width":13.63,"height":26.25,"depth":5.95},"warrantyInformation":"1 year warranty","shippingInformation":"Ships in 2 weeks","availabilityStatus":"In Stock","reviews":[{"rating":1,"comment":"Very disappointed!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Sadie Morales","reviewerEmail":"sadie.morales@x.dummyjson.com"},{"rating":5,"comment":"Great product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Lily Torres","reviewerEmail":"lily.torres@x.dummyjson.com"},{"rating":2,"comment":"Waste of money!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Luke Cooper","reviewerEmail":"luke.cooper@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":14,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"0879776541417","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/mobile-accessories/apple-iphone-charger/1.webp","https://cdn.dummyjson.com/product-images/mobile-accessories/apple-iphone-charger/2.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/mobile-accessories/apple-iphone-charger/thumbnail.webp"},{"id":105,"title":"Apple MagSafe Battery Pack","description":"The Apple MagSafe Battery Pack is a portable and convenient way to add extra battery life to your MagSafe-compatible iPhone. Attach it magnetically for a secure connection.","category":"mobile-accessories","price":99.99,"discountPercentage":17.17,"rating":3.62,"stock":1,"tags":["electronics","power banks"],"brand":"Apple","sku":"MOB-APP-APP-105","weight":6,"dimensions":{"width":15.4,"height":11.89,"depth":19.67},"warrantyInformation":"2 year warranty","shippingInformation":"Ships overnight","availabilityStatus":"Low Stock","reviews":[{"rating":2,"comment":"Would not recommend!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Stella Morris","reviewerEmail":"stella.morris@x.dummyjson.com"},{"rating":2,"comment":"Not as described!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Henry Adams","reviewerEmail":"henry.adams@x.dummyjson.com"},{"rating":5,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Cameron Burke","reviewerEmail":"cameron.burke@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":4,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"5157424897794","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/mobile-accessories/apple-magsafe-battery-pack/1.webp","https://cdn.dummyjson.com/product-images/mobile-accessories/apple-magsafe-battery-pack/2.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/mobile-accessories/apple-magsafe-battery-pack/thumbnail.webp"},{"id":107,"title":"Beats Flex Wireless Earphones","description":"The Beats Flex Wireless Earphones offer a comfortable and versatile audio experience. With magnetic earbuds and up to 12 hours of battery life, they are ideal for everyday use.","category":"mobile-accessories","price":49.99,"discountPercentage":5.73,"rating":4.24,"stock":50,"tags":["electronics","wireless earphones"],"brand":"Beats","sku":"MOB-BEA-BEA-107","weight":8,"dimensions":{"width":17.86,"height":25.74,"depth":23.09},"warrantyInformation":"1 year warranty","shippingInformation":"Ships in 1-2 business days","availabilityStatus":"In Stock","reviews":[{"rating":2,"comment":"Disappointing product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"William Gonzalez","reviewerEmail":"william.gonzalez@x.dummyjson.com"},{"rating":5,"comment":"Very pleased!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Gabriel Mitchell","reviewerEmail":"gabriel.mitchell@x.dummyjson.com"},{"rating":2,"comment":"Not worth the price!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Gabriel Adams","reviewerEmail":"gabriel.adams@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":17,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"1741271692174","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/mobile-accessories/beats-flex-wireless-earphones/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/mobile-accessories/beats-flex-wireless-earphones/thumbnail.webp"},{"id":108,"title":"iPhone 12 Silicone Case with MagSafe Plum","description":"The iPhone 12 Silicone Case with MagSafe in Plum is a stylish and protective case designed for the iPhone 12. It features MagSafe technology for easy attachment of accessories.","category":"mobile-accessories","price":29.99,"discountPercentage":13.85,"rating":3.62,"stock":69,"tags":["electronics","phone accessories"],"brand":"Apple","sku":"MOB-APP-IPH-108","weight":7,"dimensions":{"width":12.49,"height":11.29,"depth":23.52},"warrantyInformation":"3 months warranty","shippingInformation":"Ships in 3-5 business days","availabilityStatus":"In Stock","reviews":[{"rating":2,"comment":"Would not buy again!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Penelope King","reviewerEmail":"penelope.king@x.dummyjson.com"},{"rating":5,"comment":"Great value for money!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Isabella Anderson","reviewerEmail":"isabella.anderson@x.dummyjson.com"},{"rating":5,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Claire Foster","reviewerEmail":"claire.foster@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":4,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"8156838251449","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/mobile-accessories/iphone-12-silicone-case-with-magsafe-plum/1.webp","https://cdn.dummyjson.com/product-images/mobile-accessories/iphone-12-silicone-case-with-magsafe-plum/2.webp","https://cdn.dummyjson.com/product-images/mobile-accessories/iphone-12-silicone-case-with-magsafe-plum/3.webp","https://cdn.dummyjson.com/product-images/mobile-accessories/iphone-12-silicone-case-with-magsafe-plum/4.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/mobile-accessories/iphone-12-silicone-case-with-magsafe-plum/thumbnail.webp"},{"id":110,"title":"Selfie Lamp with iPhone","description":"The Selfie Lamp with iPhone is a portable and adjustable LED light designed to enhance your selfies and video calls. Attach it to your iPhone for well-lit photos.","category":"mobile-accessories","price":14.99,"discountPercentage":19.4,"rating":3.55,"stock":58,"tags":["electronics","selfie accessories"],"brand":"GadgetMaster","sku":"MOB-GAD-SEL-110","weight":10,"dimensions":{"width":5.26,"height":13.84,"depth":22.83},"warrantyInformation":"Lifetime warranty","shippingInformation":"Ships in 2 weeks","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Luke Cooper","reviewerEmail":"luke.cooper@x.dummyjson.com"},{"rating":3,"comment":"Poor quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Caleb Perkins","reviewerEmail":"caleb.perkins@x.dummyjson.com"},{"rating":4,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Benjamin Wilson","reviewerEmail":"benjamin.wilson@x.dummyjson.com"}],"returnPolicy":"60 days return policy","minimumOrderQuantity":22,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"4372781189895","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/mobile-accessories/selfie-lamp-with-iphone/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/mobile-accessories/selfie-lamp-with-iphone/thumbnail.webp"},{"id":111,"title":"Selfie Stick Monopod","description":"The Selfie Stick Monopod is a extendable and foldable device for capturing the perfect selfie or group photo. Compatible with smartphones and cameras.","category":"mobile-accessories","price":12.99,"discountPercentage":19.12,"rating":3.88,"stock":11,"tags":["electronics","selfie accessories"],"brand":"SnapTech","sku":"MOB-SNA-SEL-111","weight":2,"dimensions":{"width":24.76,"height":26.38,"depth":21.39},"warrantyInformation":"3 year warranty","shippingInformation":"Ships in 1-2 business days","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Great product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Ryan Graham","reviewerEmail":"ryan.graham@x.dummyjson.com"},{"rating":4,"comment":"Great product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Nora Russell","reviewerEmail":"nora.russell@x.dummyjson.com"},{"rating":1,"comment":"Very dissatisfied!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Luna Perez","reviewerEmail":"luna.perez@x.dummyjson.com"}],"returnPolicy":"30 days return policy","minimumOrderQuantity":8,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"7063982050226","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/mobile-accessories/selfie-stick-monopod/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/mobile-accessories/selfie-stick-monopod/thumbnail.webp"},{"id":121,"title":"iPhone 5s","description":"The iPhone 5s is a classic smartphone known for its compact design and advanced features during its release. While it's an older model, it still provides a reliable user experience.","category":"smartphones","price":199.99,"discountPercentage":12.91,"rating":2.83,"stock":25,"tags":["smartphones","apple"],"brand":"Apple","sku":"SMA-APP-IPH-121","weight":2,"dimensions":{"width":5.29,"height":18.38,"depth":17.72},"warrantyInformation":"Lifetime warranty","shippingInformation":"Ships in 1 month","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Jace Smith","reviewerEmail":"jace.smith@x.dummyjson.com"},{"rating":1,"comment":"Not as described!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Logan Torres","reviewerEmail":"logan.torres@x.dummyjson.com"},{"rating":5,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Harper Kelly","reviewerEmail":"harper.kelly@x.dummyjson.com"}],"returnPolicy":"60 days return policy","minimumOrderQuantity":3,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"8814683940853","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/iphone-5s/1.webp","https://cdn.dummyjson.com/product-images/smartphones/iphone-5s/2.webp","https://cdn.dummyjson.com/product-images/smartphones/iphone-5s/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/iphone-5s/thumbnail.webp"},{"id":122,"title":"iPhone 6","description":"The iPhone 6 is a stylish and capable smartphone with a larger display and improved performance. It introduced new features and design elements, making it a popular choice in its time.","category":"smartphones","price":299.99,"discountPercentage":6.69,"rating":3.41,"stock":60,"tags":["smartphones","apple"],"brand":"Apple","sku":"SMA-APP-IPH-122","weight":7,"dimensions":{"width":11,"height":9.1,"depth":9.67},"warrantyInformation":"1 month warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":3,"comment":"Disappointing product!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Stella Morris","reviewerEmail":"stella.morris@x.dummyjson.com"},{"rating":4,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Nolan Gonzalez","reviewerEmail":"nolan.gonzalez@x.dummyjson.com"},{"rating":5,"comment":"Great value for money!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Benjamin Foster","reviewerEmail":"benjamin.foster@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":5,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"9922357685013","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/iphone-6/1.webp","https://cdn.dummyjson.com/product-images/smartphones/iphone-6/2.webp","https://cdn.dummyjson.com/product-images/smartphones/iphone-6/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/iphone-6/thumbnail.webp"},{"id":123,"title":"iPhone 13 Pro","description":"The iPhone 13 Pro is a cutting-edge smartphone with a powerful camera system, high-performance chip, and stunning display. It offers advanced features for users who demand top-notch technology.","category":"smartphones","price":1099.99,"discountPercentage":9.37,"rating":4.12,"stock":56,"tags":["smartphones","apple"],"brand":"Apple","sku":"SMA-APP-IPH-123","weight":8,"dimensions":{"width":12.63,"height":5.28,"depth":14.29},"warrantyInformation":"3 year warranty","shippingInformation":"Ships in 2 weeks","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Would buy again!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Christian Perez","reviewerEmail":"christian.perez@x.dummyjson.com"},{"rating":3,"comment":"Not worth the price!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Liam Gonzalez","reviewerEmail":"liam.gonzalez@x.dummyjson.com"},{"rating":5,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Tristan Scott","reviewerEmail":"tristan.scott@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"4998438802308","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/iphone-13-pro/1.webp","https://cdn.dummyjson.com/product-images/smartphones/iphone-13-pro/2.webp","https://cdn.dummyjson.com/product-images/smartphones/iphone-13-pro/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/iphone-13-pro/thumbnail.webp"},{"id":124,"title":"iPhone X","description":"The iPhone X is a flagship smartphone featuring a bezel-less OLED display, facial recognition technology (Face ID), and impressive performance. It represents a milestone in iPhone design and innovation.","category":"smartphones","price":899.99,"discountPercentage":19.59,"rating":2.51,"stock":37,"tags":["smartphones","apple"],"brand":"Apple","sku":"SMA-APP-IPH-124","weight":1,"dimensions":{"width":21.88,"height":24.19,"depth":14.19},"warrantyInformation":"3 months warranty","shippingInformation":"Ships in 3-5 business days","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Tyler Davis","reviewerEmail":"tyler.davis@x.dummyjson.com"},{"rating":5,"comment":"Great product!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Aria Parker","reviewerEmail":"aria.parker@x.dummyjson.com"},{"rating":2,"comment":"Not as described!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Lily Torres","reviewerEmail":"lily.torres@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":2,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"3034949322264","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/iphone-x/1.webp","https://cdn.dummyjson.com/product-images/smartphones/iphone-x/2.webp","https://cdn.dummyjson.com/product-images/smartphones/iphone-x/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/iphone-x/thumbnail.webp"},{"id":125,"title":"Oppo A57","description":"The Oppo A57 is a mid-range smartphone known for its sleek design and capable features. It offers a balance of performance and affordability, making it a popular choice.","category":"smartphones","price":249.99,"discountPercentage":2.43,"rating":3.94,"stock":19,"tags":["smartphones","oppo"],"brand":"Oppo","sku":"SMA-OPP-OPP-125","weight":5,"dimensions":{"width":7.2,"height":10.74,"depth":23.68},"warrantyInformation":"Lifetime warranty","shippingInformation":"Ships in 3-5 business days","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Scarlett Wright","reviewerEmail":"scarlett.wright@x.dummyjson.com"},{"rating":5,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Jacob Cooper","reviewerEmail":"jacob.cooper@x.dummyjson.com"},{"rating":2,"comment":"Poor quality!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Zoe Nicholson","reviewerEmail":"zoe.nicholson@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":3,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"0651223722522","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/oppo-a57/1.webp","https://cdn.dummyjson.com/product-images/smartphones/oppo-a57/2.webp","https://cdn.dummyjson.com/product-images/smartphones/oppo-a57/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/oppo-a57/thumbnail.webp"},{"id":126,"title":"Oppo F19 Pro Plus","description":"The Oppo F19 Pro Plus is a feature-rich smartphone with a focus on camera capabilities. It boasts advanced photography features and a powerful performance for a premium user experience.","category":"smartphones","price":399.99,"discountPercentage":18.64,"rating":3.51,"stock":78,"tags":["smartphones","oppo"],"brand":"Oppo","sku":"SMA-OPP-OPP-126","weight":6,"dimensions":{"width":6.78,"height":25.17,"depth":8.4},"warrantyInformation":"3 year warranty","shippingInformation":"Ships in 1 week","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Very happy with my purchase!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Emily Johnson","reviewerEmail":"emily.johnson@x.dummyjson.com"},{"rating":5,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Jaxon Barnes","reviewerEmail":"jaxon.barnes@x.dummyjson.com"},{"rating":4,"comment":"Would buy again!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Nova Cooper","reviewerEmail":"nova.cooper@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"8576893968169","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/oppo-f19-pro-plus/1.webp","https://cdn.dummyjson.com/product-images/smartphones/oppo-f19-pro-plus/2.webp","https://cdn.dummyjson.com/product-images/smartphones/oppo-f19-pro-plus/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/oppo-f19-pro-plus/thumbnail.webp"},{"id":127,"title":"Oppo K1","description":"The Oppo K1 series offers a range of smartphones with various features and specifications. Known for their stylish design and reliable performance, the Oppo K1 series caters to diverse user preferences.","category":"smartphones","price":299.99,"discountPercentage":18.29,"rating":4.25,"stock":55,"tags":["smartphones","oppo"],"brand":"Oppo","sku":"SMA-OPP-OPP-127","weight":5,"dimensions":{"width":13.89,"height":10.63,"depth":16.6},"warrantyInformation":"1 month warranty","shippingInformation":"Ships in 1-2 business days","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Very pleased!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Christopher West","reviewerEmail":"christopher.west@x.dummyjson.com"},{"rating":4,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Mia Miller","reviewerEmail":"mia.miller@x.dummyjson.com"},{"rating":2,"comment":"Very dissatisfied!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Ella Adams","reviewerEmail":"ella.adams@x.dummyjson.com"}],"returnPolicy":"30 days return policy","minimumOrderQuantity":5,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"3106827888743","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/oppo-k1/1.webp","https://cdn.dummyjson.com/product-images/smartphones/oppo-k1/2.webp","https://cdn.dummyjson.com/product-images/smartphones/oppo-k1/3.webp","https://cdn.dummyjson.com/product-images/smartphones/oppo-k1/4.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/oppo-k1/thumbnail.webp"},{"id":128,"title":"Realme C35","description":"The Realme C35 is a budget-friendly smartphone with a focus on providing essential features for everyday use. It offers a reliable performance and user-friendly experience.","category":"smartphones","price":149.99,"discountPercentage":15.3,"rating":4.2,"stock":48,"tags":["smartphones","realme"],"brand":"Realme","sku":"SMA-REA-REA-128","weight":2,"dimensions":{"width":25.28,"height":8.14,"depth":29.53},"warrantyInformation":"3 year warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Great product!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Penelope King","reviewerEmail":"penelope.king@x.dummyjson.com"},{"rating":2,"comment":"Very unhappy with my purchase!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Asher Scott","reviewerEmail":"asher.scott@x.dummyjson.com"},{"rating":4,"comment":"Highly impressed!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Henry Adams","reviewerEmail":"henry.adams@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":3,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"7825844344364","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/realme-c35/1.webp","https://cdn.dummyjson.com/product-images/smartphones/realme-c35/2.webp","https://cdn.dummyjson.com/product-images/smartphones/realme-c35/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/realme-c35/thumbnail.webp"},{"id":129,"title":"Realme X","description":"The Realme X is a mid-range smartphone known for its sleek design and impressive display. It offers a good balance of performance and camera capabilities for users seeking a quality device.","category":"smartphones","price":299.99,"discountPercentage":6.95,"rating":3.7,"stock":12,"tags":["smartphones","realme"],"brand":"Realme","sku":"SMA-REA-REA-129","weight":4,"dimensions":{"width":25.59,"height":21.42,"depth":12.75},"warrantyInformation":"1 month warranty","shippingInformation":"Ships in 3-5 business days","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Would buy again!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Hazel Evans","reviewerEmail":"hazel.evans@x.dummyjson.com"},{"rating":5,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Brayden Fleming","reviewerEmail":"brayden.fleming@x.dummyjson.com"},{"rating":5,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Madison Stewart","reviewerEmail":"madison.stewart@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":3,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"4948452391831","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/realme-x/1.webp","https://cdn.dummyjson.com/product-images/smartphones/realme-x/2.webp","https://cdn.dummyjson.com/product-images/smartphones/realme-x/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/realme-x/thumbnail.webp"},{"id":130,"title":"Realme XT","description":"The Realme XT is a feature-rich smartphone with a focus on camera technology. It comes equipped with advanced camera sensors, delivering high-quality photos and videos for photography enthusiasts.","category":"smartphones","price":349.99,"discountPercentage":11.51,"rating":4.58,"stock":80,"tags":["smartphones","realme"],"brand":"Realme","sku":"SMA-REA-REA-130","weight":3,"dimensions":{"width":24.98,"height":26.73,"depth":6.5},"warrantyInformation":"3 year warranty","shippingInformation":"Ships in 1 month","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Emily Brown","reviewerEmail":"emily.brown@x.dummyjson.com"},{"rating":3,"comment":"Not as described!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Ella Cook","reviewerEmail":"ella.cook@x.dummyjson.com"},{"rating":5,"comment":"Would buy again!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Layla Sullivan","reviewerEmail":"layla.sullivan@x.dummyjson.com"}],"returnPolicy":"60 days return policy","minimumOrderQuantity":3,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"6151817227632","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/realme-xt/1.webp","https://cdn.dummyjson.com/product-images/smartphones/realme-xt/2.webp","https://cdn.dummyjson.com/product-images/smartphones/realme-xt/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/realme-xt/thumbnail.webp"},{"id":131,"title":"Samsung Galaxy S7","description":"The Samsung Galaxy S7 is a flagship smartphone known for its sleek design and advanced features. It features a high-resolution display, powerful camera, and robust performance.","category":"smartphones","price":299.99,"discountPercentage":19.55,"rating":3.3,"stock":67,"tags":["smartphones","samsung galaxy"],"brand":"Samsung","sku":"SMA-SAM-SAM-131","weight":10,"dimensions":{"width":13.55,"height":24.24,"depth":5.63},"warrantyInformation":"3 months warranty","shippingInformation":"Ships in 3-5 business days","availabilityStatus":"In Stock","reviews":[{"rating":1,"comment":"Not as described!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Julian James","reviewerEmail":"julian.james@x.dummyjson.com"},{"rating":4,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Lucas Gordon","reviewerEmail":"lucas.gordon@x.dummyjson.com"},{"rating":4,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Ava Taylor","reviewerEmail":"ava.taylor@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"7557912146622","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s7/1.webp","https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s7/2.webp","https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s7/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s7/thumbnail.webp"},{"id":132,"title":"Samsung Galaxy S8","description":"The Samsung Galaxy S8 is a premium smartphone with an Infinity Display, offering a stunning visual experience. It boasts advanced camera capabilities and cutting-edge technology.","category":"smartphones","price":499.99,"discountPercentage":19.45,"rating":4.4,"stock":0,"tags":["smartphones","samsung galaxy"],"brand":"Samsung","sku":"SMA-SAM-SAM-132","weight":6,"dimensions":{"width":23.05,"height":26.88,"depth":15.73},"warrantyInformation":"2 year warranty","shippingInformation":"Ships in 1 week","availabilityStatus":"Out of Stock","reviews":[{"rating":4,"comment":"Highly impressed!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Owen Fisher","reviewerEmail":"owen.fisher@x.dummyjson.com"},{"rating":4,"comment":"Highly impressed!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Clara Berry","reviewerEmail":"clara.berry@x.dummyjson.com"},{"rating":4,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Tyler Davis","reviewerEmail":"tyler.davis@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":4,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"5995499013336","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s8/1.webp","https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s8/2.webp","https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s8/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s8/thumbnail.webp"},{"id":133,"title":"Samsung Galaxy S10","description":"The Samsung Galaxy S10 is a flagship device featuring a dynamic AMOLED display, versatile camera system, and powerful performance. It represents innovation and excellence in smartphone technology.","category":"smartphones","price":699.99,"discountPercentage":5.59,"rating":3.06,"stock":19,"tags":["smartphones","samsung galaxy"],"brand":"Samsung","sku":"SMA-SAM-SAM-133","weight":9,"dimensions":{"width":27.41,"height":15.26,"depth":27.02},"warrantyInformation":"No warranty","shippingInformation":"Ships in 2 weeks","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Tristan Scott","reviewerEmail":"tristan.scott@x.dummyjson.com"},{"rating":5,"comment":"Would buy again!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Christopher West","reviewerEmail":"christopher.west@x.dummyjson.com"},{"rating":2,"comment":"Would not recommend!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Amelia Perez","reviewerEmail":"amelia.perez@x.dummyjson.com"}],"returnPolicy":"30 days return policy","minimumOrderQuantity":2,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"4676898229465","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s10/1.webp","https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s10/2.webp","https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s10/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s10/thumbnail.webp"},{"id":134,"title":"Vivo S1","description":"The Vivo S1 is a stylish and mid-range smartphone offering a blend of design and performance. It features a vibrant display, capable camera system, and reliable functionality.","category":"smartphones","price":249.99,"discountPercentage":10.17,"rating":3.5,"stock":50,"tags":["smartphones","vivo"],"brand":"Vivo","sku":"SMA-VIV-VIV-134","weight":4,"dimensions":{"width":14.06,"height":11.79,"depth":6.78},"warrantyInformation":"6 months warranty","shippingInformation":"Ships in 3-5 business days","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Samantha Martinez","reviewerEmail":"samantha.martinez@x.dummyjson.com"},{"rating":3,"comment":"Very disappointed!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Logan Lee","reviewerEmail":"logan.lee@x.dummyjson.com"},{"rating":4,"comment":"Would buy again!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Sophia Jones","reviewerEmail":"sophia.jones@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"8575699153333","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/vivo-s1/1.webp","https://cdn.dummyjson.com/product-images/smartphones/vivo-s1/2.webp","https://cdn.dummyjson.com/product-images/smartphones/vivo-s1/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/vivo-s1/thumbnail.webp"},{"id":135,"title":"Vivo V9","description":"The Vivo V9 is a smartphone known for its sleek design and emphasis on capturing high-quality selfies. It features a notch display, dual-camera setup, and a modern design.","category":"smartphones","price":299.99,"discountPercentage":17.67,"rating":3.6,"stock":82,"tags":["smartphones","vivo"],"brand":"Vivo","sku":"SMA-VIV-VIV-135","weight":4,"dimensions":{"width":19.85,"height":21.83,"depth":13.04},"warrantyInformation":"2 year warranty","shippingInformation":"Ships in 1 month","availabilityStatus":"In Stock","reviews":[{"rating":2,"comment":"Very unhappy with my purchase!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Logan Lawson","reviewerEmail":"logan.lawson@x.dummyjson.com"},{"rating":5,"comment":"Awesome product!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Layla Young","reviewerEmail":"layla.young@x.dummyjson.com"},{"rating":4,"comment":"Great value for money!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Asher Scott","reviewerEmail":"asher.scott@x.dummyjson.com"}],"returnPolicy":"60 days return policy","minimumOrderQuantity":2,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"4295398764784","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/vivo-v9/1.webp","https://cdn.dummyjson.com/product-images/smartphones/vivo-v9/2.webp","https://cdn.dummyjson.com/product-images/smartphones/vivo-v9/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/vivo-v9/thumbnail.webp"},{"id":136,"title":"Vivo X21","description":"The Vivo X21 is a premium smartphone with a focus on cutting-edge technology. It features an in-display fingerprint sensor, a high-resolution display, and advanced camera capabilities.","category":"smartphones","price":499.99,"discountPercentage":17.41,"rating":4.26,"stock":7,"tags":["smartphones","vivo"],"brand":"Vivo","sku":"SMA-VIV-VIV-136","weight":10,"dimensions":{"width":22.49,"height":21.62,"depth":27.88},"warrantyInformation":"1 year warranty","shippingInformation":"Ships in 1-2 business days","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Very pleased!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Liam Gonzalez","reviewerEmail":"liam.gonzalez@x.dummyjson.com"},{"rating":4,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Aurora Barnes","reviewerEmail":"aurora.barnes@x.dummyjson.com"},{"rating":2,"comment":"Not as described!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Evelyn Walker","reviewerEmail":"evelyn.walker@x.dummyjson.com"}],"returnPolicy":"60 days return policy","minimumOrderQuantity":3,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"9944308291810","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/vivo-x21/1.webp","https://cdn.dummyjson.com/product-images/smartphones/vivo-x21/2.webp","https://cdn.dummyjson.com/product-images/smartphones/vivo-x21/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/vivo-x21/thumbnail.webp"}],"total":23,"skip":0,"limit":23}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response has products array | 1 | 0 | 0 |
| Search result is not empty | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 4 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Retrieves a paginated list of products with specific fields selected, demonstrating pagination and field filtering capabilities.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/products?limit=10&skip=10&select=title,price`
## Authentication
- **Required**: No
- This is a public endpoint that doesn't require authentication
## Parameters
### Query Parameters
- `limit` (optional) - Number of products to return (default: 30)
- `skip` (optional) - Number of products to skip for pagination (default: 0)
- `select` (optional) - Comma-separated list of fields to include in response
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
{
"products": [
{
"id": 11,
"title": "Product Name",
"price": 549
}
],
"total": 194,
"skip": 10,
"limit": 10
}
```
## Tests Included
- Validates response status code is 200
- Verifies correct number of products returned (limit)
- Checks pagination offset (skip)
- Confirms only selected fields are present in response
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc2OTk2NDc5MX0.3W-gD3oxKuMoEVC_ZILbZsE2n66DWZhtJGckyUS699c |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 1ebf2b7b-c6c0-4c8d-81fe-1eaae3df1fc1 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc2OTk2Mjk5MX0.Lj9nWLp2oNsvJH3yshjHjJE7lhuVp0g8wjs1ru5l0hA; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc3MjU1MzE5MX0.ag444jYthA_pkQrLkpGgh1QKllIc85htgvZvlFTM3Aw |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:12 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 95 |
| x-ratelimit-reset | 1769961199 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"24c-Ixzqnac0wdL7dYxmEYVxYgj0DEw" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=v9fQOoYQc156ooCCKLjciPLgtrjsq28gbxaAdz1K9AblaFtuwjnqOecAZkuZXTbvmUHy8LmQB%2Fy9UosrJVKg7hB%2BVEi9yfeOVDlojJY%3D"}]} |
| Content-Encoding | br |
| CF-RAY | 9c729ecd58282891-AMM |
{"products":[{"id":11,"title":"Annibale Colombo Bed","price":1899.99},{"id":12,"title":"Annibale Colombo Sofa","price":2499.99},{"id":13,"title":"Bedside Table African Cherry","price":299.99},{"id":14,"title":"Knoll Saarinen Executive Conference Chair","price":499.99},{"id":15,"title":"Wooden Bathroom Sink With Mirror","price":799.99},{"id":16,"title":"Apple","price":1.99},{"id":17,"title":"Beef Steak","price":12.99},{"id":18,"title":"Cat Food","price":8.99},{"id":19,"title":"Chicken Meat","price":9.99},{"id":20,"title":"Cooking Oil","price":4.99}],"total":194,"skip":10,"limit":10}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc2OTk2NDc5MX0.3W-gD3oxKuMoEVC_ZILbZsE2n66DWZhtJGckyUS699c |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 854af81e-3d76-452e-9f76-7178204dcc09 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc2OTk2Mjk5MX0.Lj9nWLp2oNsvJH3yshjHjJE7lhuVp0g8wjs1ru5l0hA; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc3MjU1MzE5MX0.ag444jYthA_pkQrLkpGgh1QKllIc85htgvZvlFTM3Aw |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:12 GMT |
| Content-Type | application/json; charset=utf-8 |
| Content-Length | 47 |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 91 |
| x-ratelimit-reset | 1769961193 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"2f-Dm0cDEBeWcz70gE8IkcQnAojjLY" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=MWd4zZS2f47Pmaf1o%2B%2BwBXLNSRwve708B24SZAO8Sme3f%2BYqrC4QdJRBdo9P3M%2BznGWjTMBuZtjWKFgSVBqsVndojsj%2FaTJkvEDQGuU%3D"}]} |
| CF-RAY | 9c729ecee9852891-AMM |
{"message":"Invalid 'skip' - must be a number"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 400 for invalid limit or skip | 1 | 0 | 0 |
| Error message is returned | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Retrieves all products sorted by a specific field in ascending or descending order.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/products?sortBy=title&order=asc`
## Authentication
- **Required**: No
- This is a public endpoint that doesn't require authentication
## Parameters
### Query Parameters
- `sortBy` (optional) - Field name to sort by (e.g., title, price, rating)
- `order` (optional) - Sort order: `asc` (ascending) or `desc` (descending)
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
{
"products": [
{
"id": 1,
"title": "A Product Name",
"price": 549,
...
}
],
"total": 194,
"skip": 0,
"limit": 30
}
```
## Tests Included
- Validates response status code is 200
- Verifies products array is sorted correctly
- Checks sort order matches requested order (asc/desc)
- Confirms all product fields are present
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc2OTk2NDc5MX0.3W-gD3oxKuMoEVC_ZILbZsE2n66DWZhtJGckyUS699c |
| Content-Type | text/plain |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 97cb5c92-2579-43da-ada2-26a521aa79cf |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 61 |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc2OTk2Mjk5MX0.Lj9nWLp2oNsvJH3yshjHjJE7lhuVp0g8wjs1ru5l0hA; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc3MjU1MzE5MX0.ag444jYthA_pkQrLkpGgh1QKllIc85htgvZvlFTM3Aw |
{
"username": "emilys",
"password": "emilyspass"
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:13 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 98 |
| x-ratelimit-reset | 1769961200 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"bb19-WvfGDU1qnETYvaDH9O+xwBDBd50" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=yGXlkGcOvo52Ie81L7RuQR9G0B5mrudlO9sJqjpC7OY9arC8rYXyvkiGQy0PMXU4igkIFfaasLUC7hvBIoN3yGcRcuhuoZzsYUfdOP0%3D"}]} |
| CF-RAY | 9c729ed07b222891-AMM |
{"products":[{"id":167,"title":"300 Touring","description":"The 300 Touring is a stylish and comfortable sedan, known for its luxurious features and smooth performance.","category":"vehicle","price":28999.99,"discountPercentage":3.98,"rating":4.05,"stock":54,"tags":["sedans","vehicles"],"brand":"Chrysler","sku":"VEH-CHR-TOU-167","weight":9,"dimensions":{"width":19.2,"height":26.17,"depth":17.28},"warrantyInformation":"3 year warranty","shippingInformation":"Ships in 2 weeks","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Very pleased!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Luna Russell","reviewerEmail":"luna.russell@x.dummyjson.com"},{"rating":5,"comment":"Great product!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Harper Garcia","reviewerEmail":"harper.garcia@x.dummyjson.com"},{"rating":2,"comment":"Not as described!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Harper Turner","reviewerEmail":"harper.turner@x.dummyjson.com"}],"returnPolicy":"30 days return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"6337799339397","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/vehicle/300-touring/1.webp","https://cdn.dummyjson.com/product-images/vehicle/300-touring/2.webp","https://cdn.dummyjson.com/product-images/vehicle/300-touring/3.webp","https://cdn.dummyjson.com/product-images/vehicle/300-touring/4.webp","https://cdn.dummyjson.com/product-images/vehicle/300-touring/5.webp","https://cdn.dummyjson.com/product-images/vehicle/300-touring/6.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/vehicle/300-touring/thumbnail.webp"},{"id":99,"title":"Amazon Echo Plus","description":"The Amazon Echo Plus is a smart speaker with built-in Alexa voice control. It features premium sound quality and serves as a hub for controlling smart home devices.","category":"mobile-accessories","price":99.99,"discountPercentage":12.07,"rating":4.99,"stock":61,"tags":["electronics","smart speakers"],"brand":"Amazon","sku":"MOB-AMA-AMA-099","weight":5,"dimensions":{"width":12.68,"height":15.24,"depth":27.46},"warrantyInformation":"6 months warranty","shippingInformation":"Ships in 1 week","availabilityStatus":"In Stock","reviews":[{"rating":2,"comment":"Would not recommend!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Chloe Morales","reviewerEmail":"chloe.morales@x.dummyjson.com"},{"rating":3,"comment":"Very disappointed!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Mateo Perez","reviewerEmail":"mateo.perez@x.dummyjson.com"},{"rating":4,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Evelyn Walker","reviewerEmail":"evelyn.walker@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":9,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"2256117192038","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/mobile-accessories/amazon-echo-plus/1.webp","https://cdn.dummyjson.com/product-images/mobile-accessories/amazon-echo-plus/2.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/mobile-accessories/amazon-echo-plus/thumbnail.webp"},{"id":137,"title":"American Football","description":"The American Football is a classic ball used in American football games. It is designed for throwing and catching, making it an essential piece of equipment for the sport.","category":"sports-accessories","price":19.99,"discountPercentage":4.93,"rating":4.91,"stock":53,"tags":["sports equipment","american football"],"sku":"SPO-BRD-AME-137","weight":2,"dimensions":{"width":6.88,"height":5.82,"depth":21.96},"warrantyInformation":"6 months warranty","shippingInformation":"Ships in 1 month","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Awesome product!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Scarlett Bowman","reviewerEmail":"scarlett.bowman@x.dummyjson.com"},{"rating":4,"comment":"Would buy again!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Tristan Scott","reviewerEmail":"tristan.scott@x.dummyjson.com"},{"rating":4,"comment":"Very pleased!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Eleanor Tyler","reviewerEmail":"eleanor.tyler@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"0984311727547","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/sports-accessories/american-football/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/sports-accessories/american-football/thumbnail.webp"},{"id":11,"title":"Annibale Colombo Bed","description":"The Annibale Colombo Bed is a luxurious and elegant bed frame, crafted with high-quality materials for a comfortable and stylish bedroom.","category":"furniture","price":1899.99,"discountPercentage":8.57,"rating":4.77,"stock":88,"tags":["furniture","beds"],"brand":"Annibale Colombo","sku":"FUR-ANN-ANN-011","weight":10,"dimensions":{"width":28.16,"height":25.36,"depth":17.28},"warrantyInformation":"1 year warranty","shippingInformation":"Ships in 1 month","availabilityStatus":"In Stock","reviews":[{"rating":2,"comment":"Would not recommend!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Christopher West","reviewerEmail":"christopher.west@x.dummyjson.com"},{"rating":4,"comment":"Highly impressed!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Vivian Carter","reviewerEmail":"vivian.carter@x.dummyjson.com"},{"rating":1,"comment":"Poor quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Mason Wright","reviewerEmail":"mason.wright@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"3610757456581","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/furniture/annibale-colombo-bed/1.webp","https://cdn.dummyjson.com/product-images/furniture/annibale-colombo-bed/2.webp","https://cdn.dummyjson.com/product-images/furniture/annibale-colombo-bed/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/furniture/annibale-colombo-bed/thumbnail.webp"},{"id":12,"title":"Annibale Colombo Sofa","description":"The Annibale Colombo Sofa is a sophisticated and comfortable seating option, featuring exquisite design and premium upholstery for your living room.","category":"furniture","price":2499.99,"discountPercentage":14.4,"rating":3.92,"stock":60,"tags":["furniture","sofas"],"brand":"Annibale Colombo","sku":"FUR-ANN-ANN-012","weight":6,"dimensions":{"width":12.75,"height":20.55,"depth":19.06},"warrantyInformation":"Lifetime warranty","shippingInformation":"Ships in 1 week","availabilityStatus":"In Stock","reviews":[{"rating":3,"comment":"Very unhappy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Christian Perez","reviewerEmail":"christian.perez@x.dummyjson.com"},{"rating":5,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Lillian Bishop","reviewerEmail":"lillian.bishop@x.dummyjson.com"},{"rating":1,"comment":"Poor quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Lillian Simmons","reviewerEmail":"lillian.simmons@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"1777662847736","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/furniture/annibale-colombo-sofa/1.webp","https://cdn.dummyjson.com/product-images/furniture/annibale-colombo-sofa/2.webp","https://cdn.dummyjson.com/product-images/furniture/annibale-colombo-sofa/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/furniture/annibale-colombo-sofa/thumbnail.webp"},{"id":16,"title":"Apple","description":"Fresh and crisp apples, perfect for snacking or incorporating into various recipes.","category":"groceries","price":1.99,"discountPercentage":12.62,"rating":4.19,"stock":8,"tags":["fruits"],"sku":"GRO-BRD-APP-016","weight":9,"dimensions":{"width":13.66,"height":11.01,"depth":9.73},"warrantyInformation":"3 year warranty","shippingInformation":"Ships in 2 weeks","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Sophia Brown","reviewerEmail":"sophia.brown@x.dummyjson.com"},{"rating":1,"comment":"Very dissatisfied!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Scarlett Bowman","reviewerEmail":"scarlett.bowman@x.dummyjson.com"},{"rating":3,"comment":"Very unhappy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"William Gonzalez","reviewerEmail":"william.gonzalez@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":7,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"7962803553314","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/apple/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/apple/thumbnail.webp"},{"id":101,"title":"Apple AirPods Max Silver","description":"The Apple AirPods Max in Silver are premium over-ear headphones with high-fidelity audio, adaptive EQ, and active noise cancellation. Experience immersive sound in style.","category":"mobile-accessories","price":549.99,"discountPercentage":13.67,"rating":3.47,"stock":59,"tags":["electronics","over-ear headphones"],"brand":"Apple","sku":"MOB-APP-APP-101","weight":2,"dimensions":{"width":24.88,"height":14.9,"depth":27.54},"warrantyInformation":"No warranty","shippingInformation":"Ships in 2 weeks","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Henry Adams","reviewerEmail":"henry.adams@x.dummyjson.com"},{"rating":4,"comment":"Very happy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Elijah Cruz","reviewerEmail":"elijah.cruz@x.dummyjson.com"},{"rating":4,"comment":"Would buy again!","date":"2025-04-30T09:41:02.053Z","reviewerName":"William Lopez","reviewerEmail":"william.lopez@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"4062176053732","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/mobile-accessories/apple-airpods-max-silver/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/mobile-accessories/apple-airpods-max-silver/thumbnail.webp"},{"id":100,"title":"Apple Airpods","description":"The Apple Airpods offer a seamless wireless audio experience. With easy pairing, high-quality sound, and Siri integration, they are perfect for on-the-go listening.","category":"mobile-accessories","price":129.99,"discountPercentage":15.54,"rating":4.15,"stock":67,"tags":["electronics","wireless earphones"],"brand":"Apple","sku":"MOB-APP-APP-100","weight":4,"dimensions":{"width":25.79,"height":18.38,"depth":11.53},"warrantyInformation":"3 year warranty","shippingInformation":"Ships in 3-5 business days","availabilityStatus":"In Stock","reviews":[{"rating":3,"comment":"Would not buy again!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Christopher West","reviewerEmail":"christopher.west@x.dummyjson.com"},{"rating":5,"comment":"Great product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Emma Wilson","reviewerEmail":"emma.wilson@x.dummyjson.com"},{"rating":4,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Xavier Wright","reviewerEmail":"xavier.wright@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":4,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"1104115683955","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/mobile-accessories/apple-airpods/1.webp","https://cdn.dummyjson.com/product-images/mobile-accessories/apple-airpods/2.webp","https://cdn.dummyjson.com/product-images/mobile-accessories/apple-airpods/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/mobile-accessories/apple-airpods/thumbnail.webp"},{"id":102,"title":"Apple Airpower Wireless Charger","description":"The Apple AirPower Wireless Charger provides a convenient way to charge your compatible Apple devices wirelessly. Simply place your devices on the charging mat for effortless charging.","category":"mobile-accessories","price":79.99,"discountPercentage":4.48,"rating":3.68,"stock":1,"tags":["electronics","wireless chargers"],"brand":"Apple","sku":"MOB-APP-APP-102","weight":5,"dimensions":{"width":25.25,"height":25.44,"depth":10.98},"warrantyInformation":"2 year warranty","shippingInformation":"Ships in 1 week","availabilityStatus":"Low Stock","reviews":[{"rating":5,"comment":"Would buy again!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Christian Perez","reviewerEmail":"christian.perez@x.dummyjson.com"},{"rating":4,"comment":"Awesome product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Ruby Andrews","reviewerEmail":"ruby.andrews@x.dummyjson.com"},{"rating":3,"comment":"Not worth the price!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Harper Turner","reviewerEmail":"harper.turner@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":7,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"3323662242939","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/mobile-accessories/apple-airpower-wireless-charger/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/mobile-accessories/apple-airpower-wireless-charger/thumbnail.webp"},{"id":103,"title":"Apple HomePod Mini Cosmic Grey","description":"The Apple HomePod Mini in Cosmic Grey is a compact smart speaker that delivers impressive audio and integrates seamlessly with the Apple ecosystem for a smart home experience.","category":"mobile-accessories","price":99.99,"discountPercentage":18.1,"rating":4.62,"stock":27,"tags":["electronics","smart speakers"],"brand":"Apple","sku":"MOB-APP-APP-103","weight":10,"dimensions":{"width":16.02,"height":29.2,"depth":19.81},"warrantyInformation":"3 months warranty","shippingInformation":"Ships in 1 month","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Great product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Max Russell","reviewerEmail":"max.russell@x.dummyjson.com"},{"rating":3,"comment":"Would not buy again!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Isaac Lawrence","reviewerEmail":"isaac.lawrence@x.dummyjson.com"},{"rating":4,"comment":"Very pleased!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Avery Carter","reviewerEmail":"avery.carter@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":8,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"6135642608024","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/mobile-accessories/apple-homepod-mini-cosmic-grey/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/mobile-accessories/apple-homepod-mini-cosmic-grey/thumbnail.webp"},{"id":78,"title":"Apple MacBook Pro 14 Inch Space Grey","description":"The MacBook Pro 14 Inch in Space Grey is a powerful and sleek laptop, featuring Apple's M1 Pro chip for exceptional performance and a stunning Retina display.","category":"laptops","price":1999.99,"discountPercentage":4.69,"rating":3.65,"stock":24,"tags":["laptops","apple"],"brand":"Apple","sku":"LAP-APP-APP-078","weight":9,"dimensions":{"width":20.03,"height":9.54,"depth":14.82},"warrantyInformation":"3 year warranty","shippingInformation":"Ships in 2 weeks","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Very happy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Hazel Evans","reviewerEmail":"hazel.evans@x.dummyjson.com"},{"rating":5,"comment":"Very happy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Christopher West","reviewerEmail":"christopher.west@x.dummyjson.com"},{"rating":4,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Aubrey Garcia","reviewerEmail":"aubrey.garcia@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"5275211560367","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/laptops/apple-macbook-pro-14-inch-space-grey/1.webp","https://cdn.dummyjson.com/product-images/laptops/apple-macbook-pro-14-inch-space-grey/2.webp","https://cdn.dummyjson.com/product-images/laptops/apple-macbook-pro-14-inch-space-grey/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/laptops/apple-macbook-pro-14-inch-space-grey/thumbnail.webp"},{"id":105,"title":"Apple MagSafe Battery Pack","description":"The Apple MagSafe Battery Pack is a portable and convenient way to add extra battery life to your MagSafe-compatible iPhone. Attach it magnetically for a secure connection.","category":"mobile-accessories","price":99.99,"discountPercentage":17.17,"rating":3.62,"stock":1,"tags":["electronics","power banks"],"brand":"Apple","sku":"MOB-APP-APP-105","weight":6,"dimensions":{"width":15.4,"height":11.89,"depth":19.67},"warrantyInformation":"2 year warranty","shippingInformation":"Ships overnight","availabilityStatus":"Low Stock","reviews":[{"rating":2,"comment":"Would not recommend!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Stella Morris","reviewerEmail":"stella.morris@x.dummyjson.com"},{"rating":2,"comment":"Not as described!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Henry Adams","reviewerEmail":"henry.adams@x.dummyjson.com"},{"rating":5,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Cameron Burke","reviewerEmail":"cameron.burke@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":4,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"5157424897794","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/mobile-accessories/apple-magsafe-battery-pack/1.webp","https://cdn.dummyjson.com/product-images/mobile-accessories/apple-magsafe-battery-pack/2.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/mobile-accessories/apple-magsafe-battery-pack/thumbnail.webp"},{"id":106,"title":"Apple Watch Series 4 Gold","description":"The Apple Watch Series 4 in Gold is a stylish and advanced smartwatch with features like heart rate monitoring, fitness tracking, and a beautiful Retina display.","category":"mobile-accessories","price":349.99,"discountPercentage":12.02,"rating":2.74,"stock":33,"tags":["electronics","smartwatches"],"brand":"Apple","sku":"MOB-APP-APP-106","weight":6,"dimensions":{"width":27.69,"height":28.03,"depth":7.11},"warrantyInformation":"6 months warranty","shippingInformation":"Ships in 1 month","availabilityStatus":"In Stock","reviews":[{"rating":3,"comment":"Very unhappy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Chloe Morales","reviewerEmail":"chloe.morales@x.dummyjson.com"},{"rating":4,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Ava Harrison","reviewerEmail":"ava.harrison@x.dummyjson.com"},{"rating":4,"comment":"Would buy again!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Nicholas Bailey","reviewerEmail":"nicholas.bailey@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":3,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"3921248718888","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/mobile-accessories/apple-watch-series-4-gold/1.webp","https://cdn.dummyjson.com/product-images/mobile-accessories/apple-watch-series-4-gold/2.webp","https://cdn.dummyjson.com/product-images/mobile-accessories/apple-watch-series-4-gold/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/mobile-accessories/apple-watch-series-4-gold/thumbnail.webp"},{"id":104,"title":"Apple iPhone Charger","description":"The Apple iPhone Charger is a high-quality charger designed for fast and efficient charging of your iPhone. Ensure your device stays powered up and ready to go.","category":"mobile-accessories","price":19.99,"discountPercentage":18.52,"rating":4.15,"stock":31,"tags":["electronics","chargers"],"brand":"Apple","sku":"MOB-APP-APP-104","weight":1,"dimensions":{"width":13.63,"height":26.25,"depth":5.95},"warrantyInformation":"1 year warranty","shippingInformation":"Ships in 2 weeks","availabilityStatus":"In Stock","reviews":[{"rating":1,"comment":"Very disappointed!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Sadie Morales","reviewerEmail":"sadie.morales@x.dummyjson.com"},{"rating":5,"comment":"Great product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Lily Torres","reviewerEmail":"lily.torres@x.dummyjson.com"},{"rating":2,"comment":"Waste of money!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Luke Cooper","reviewerEmail":"luke.cooper@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":14,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"0879776541417","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/mobile-accessories/apple-iphone-charger/1.webp","https://cdn.dummyjson.com/product-images/mobile-accessories/apple-iphone-charger/2.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/mobile-accessories/apple-iphone-charger/thumbnail.webp"},{"id":79,"title":"Asus Zenbook Pro Dual Screen Laptop","description":"The Asus Zenbook Pro Dual Screen Laptop is a high-performance device with dual screens, providing productivity and versatility for creative professionals.","category":"laptops","price":1799.99,"discountPercentage":11.14,"rating":3.95,"stock":45,"tags":["laptops"],"brand":"Asus","sku":"LAP-ASU-ASU-079","weight":9,"dimensions":{"width":16.6,"height":11.49,"depth":10.89},"warrantyInformation":"3 year warranty","shippingInformation":"Ships in 1 month","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Very happy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Michael Johnson","reviewerEmail":"michael.johnson@x.dummyjson.com"},{"rating":5,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Zoe Bennett","reviewerEmail":"zoe.bennett@x.dummyjson.com"},{"rating":4,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Mila Hernandez","reviewerEmail":"mila.hernandez@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"7392988535158","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/laptops/asus-zenbook-pro-dual-screen-laptop/1.webp","https://cdn.dummyjson.com/product-images/laptops/asus-zenbook-pro-dual-screen-laptop/2.webp","https://cdn.dummyjson.com/product-images/laptops/asus-zenbook-pro-dual-screen-laptop/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/laptops/asus-zenbook-pro-dual-screen-laptop/thumbnail.webp"},{"id":118,"title":"Attitude Super Leaves Hand Soap","description":"Attitude Super Leaves Hand Soap is a natural and nourishing hand soap enriched with the goodness of super leaves. It cleanses and moisturizes your hands, leaving them feeling fresh and soft.","category":"skin-care","price":8.99,"discountPercentage":18.49,"rating":3.19,"stock":94,"tags":["personal care","hand soap"],"brand":"Attitude","sku":"SKI-ATT-ATT-118","weight":1,"dimensions":{"width":14.05,"height":8.3,"depth":16.62},"warrantyInformation":"6 months warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Liam Garcia","reviewerEmail":"liam.garcia@x.dummyjson.com"},{"rating":4,"comment":"Great product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Victoria McDonald","reviewerEmail":"victoria.mcdonald@x.dummyjson.com"},{"rating":5,"comment":"Very happy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Hannah Robinson","reviewerEmail":"hannah.robinson@x.dummyjson.com"}],"returnPolicy":"60 days return policy","minimumOrderQuantity":41,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"3566048905322","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/skin-care/attitude-super-leaves-hand-soap/1.webp","https://cdn.dummyjson.com/product-images/skin-care/attitude-super-leaves-hand-soap/2.webp","https://cdn.dummyjson.com/product-images/skin-care/attitude-super-leaves-hand-soap/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/skin-care/attitude-super-leaves-hand-soap/thumbnail.webp"},{"id":48,"title":"Bamboo Spatula","description":"The Bamboo Spatula is a versatile kitchen tool made from eco-friendly bamboo. Ideal for flipping, stirring, and serving various dishes.","category":"kitchen-accessories","price":7.99,"discountPercentage":2.84,"rating":3.27,"stock":37,"tags":["kitchen tools","utensils"],"sku":"KIT-BRD-BAM-048","weight":3,"dimensions":{"width":21.32,"height":23.03,"depth":25.94},"warrantyInformation":"1 month warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Awesome product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Lucas Ramirez","reviewerEmail":"lucas.ramirez@x.dummyjson.com"},{"rating":5,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Caleb Perkins","reviewerEmail":"caleb.perkins@x.dummyjson.com"},{"rating":4,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Nolan Gonzalez","reviewerEmail":"nolan.gonzalez@x.dummyjson.com"}],"returnPolicy":"60 days return policy","minimumOrderQuantity":29,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"3988181417733","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/kitchen-accessories/bamboo-spatula/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/kitchen-accessories/bamboo-spatula/thumbnail.webp"},{"id":138,"title":"Baseball Ball","description":"The Baseball Ball is a standard baseball used in baseball games. It features a durable leather cover and is designed for pitching, hitting, and fielding in the game of baseball.","category":"sports-accessories","price":8.99,"discountPercentage":1.71,"rating":2.57,"stock":100,"tags":["sports equipment","baseball"],"sku":"SPO-BRD-BAS-138","weight":5,"dimensions":{"width":14.42,"height":22.65,"depth":15.89},"warrantyInformation":"6 months warranty","shippingInformation":"Ships in 1 week","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Scarlett Wright","reviewerEmail":"scarlett.wright@x.dummyjson.com"},{"rating":4,"comment":"Great value for money!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Carter Baker","reviewerEmail":"carter.baker@x.dummyjson.com"},{"rating":1,"comment":"Poor quality!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Aria Flores","reviewerEmail":"aria.flores@x.dummyjson.com"}],"returnPolicy":"30 days return policy","minimumOrderQuantity":11,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"8981184448425","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/sports-accessories/baseball-ball/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/sports-accessories/baseball-ball/thumbnail.webp"},{"id":139,"title":"Baseball Glove","description":"The Baseball Glove is a protective glove worn by baseball players. It is designed to catch and field the baseball, providing players with comfort and control during the game.","category":"sports-accessories","price":24.99,"discountPercentage":2.9,"rating":3.96,"stock":22,"tags":["sports equipment","baseball"],"sku":"SPO-BRD-BAS-139","weight":1,"dimensions":{"width":23.84,"height":11.12,"depth":5.85},"warrantyInformation":"Lifetime warranty","shippingInformation":"Ships in 2 weeks","availabilityStatus":"In Stock","reviews":[{"rating":1,"comment":"Very unhappy with my purchase!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Hazel Gardner","reviewerEmail":"hazel.gardner@x.dummyjson.com"},{"rating":4,"comment":"Great value for money!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Scarlett Wright","reviewerEmail":"scarlett.wright@x.dummyjson.com"},{"rating":3,"comment":"Would not recommend!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Nathan Reed","reviewerEmail":"nathan.reed@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":8,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"1607433635330","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/sports-accessories/baseball-glove/1.webp","https://cdn.dummyjson.com/product-images/sports-accessories/baseball-glove/2.webp","https://cdn.dummyjson.com/product-images/sports-accessories/baseball-glove/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/sports-accessories/baseball-glove/thumbnail.webp"},{"id":140,"title":"Basketball","description":"The Basketball is a standard ball used in basketball games. It is designed for dribbling, shooting, and passing in the game of basketball, suitable for both indoor and outdoor play.","category":"sports-accessories","price":14.99,"discountPercentage":7.44,"rating":4.66,"stock":75,"tags":["sports equipment","basketball"],"sku":"SPO-BRD-BAS-140","weight":7,"dimensions":{"width":27.86,"height":10.64,"depth":18.75},"warrantyInformation":"1 year warranty","shippingInformation":"Ships in 1 week","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Mia Rodriguez","reviewerEmail":"mia.rodriguez@x.dummyjson.com"},{"rating":2,"comment":"Would not buy again!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Ella Adams","reviewerEmail":"ella.adams@x.dummyjson.com"},{"rating":4,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Aubrey Garcia","reviewerEmail":"aubrey.garcia@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":11,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"3219724919696","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/sports-accessories/basketball/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/sports-accessories/basketball/thumbnail.webp"},{"id":141,"title":"Basketball Rim","description":"The Basketball Rim is a sturdy hoop and net assembly mounted on a basketball backboard. It provides a target for shooting and scoring in the game of basketball.","category":"sports-accessories","price":39.99,"discountPercentage":7.74,"rating":4.6,"stock":43,"tags":["sports equipment","basketball"],"sku":"SPO-BRD-BAS-141","weight":1,"dimensions":{"width":15.83,"height":20.87,"depth":7.27},"warrantyInformation":"3 months warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Mason Wright","reviewerEmail":"mason.wright@x.dummyjson.com"},{"rating":5,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Tristan Scott","reviewerEmail":"tristan.scott@x.dummyjson.com"},{"rating":1,"comment":"Would not buy again!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Max Parker","reviewerEmail":"max.parker@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":9,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"6916173283925","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/sports-accessories/basketball-rim/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/sports-accessories/basketball-rim/thumbnail.webp"},{"id":107,"title":"Beats Flex Wireless Earphones","description":"The Beats Flex Wireless Earphones offer a comfortable and versatile audio experience. With magnetic earbuds and up to 12 hours of battery life, they are ideal for everyday use.","category":"mobile-accessories","price":49.99,"discountPercentage":5.73,"rating":4.24,"stock":50,"tags":["electronics","wireless earphones"],"brand":"Beats","sku":"MOB-BEA-BEA-107","weight":8,"dimensions":{"width":17.86,"height":25.74,"depth":23.09},"warrantyInformation":"1 year warranty","shippingInformation":"Ships in 1-2 business days","availabilityStatus":"In Stock","reviews":[{"rating":2,"comment":"Disappointing product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"William Gonzalez","reviewerEmail":"william.gonzalez@x.dummyjson.com"},{"rating":5,"comment":"Very pleased!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Gabriel Mitchell","reviewerEmail":"gabriel.mitchell@x.dummyjson.com"},{"rating":2,"comment":"Not worth the price!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Gabriel Adams","reviewerEmail":"gabriel.adams@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":17,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"1741271692174","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/mobile-accessories/beats-flex-wireless-earphones/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/mobile-accessories/beats-flex-wireless-earphones/thumbnail.webp"},{"id":13,"title":"Bedside Table African Cherry","description":"The Bedside Table in African Cherry is a stylish and functional addition to your bedroom, providing convenient storage space and a touch of elegance.","category":"furniture","price":299.99,"discountPercentage":19.09,"rating":2.87,"stock":64,"tags":["furniture","bedside tables"],"brand":"Furniture Co.","sku":"FUR-FUR-BED-013","weight":2,"dimensions":{"width":13.47,"height":24.99,"depth":27.35},"warrantyInformation":"5 year warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Aaliyah Hanson","reviewerEmail":"aaliyah.hanson@x.dummyjson.com"},{"rating":4,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Liam Smith","reviewerEmail":"liam.smith@x.dummyjson.com"},{"rating":4,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Avery Barnes","reviewerEmail":"avery.barnes@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":3,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"6441287925979","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/furniture/bedside-table-african-cherry/1.webp","https://cdn.dummyjson.com/product-images/furniture/bedside-table-african-cherry/2.webp","https://cdn.dummyjson.com/product-images/furniture/bedside-table-african-cherry/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/furniture/bedside-table-african-cherry/thumbnail.webp"},{"id":17,"title":"Beef Steak","description":"High-quality beef steak, great for grilling or cooking to your preferred level of doneness.","category":"groceries","price":12.99,"discountPercentage":9.61,"rating":4.47,"stock":86,"tags":["meat"],"sku":"GRO-BRD-BEE-017","weight":10,"dimensions":{"width":18.9,"height":5.77,"depth":18.57},"warrantyInformation":"3 year warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":3,"comment":"Would not recommend!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Eleanor Tyler","reviewerEmail":"eleanor.tyler@x.dummyjson.com"},{"rating":4,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Alexander Jones","reviewerEmail":"alexander.jones@x.dummyjson.com"},{"rating":5,"comment":"Great value for money!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Natalie Harris","reviewerEmail":"natalie.harris@x.dummyjson.com"}],"returnPolicy":"60 days return policy","minimumOrderQuantity":43,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"5640063409695","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/beef-steak/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/beef-steak/thumbnail.webp"},{"id":185,"title":"Black & Brown Slipper","description":"The Black & Brown Slipper is a comfortable and stylish choice for casual wear. Featuring a blend of black and brown colors, it adds a touch of sophistication to your relaxation.","category":"womens-shoes","price":19.99,"discountPercentage":3.33,"rating":2.53,"stock":3,"tags":["footwear","slippers"],"brand":"Comfort Trends","sku":"WOM-COM-BLA-185","weight":5,"dimensions":{"width":21.35,"height":26.21,"depth":17},"warrantyInformation":"Lifetime warranty","shippingInformation":"Ships in 1 month","availabilityStatus":"Low Stock","reviews":[{"rating":5,"comment":"Highly impressed!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Isaac Lawrence","reviewerEmail":"isaac.lawrence@x.dummyjson.com"},{"rating":2,"comment":"Not worth the price!","date":"2025-04-30T09:41:02.054Z","reviewerName":"William Gonzalez","reviewerEmail":"william.gonzalez@x.dummyjson.com"},{"rating":4,"comment":"Very happy with my purchase!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Sophia Jones","reviewerEmail":"sophia.jones@x.dummyjson.com"}],"returnPolicy":"60 days return policy","minimumOrderQuantity":47,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"5732146194724","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/womens-shoes/black-&-brown-slipper/1.webp","https://cdn.dummyjson.com/product-images/womens-shoes/black-&-brown-slipper/2.webp","https://cdn.dummyjson.com/product-images/womens-shoes/black-&-brown-slipper/3.webp","https://cdn.dummyjson.com/product-images/womens-shoes/black-&-brown-slipper/4.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/womens-shoes/black-&-brown-slipper/thumbnail.webp"},{"id":49,"title":"Black Aluminium Cup","description":"The Black Aluminium Cup is a stylish and durable cup suitable for both hot and cold beverages. Its sleek black design adds a modern touch to your drinkware collection.","category":"kitchen-accessories","price":5.99,"discountPercentage":15.65,"rating":4.46,"stock":75,"tags":["drinkware","cups"],"sku":"KIT-BRD-BLA-049","weight":7,"dimensions":{"width":5.88,"height":5.11,"depth":10.03},"warrantyInformation":"1 year warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":3,"comment":"Very disappointed!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Alexander Hernandez","reviewerEmail":"alexander.hernandez@x.dummyjson.com"},{"rating":5,"comment":"Great value for money!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Aurora Rodriguez","reviewerEmail":"aurora.rodriguez@x.dummyjson.com"},{"rating":1,"comment":"Not worth the price!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Benjamin Foster","reviewerEmail":"benjamin.foster@x.dummyjson.com"}],"returnPolicy":"30 days return policy","minimumOrderQuantity":48,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"5606164195748","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/kitchen-accessories/black-aluminium-cup/1.webp","https://cdn.dummyjson.com/product-images/kitchen-accessories/black-aluminium-cup/2.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/kitchen-accessories/black-aluminium-cup/thumbnail.webp"},{"id":154,"title":"Black Sun Glasses","description":"The Black Sun Glasses are a classic and stylish choice, featuring a sleek black frame and tinted lenses. They provide both UV protection and a fashionable look.","category":"sunglasses","price":29.99,"discountPercentage":4.94,"rating":4.41,"stock":60,"tags":["eyewear","sunglasses"],"brand":"Fashion Shades","sku":"SUN-FAS-BLA-154","weight":1,"dimensions":{"width":18.51,"height":15.69,"depth":10.11},"warrantyInformation":"No warranty","shippingInformation":"Ships in 1-2 business days","availabilityStatus":"In Stock","reviews":[{"rating":3,"comment":"Would not recommend!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Jonathan Pierce","reviewerEmail":"jonathan.pierce@x.dummyjson.com"},{"rating":2,"comment":"Disappointing product!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Owen Fisher","reviewerEmail":"owen.fisher@x.dummyjson.com"},{"rating":4,"comment":"Very happy with my purchase!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Samantha Martinez","reviewerEmail":"samantha.martinez@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":17,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"1045032983803","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/sunglasses/black-sun-glasses/1.webp","https://cdn.dummyjson.com/product-images/sunglasses/black-sun-glasses/2.webp","https://cdn.dummyjson.com/product-images/sunglasses/black-sun-glasses/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/sunglasses/black-sun-glasses/thumbnail.webp"},{"id":50,"title":"Black Whisk","description":"The Black Whisk is a kitchen essential for whisking and beating ingredients. Its ergonomic handle and sleek design make it a practical and stylish tool.","category":"kitchen-accessories","price":9.99,"discountPercentage":10.24,"rating":3.9,"stock":73,"tags":["kitchen tools","utensils"],"sku":"KIT-BRD-BLA-050","weight":1,"dimensions":{"width":13.03,"height":5.99,"depth":20.64},"warrantyInformation":"3 months warranty","shippingInformation":"Ships in 1 month","availabilityStatus":"In Stock","reviews":[{"rating":3,"comment":"Not worth the price!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Cameron Perez","reviewerEmail":"cameron.perez@x.dummyjson.com"},{"rating":1,"comment":"Waste of money!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Benjamin Foster","reviewerEmail":"benjamin.foster@x.dummyjson.com"},{"rating":5,"comment":"Very pleased!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Paisley Bell","reviewerEmail":"paisley.bell@x.dummyjson.com"}],"returnPolicy":"30 days return policy","minimumOrderQuantity":40,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"3112495795209","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/kitchen-accessories/black-whisk/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/kitchen-accessories/black-whisk/thumbnail.webp"},{"id":177,"title":"Black Women's Gown","description":"The Black Women's Gown is an elegant and timeless evening gown. With a sleek black design, it's perfect for formal events and special occasions, exuding sophistication and style.","category":"womens-dresses","price":129.99,"discountPercentage":10.48,"rating":3.64,"stock":25,"tags":["clothing","gowns"],"sku":"WOM-BRD-BLA-177","weight":2,"dimensions":{"width":7.86,"height":9.02,"depth":25.82},"warrantyInformation":"Lifetime warranty","shippingInformation":"Ships in 1 week","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Great value for money!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Ethan Fletcher","reviewerEmail":"ethan.fletcher@x.dummyjson.com"},{"rating":3,"comment":"Very dissatisfied!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Julian Newton","reviewerEmail":"julian.newton@x.dummyjson.com"},{"rating":5,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Savannah Gomez","reviewerEmail":"savannah.gomez@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":5,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"0630346013554","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/womens-dresses/black-women's-gown/1.webp","https://cdn.dummyjson.com/product-images/womens-dresses/black-women's-gown/2.webp","https://cdn.dummyjson.com/product-images/womens-dresses/black-women's-gown/3.webp","https://cdn.dummyjson.com/product-images/womens-dresses/black-women's-gown/4.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/womens-dresses/black-women's-gown/thumbnail.webp"},{"id":83,"title":"Blue & Black Check Shirt","description":"The Blue & Black Check Shirt is a stylish and comfortable men's shirt featuring a classic check pattern. Made from high-quality fabric, it's suitable for both casual and semi-formal occasions.","category":"mens-shirts","price":29.99,"discountPercentage":15.35,"rating":3.64,"stock":38,"tags":["clothing","men's shirts"],"brand":"Fashion Trends","sku":"MEN-FAS-BLU-083","weight":4,"dimensions":{"width":27.49,"height":23.73,"depth":28.61},"warrantyInformation":"3 year warranty","shippingInformation":"Ships in 3-5 business days","availabilityStatus":"In Stock","reviews":[{"rating":1,"comment":"Waste of money!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Logan Lee","reviewerEmail":"logan.lee@x.dummyjson.com"},{"rating":5,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Zachary Lee","reviewerEmail":"zachary.lee@x.dummyjson.com"},{"rating":4,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Aurora Rodriguez","reviewerEmail":"aurora.rodriguez@x.dummyjson.com"}],"returnPolicy":"30 days return policy","minimumOrderQuantity":18,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"7148674604957","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/mens-shirts/blue-&-black-check-shirt/1.webp","https://cdn.dummyjson.com/product-images/mens-shirts/blue-&-black-check-shirt/2.webp","https://cdn.dummyjson.com/product-images/mens-shirts/blue-&-black-check-shirt/3.webp","https://cdn.dummyjson.com/product-images/mens-shirts/blue-&-black-check-shirt/4.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/mens-shirts/blue-&-black-check-shirt/thumbnail.webp"}],"total":194,"skip":0,"limit":30}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| undefined | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 3 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Retrieves a complete list of all available product categories in the system.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/products/categories`
## Authentication
- **Required**: No
- This is a public endpoint that doesn't require authentication
## Parameters
- No parameters required
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
[
{
"slug": "beauty",
"name": "Beauty",
"url": "https://dummyjson.com/products/category/beauty"
},
{
"slug": "fragrances",
"name": "Fragrances",
"url": "https://dummyjson.com/products/category/fragrances"
}
]
```
## Tests Included
- Validates response status code is 200
- Verifies response is an array
- Checks each category has required fields (slug, name, url)
- Confirms categories are not empty
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc2OTk2NDc5MX0.3W-gD3oxKuMoEVC_ZILbZsE2n66DWZhtJGckyUS699c |
| Content-Type | text/plain |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | c6cf5e60-a0d2-4dbc-a9e0-5b5b6acf5f90 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 61 |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc2OTk2Mjk5MX0.Lj9nWLp2oNsvJH3yshjHjJE7lhuVp0g8wjs1ru5l0hA; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc3MjU1MzE5MX0.ag444jYthA_pkQrLkpGgh1QKllIc85htgvZvlFTM3Aw |
{
"username": "emilys",
"password": "emilyspass"
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:13 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 99 |
| x-ratelimit-reset | 1769961203 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"9d0-QmRzWSDU7v9xEumlsVypMgUm22A" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=WpNe7VTosfT1EyF2NZzWDlV%2Bu%2BopT5WLA%2BWYifSd5%2FoPQDinl51k4v5srrbBkiwkciuHmu%2Bj%2Bx5dKRQpHHdQP%2BrYKdXurjH8XKOAOKY%3D"}]} |
| CF-RAY | 9c729ed25cef2891-AMM |
[{"slug":"beauty","name":"Beauty","url":"https://dummyjson.com/products/category/beauty"},{"slug":"fragrances","name":"Fragrances","url":"https://dummyjson.com/products/category/fragrances"},{"slug":"furniture","name":"Furniture","url":"https://dummyjson.com/products/category/furniture"},{"slug":"groceries","name":"Groceries","url":"https://dummyjson.com/products/category/groceries"},{"slug":"home-decoration","name":"Home Decoration","url":"https://dummyjson.com/products/category/home-decoration"},{"slug":"kitchen-accessories","name":"Kitchen Accessories","url":"https://dummyjson.com/products/category/kitchen-accessories"},{"slug":"laptops","name":"Laptops","url":"https://dummyjson.com/products/category/laptops"},{"slug":"mens-shirts","name":"Mens Shirts","url":"https://dummyjson.com/products/category/mens-shirts"},{"slug":"mens-shoes","name":"Mens Shoes","url":"https://dummyjson.com/products/category/mens-shoes"},{"slug":"mens-watches","name":"Mens Watches","url":"https://dummyjson.com/products/category/mens-watches"},{"slug":"mobile-accessories","name":"Mobile Accessories","url":"https://dummyjson.com/products/category/mobile-accessories"},{"slug":"motorcycle","name":"Motorcycle","url":"https://dummyjson.com/products/category/motorcycle"},{"slug":"skin-care","name":"Skin Care","url":"https://dummyjson.com/products/category/skin-care"},{"slug":"smartphones","name":"Smartphones","url":"https://dummyjson.com/products/category/smartphones"},{"slug":"sports-accessories","name":"Sports Accessories","url":"https://dummyjson.com/products/category/sports-accessories"},{"slug":"sunglasses","name":"Sunglasses","url":"https://dummyjson.com/products/category/sunglasses"},{"slug":"tablets","name":"Tablets","url":"https://dummyjson.com/products/category/tablets"},{"slug":"tops","name":"Tops","url":"https://dummyjson.com/products/category/tops"},{"slug":"vehicle","name":"Vehicle","url":"https://dummyjson.com/products/category/vehicle"},{"slug":"womens-bags","name":"Womens Bags","url":"https://dummyjson.com/products/category/womens-bags"},{"slug":"womens-dresses","name":"Womens Dresses","url":"https://dummyjson.com/products/category/womens-dresses"},{"slug":"womens-jewellery","name":"Womens Jewellery","url":"https://dummyjson.com/products/category/womens-jewellery"},{"slug":"womens-shoes","name":"Womens Shoes","url":"https://dummyjson.com/products/category/womens-shoes"},{"slug":"womens-watches","name":"Womens Watches","url":"https://dummyjson.com/products/category/womens-watches"}]
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Retrieves a simplified list of product category names/slugs without additional metadata.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/products/category-list`
## Authentication
- **Required**: No
- This is a public endpoint that doesn't require authentication
## Parameters
- No parameters required
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
[
"beauty",
"fragrances",
"furniture",
"groceries",
"home-decoration",
"kitchen-accessories"
]
```
## Tests Included
- Validates response status code is 200
- Verifies response is an array of strings
- Checks array contains category names
- Confirms list is not empty
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc2OTk2NDc5MX0.3W-gD3oxKuMoEVC_ZILbZsE2n66DWZhtJGckyUS699c |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | b7139c97-2128-4fad-be0b-8ee59e6b6625 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc2OTk2Mjk5MX0.Lj9nWLp2oNsvJH3yshjHjJE7lhuVp0g8wjs1ru5l0hA; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc3MjU1MzE5MX0.ag444jYthA_pkQrLkpGgh1QKllIc85htgvZvlFTM3Aw |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:13 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 98 |
| x-ratelimit-reset | 1769961203 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"156-8GSmapwnkZIOOiVZRKE52oLajsg" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=cPJ1DA4pZxuJW0CmZFsEzKq%2FuFBvz%2BXBJWrgLEymFWVlxnyH5cwj4rip8C%2BelxVK%2Fj%2BLPq%2FdJ3JbLDYoLcBaDcNAM2NtnA9SENgTZZc%3D"}]} |
| Content-Encoding | br |
| CF-RAY | 9c729ed3fe922891-AMM |
["beauty","fragrances","furniture","groceries","home-decoration","kitchen-accessories","laptops","mens-shirts","mens-shoes","mens-watches","mobile-accessories","motorcycle","skin-care","smartphones","sports-accessories","sunglasses","tablets","tops","vehicle","womens-bags","womens-dresses","womens-jewellery","womens-shoes","womens-watches"]
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc2OTk2NDc5MX0.3W-gD3oxKuMoEVC_ZILbZsE2n66DWZhtJGckyUS699c |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | e25f443b-4607-423f-bf06-ee6241fb8853 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc2OTk2Mjk5MX0.Lj9nWLp2oNsvJH3yshjHjJE7lhuVp0g8wjs1ru5l0hA; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc3MjU1MzE5MX0.ag444jYthA_pkQrLkpGgh1QKllIc85htgvZvlFTM3Aw |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:14 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 97 |
| x-ratelimit-reset | 1769961200 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"38-zuKX0Tdz5jj2uKVDzDwMn/UTK0c" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=YEqav%2BksXHGF7aROclBmG89jFBVlVosO4y5IXzE2XoGJuoElp2NM8UbTWYMgl2Llx%2Bj4PNhOcZ%2FL308A2V4ez2iO1Y%2BDUeekO2G6%2Ff4%3D"}]} |
| Content-Encoding | br |
| CF-RAY | 9c729ed5a8b42891-AMM |
{"message":"Product with id 'category-array' not found"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 404 | 1 | 0 | 0 |
| Response has error or empty products array | 1 | 0 | 0 |
| Error message exists | 1 | 0 | 0 |
| Total | 3 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Retrieves all products that belong to a specific category.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/products/category/smartphones`
## Authentication
- **Required**: No
- This is a public endpoint that doesn't require authentication
## Parameters
### Path Variables
- `category` (required) - The category slug to filter products by (e.g., smartphones, laptops, beauty)
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
{
"products": [
{
"id": 1,
"title": "Product Name",
"category": "smartphones",
"price": 549,
...
}
],
"total": 5,
"skip": 0,
"limit": 30
}
```
## Tests Included
- Validates response status code is 200
- Verifies all products belong to requested category
- Checks products array structure
- Confirms pagination metadata is present
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc2OTk2NDc5MX0.3W-gD3oxKuMoEVC_ZILbZsE2n66DWZhtJGckyUS699c |
| Content-Type | text/plain |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 009eb9ed-b87a-4ed8-85d2-4b5ded69abfe |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 61 |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc2OTk2Mjk5MX0.Lj9nWLp2oNsvJH3yshjHjJE7lhuVp0g8wjs1ru5l0hA; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc3MjU1MzE5MX0.ag444jYthA_pkQrLkpGgh1QKllIc85htgvZvlFTM3Aw |
{
"username": "emilys",
"password": "emilyspass"
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:14 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 94 |
| x-ratelimit-reset | 1769961199 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"65a9-15t+98sxzVSOrDMD753lm6EmGiw" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=MGhZeUSFmSTcG4hTp4MKL0AxMj3HDTqKu9l7ClLjwbD2xxbo69etUWx49Sm4%2B7DfHJP5gbSK1n7edU%2FGIwR%2BouAlHsH9Kj%2Bs9PvmBus%3D"}]} |
| CF-RAY | 9c729ed76ad12891-AMM |
{"products":[{"id":121,"title":"iPhone 5s","description":"The iPhone 5s is a classic smartphone known for its compact design and advanced features during its release. While it's an older model, it still provides a reliable user experience.","category":"smartphones","price":199.99,"discountPercentage":12.91,"rating":2.83,"stock":25,"tags":["smartphones","apple"],"brand":"Apple","sku":"SMA-APP-IPH-121","weight":2,"dimensions":{"width":5.29,"height":18.38,"depth":17.72},"warrantyInformation":"Lifetime warranty","shippingInformation":"Ships in 1 month","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Jace Smith","reviewerEmail":"jace.smith@x.dummyjson.com"},{"rating":1,"comment":"Not as described!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Logan Torres","reviewerEmail":"logan.torres@x.dummyjson.com"},{"rating":5,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Harper Kelly","reviewerEmail":"harper.kelly@x.dummyjson.com"}],"returnPolicy":"60 days return policy","minimumOrderQuantity":3,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"8814683940853","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/iphone-5s/1.webp","https://cdn.dummyjson.com/product-images/smartphones/iphone-5s/2.webp","https://cdn.dummyjson.com/product-images/smartphones/iphone-5s/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/iphone-5s/thumbnail.webp"},{"id":122,"title":"iPhone 6","description":"The iPhone 6 is a stylish and capable smartphone with a larger display and improved performance. It introduced new features and design elements, making it a popular choice in its time.","category":"smartphones","price":299.99,"discountPercentage":6.69,"rating":3.41,"stock":60,"tags":["smartphones","apple"],"brand":"Apple","sku":"SMA-APP-IPH-122","weight":7,"dimensions":{"width":11,"height":9.1,"depth":9.67},"warrantyInformation":"1 month warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":3,"comment":"Disappointing product!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Stella Morris","reviewerEmail":"stella.morris@x.dummyjson.com"},{"rating":4,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Nolan Gonzalez","reviewerEmail":"nolan.gonzalez@x.dummyjson.com"},{"rating":5,"comment":"Great value for money!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Benjamin Foster","reviewerEmail":"benjamin.foster@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":5,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"9922357685013","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/iphone-6/1.webp","https://cdn.dummyjson.com/product-images/smartphones/iphone-6/2.webp","https://cdn.dummyjson.com/product-images/smartphones/iphone-6/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/iphone-6/thumbnail.webp"},{"id":123,"title":"iPhone 13 Pro","description":"The iPhone 13 Pro is a cutting-edge smartphone with a powerful camera system, high-performance chip, and stunning display. It offers advanced features for users who demand top-notch technology.","category":"smartphones","price":1099.99,"discountPercentage":9.37,"rating":4.12,"stock":56,"tags":["smartphones","apple"],"brand":"Apple","sku":"SMA-APP-IPH-123","weight":8,"dimensions":{"width":12.63,"height":5.28,"depth":14.29},"warrantyInformation":"3 year warranty","shippingInformation":"Ships in 2 weeks","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Would buy again!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Christian Perez","reviewerEmail":"christian.perez@x.dummyjson.com"},{"rating":3,"comment":"Not worth the price!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Liam Gonzalez","reviewerEmail":"liam.gonzalez@x.dummyjson.com"},{"rating":5,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Tristan Scott","reviewerEmail":"tristan.scott@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"4998438802308","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/iphone-13-pro/1.webp","https://cdn.dummyjson.com/product-images/smartphones/iphone-13-pro/2.webp","https://cdn.dummyjson.com/product-images/smartphones/iphone-13-pro/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/iphone-13-pro/thumbnail.webp"},{"id":124,"title":"iPhone X","description":"The iPhone X is a flagship smartphone featuring a bezel-less OLED display, facial recognition technology (Face ID), and impressive performance. It represents a milestone in iPhone design and innovation.","category":"smartphones","price":899.99,"discountPercentage":19.59,"rating":2.51,"stock":37,"tags":["smartphones","apple"],"brand":"Apple","sku":"SMA-APP-IPH-124","weight":1,"dimensions":{"width":21.88,"height":24.19,"depth":14.19},"warrantyInformation":"3 months warranty","shippingInformation":"Ships in 3-5 business days","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Tyler Davis","reviewerEmail":"tyler.davis@x.dummyjson.com"},{"rating":5,"comment":"Great product!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Aria Parker","reviewerEmail":"aria.parker@x.dummyjson.com"},{"rating":2,"comment":"Not as described!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Lily Torres","reviewerEmail":"lily.torres@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":2,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"3034949322264","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/iphone-x/1.webp","https://cdn.dummyjson.com/product-images/smartphones/iphone-x/2.webp","https://cdn.dummyjson.com/product-images/smartphones/iphone-x/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/iphone-x/thumbnail.webp"},{"id":125,"title":"Oppo A57","description":"The Oppo A57 is a mid-range smartphone known for its sleek design and capable features. It offers a balance of performance and affordability, making it a popular choice.","category":"smartphones","price":249.99,"discountPercentage":2.43,"rating":3.94,"stock":19,"tags":["smartphones","oppo"],"brand":"Oppo","sku":"SMA-OPP-OPP-125","weight":5,"dimensions":{"width":7.2,"height":10.74,"depth":23.68},"warrantyInformation":"Lifetime warranty","shippingInformation":"Ships in 3-5 business days","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Scarlett Wright","reviewerEmail":"scarlett.wright@x.dummyjson.com"},{"rating":5,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Jacob Cooper","reviewerEmail":"jacob.cooper@x.dummyjson.com"},{"rating":2,"comment":"Poor quality!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Zoe Nicholson","reviewerEmail":"zoe.nicholson@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":3,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"0651223722522","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/oppo-a57/1.webp","https://cdn.dummyjson.com/product-images/smartphones/oppo-a57/2.webp","https://cdn.dummyjson.com/product-images/smartphones/oppo-a57/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/oppo-a57/thumbnail.webp"},{"id":126,"title":"Oppo F19 Pro Plus","description":"The Oppo F19 Pro Plus is a feature-rich smartphone with a focus on camera capabilities. It boasts advanced photography features and a powerful performance for a premium user experience.","category":"smartphones","price":399.99,"discountPercentage":18.64,"rating":3.51,"stock":78,"tags":["smartphones","oppo"],"brand":"Oppo","sku":"SMA-OPP-OPP-126","weight":6,"dimensions":{"width":6.78,"height":25.17,"depth":8.4},"warrantyInformation":"3 year warranty","shippingInformation":"Ships in 1 week","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Very happy with my purchase!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Emily Johnson","reviewerEmail":"emily.johnson@x.dummyjson.com"},{"rating":5,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Jaxon Barnes","reviewerEmail":"jaxon.barnes@x.dummyjson.com"},{"rating":4,"comment":"Would buy again!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Nova Cooper","reviewerEmail":"nova.cooper@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"8576893968169","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/oppo-f19-pro-plus/1.webp","https://cdn.dummyjson.com/product-images/smartphones/oppo-f19-pro-plus/2.webp","https://cdn.dummyjson.com/product-images/smartphones/oppo-f19-pro-plus/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/oppo-f19-pro-plus/thumbnail.webp"},{"id":127,"title":"Oppo K1","description":"The Oppo K1 series offers a range of smartphones with various features and specifications. Known for their stylish design and reliable performance, the Oppo K1 series caters to diverse user preferences.","category":"smartphones","price":299.99,"discountPercentage":18.29,"rating":4.25,"stock":55,"tags":["smartphones","oppo"],"brand":"Oppo","sku":"SMA-OPP-OPP-127","weight":5,"dimensions":{"width":13.89,"height":10.63,"depth":16.6},"warrantyInformation":"1 month warranty","shippingInformation":"Ships in 1-2 business days","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Very pleased!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Christopher West","reviewerEmail":"christopher.west@x.dummyjson.com"},{"rating":4,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Mia Miller","reviewerEmail":"mia.miller@x.dummyjson.com"},{"rating":2,"comment":"Very dissatisfied!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Ella Adams","reviewerEmail":"ella.adams@x.dummyjson.com"}],"returnPolicy":"30 days return policy","minimumOrderQuantity":5,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"3106827888743","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/oppo-k1/1.webp","https://cdn.dummyjson.com/product-images/smartphones/oppo-k1/2.webp","https://cdn.dummyjson.com/product-images/smartphones/oppo-k1/3.webp","https://cdn.dummyjson.com/product-images/smartphones/oppo-k1/4.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/oppo-k1/thumbnail.webp"},{"id":128,"title":"Realme C35","description":"The Realme C35 is a budget-friendly smartphone with a focus on providing essential features for everyday use. It offers a reliable performance and user-friendly experience.","category":"smartphones","price":149.99,"discountPercentage":15.3,"rating":4.2,"stock":48,"tags":["smartphones","realme"],"brand":"Realme","sku":"SMA-REA-REA-128","weight":2,"dimensions":{"width":25.28,"height":8.14,"depth":29.53},"warrantyInformation":"3 year warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Great product!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Penelope King","reviewerEmail":"penelope.king@x.dummyjson.com"},{"rating":2,"comment":"Very unhappy with my purchase!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Asher Scott","reviewerEmail":"asher.scott@x.dummyjson.com"},{"rating":4,"comment":"Highly impressed!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Henry Adams","reviewerEmail":"henry.adams@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":3,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"7825844344364","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/realme-c35/1.webp","https://cdn.dummyjson.com/product-images/smartphones/realme-c35/2.webp","https://cdn.dummyjson.com/product-images/smartphones/realme-c35/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/realme-c35/thumbnail.webp"},{"id":129,"title":"Realme X","description":"The Realme X is a mid-range smartphone known for its sleek design and impressive display. It offers a good balance of performance and camera capabilities for users seeking a quality device.","category":"smartphones","price":299.99,"discountPercentage":6.95,"rating":3.7,"stock":12,"tags":["smartphones","realme"],"brand":"Realme","sku":"SMA-REA-REA-129","weight":4,"dimensions":{"width":25.59,"height":21.42,"depth":12.75},"warrantyInformation":"1 month warranty","shippingInformation":"Ships in 3-5 business days","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Would buy again!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Hazel Evans","reviewerEmail":"hazel.evans@x.dummyjson.com"},{"rating":5,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Brayden Fleming","reviewerEmail":"brayden.fleming@x.dummyjson.com"},{"rating":5,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Madison Stewart","reviewerEmail":"madison.stewart@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":3,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"4948452391831","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/realme-x/1.webp","https://cdn.dummyjson.com/product-images/smartphones/realme-x/2.webp","https://cdn.dummyjson.com/product-images/smartphones/realme-x/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/realme-x/thumbnail.webp"},{"id":130,"title":"Realme XT","description":"The Realme XT is a feature-rich smartphone with a focus on camera technology. It comes equipped with advanced camera sensors, delivering high-quality photos and videos for photography enthusiasts.","category":"smartphones","price":349.99,"discountPercentage":11.51,"rating":4.58,"stock":80,"tags":["smartphones","realme"],"brand":"Realme","sku":"SMA-REA-REA-130","weight":3,"dimensions":{"width":24.98,"height":26.73,"depth":6.5},"warrantyInformation":"3 year warranty","shippingInformation":"Ships in 1 month","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Emily Brown","reviewerEmail":"emily.brown@x.dummyjson.com"},{"rating":3,"comment":"Not as described!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Ella Cook","reviewerEmail":"ella.cook@x.dummyjson.com"},{"rating":5,"comment":"Would buy again!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Layla Sullivan","reviewerEmail":"layla.sullivan@x.dummyjson.com"}],"returnPolicy":"60 days return policy","minimumOrderQuantity":3,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"6151817227632","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/realme-xt/1.webp","https://cdn.dummyjson.com/product-images/smartphones/realme-xt/2.webp","https://cdn.dummyjson.com/product-images/smartphones/realme-xt/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/realme-xt/thumbnail.webp"},{"id":131,"title":"Samsung Galaxy S7","description":"The Samsung Galaxy S7 is a flagship smartphone known for its sleek design and advanced features. It features a high-resolution display, powerful camera, and robust performance.","category":"smartphones","price":299.99,"discountPercentage":19.55,"rating":3.3,"stock":67,"tags":["smartphones","samsung galaxy"],"brand":"Samsung","sku":"SMA-SAM-SAM-131","weight":10,"dimensions":{"width":13.55,"height":24.24,"depth":5.63},"warrantyInformation":"3 months warranty","shippingInformation":"Ships in 3-5 business days","availabilityStatus":"In Stock","reviews":[{"rating":1,"comment":"Not as described!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Julian James","reviewerEmail":"julian.james@x.dummyjson.com"},{"rating":4,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Lucas Gordon","reviewerEmail":"lucas.gordon@x.dummyjson.com"},{"rating":4,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Ava Taylor","reviewerEmail":"ava.taylor@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"7557912146622","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s7/1.webp","https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s7/2.webp","https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s7/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s7/thumbnail.webp"},{"id":132,"title":"Samsung Galaxy S8","description":"The Samsung Galaxy S8 is a premium smartphone with an Infinity Display, offering a stunning visual experience. It boasts advanced camera capabilities and cutting-edge technology.","category":"smartphones","price":499.99,"discountPercentage":19.45,"rating":4.4,"stock":0,"tags":["smartphones","samsung galaxy"],"brand":"Samsung","sku":"SMA-SAM-SAM-132","weight":6,"dimensions":{"width":23.05,"height":26.88,"depth":15.73},"warrantyInformation":"2 year warranty","shippingInformation":"Ships in 1 week","availabilityStatus":"Out of Stock","reviews":[{"rating":4,"comment":"Highly impressed!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Owen Fisher","reviewerEmail":"owen.fisher@x.dummyjson.com"},{"rating":4,"comment":"Highly impressed!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Clara Berry","reviewerEmail":"clara.berry@x.dummyjson.com"},{"rating":4,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Tyler Davis","reviewerEmail":"tyler.davis@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":4,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"5995499013336","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s8/1.webp","https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s8/2.webp","https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s8/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s8/thumbnail.webp"},{"id":133,"title":"Samsung Galaxy S10","description":"The Samsung Galaxy S10 is a flagship device featuring a dynamic AMOLED display, versatile camera system, and powerful performance. It represents innovation and excellence in smartphone technology.","category":"smartphones","price":699.99,"discountPercentage":5.59,"rating":3.06,"stock":19,"tags":["smartphones","samsung galaxy"],"brand":"Samsung","sku":"SMA-SAM-SAM-133","weight":9,"dimensions":{"width":27.41,"height":15.26,"depth":27.02},"warrantyInformation":"No warranty","shippingInformation":"Ships in 2 weeks","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Tristan Scott","reviewerEmail":"tristan.scott@x.dummyjson.com"},{"rating":5,"comment":"Would buy again!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Christopher West","reviewerEmail":"christopher.west@x.dummyjson.com"},{"rating":2,"comment":"Would not recommend!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Amelia Perez","reviewerEmail":"amelia.perez@x.dummyjson.com"}],"returnPolicy":"30 days return policy","minimumOrderQuantity":2,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"4676898229465","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s10/1.webp","https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s10/2.webp","https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s10/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s10/thumbnail.webp"},{"id":134,"title":"Vivo S1","description":"The Vivo S1 is a stylish and mid-range smartphone offering a blend of design and performance. It features a vibrant display, capable camera system, and reliable functionality.","category":"smartphones","price":249.99,"discountPercentage":10.17,"rating":3.5,"stock":50,"tags":["smartphones","vivo"],"brand":"Vivo","sku":"SMA-VIV-VIV-134","weight":4,"dimensions":{"width":14.06,"height":11.79,"depth":6.78},"warrantyInformation":"6 months warranty","shippingInformation":"Ships in 3-5 business days","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Samantha Martinez","reviewerEmail":"samantha.martinez@x.dummyjson.com"},{"rating":3,"comment":"Very disappointed!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Logan Lee","reviewerEmail":"logan.lee@x.dummyjson.com"},{"rating":4,"comment":"Would buy again!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Sophia Jones","reviewerEmail":"sophia.jones@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"8575699153333","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/vivo-s1/1.webp","https://cdn.dummyjson.com/product-images/smartphones/vivo-s1/2.webp","https://cdn.dummyjson.com/product-images/smartphones/vivo-s1/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/vivo-s1/thumbnail.webp"},{"id":135,"title":"Vivo V9","description":"The Vivo V9 is a smartphone known for its sleek design and emphasis on capturing high-quality selfies. It features a notch display, dual-camera setup, and a modern design.","category":"smartphones","price":299.99,"discountPercentage":17.67,"rating":3.6,"stock":82,"tags":["smartphones","vivo"],"brand":"Vivo","sku":"SMA-VIV-VIV-135","weight":4,"dimensions":{"width":19.85,"height":21.83,"depth":13.04},"warrantyInformation":"2 year warranty","shippingInformation":"Ships in 1 month","availabilityStatus":"In Stock","reviews":[{"rating":2,"comment":"Very unhappy with my purchase!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Logan Lawson","reviewerEmail":"logan.lawson@x.dummyjson.com"},{"rating":5,"comment":"Awesome product!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Layla Young","reviewerEmail":"layla.young@x.dummyjson.com"},{"rating":4,"comment":"Great value for money!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Asher Scott","reviewerEmail":"asher.scott@x.dummyjson.com"}],"returnPolicy":"60 days return policy","minimumOrderQuantity":2,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"4295398764784","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/vivo-v9/1.webp","https://cdn.dummyjson.com/product-images/smartphones/vivo-v9/2.webp","https://cdn.dummyjson.com/product-images/smartphones/vivo-v9/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/vivo-v9/thumbnail.webp"},{"id":136,"title":"Vivo X21","description":"The Vivo X21 is a premium smartphone with a focus on cutting-edge technology. It features an in-display fingerprint sensor, a high-resolution display, and advanced camera capabilities.","category":"smartphones","price":499.99,"discountPercentage":17.41,"rating":4.26,"stock":7,"tags":["smartphones","vivo"],"brand":"Vivo","sku":"SMA-VIV-VIV-136","weight":10,"dimensions":{"width":22.49,"height":21.62,"depth":27.88},"warrantyInformation":"1 year warranty","shippingInformation":"Ships in 1-2 business days","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Very pleased!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Liam Gonzalez","reviewerEmail":"liam.gonzalez@x.dummyjson.com"},{"rating":4,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Aurora Barnes","reviewerEmail":"aurora.barnes@x.dummyjson.com"},{"rating":2,"comment":"Not as described!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Evelyn Walker","reviewerEmail":"evelyn.walker@x.dummyjson.com"}],"returnPolicy":"60 days return policy","minimumOrderQuantity":3,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"9944308291810","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/vivo-x21/1.webp","https://cdn.dummyjson.com/product-images/smartphones/vivo-x21/2.webp","https://cdn.dummyjson.com/product-images/smartphones/vivo-x21/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/vivo-x21/thumbnail.webp"}],"total":16,"skip":0,"limit":16}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Creates a new product in the system with the provided product details.
## Method & Endpoint
- **Method**: `POST`
- **Endpoint**: `https://dummyjson.com/products/add`
## Authentication
- **Required**: No
- This is a public endpoint for demonstration purposes
## Parameters
### Request Body (JSON)
```json
{
"title": "Product Name",
"description": "Product description",
"price": 999,
"discountPercentage": 10,
"rating": 4.5,
"stock": 50,
"brand": "Brand Name",
"category": "Category Name",
"thumbnail": "image_url"
}
```
**Required Fields**:
- `title` - Product name
- `price` - Product price
**Optional Fields**:
- `description`, `discountPercentage`, `rating`, `stock`, `brand`, `category`, `thumbnail`
## Expected Response
- **Status Code**: `201 Created`
- **Response Structure**: Returns the created product with an assigned ID
```json
{
"id": 195,
"title": "Product Name",
"price": 999,
...
}
```
## Tests Included
- Validates response status code is 201
- Verifies product ID is assigned
- Checks all submitted fields are returned
- Confirms product creation timestamp
| Header Name | Header Value |
|---|---|
| Content-Type | application/json |
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc2OTk2NDc5MX0.3W-gD3oxKuMoEVC_ZILbZsE2n66DWZhtJGckyUS699c |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | e14332d5-4abd-43d5-a9c8-b0cd743a0e7a |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 125 |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc2OTk2Mjk5MX0.Lj9nWLp2oNsvJH3yshjHjJE7lhuVp0g8wjs1ru5l0hA; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc3MjU1MzE5MX0.ag444jYthA_pkQrLkpGgh1QKllIc85htgvZvlFTM3Aw |
{
"title": "BMW Pencil",
"price": 100,
"description": "High quality pencil",
"category": "stationery"
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:14 GMT |
| Content-Type | application/json; charset=utf-8 |
| Content-Length | 103 |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 96 |
| x-ratelimit-reset | 1769961200 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"67-0ZPry6/zvpQF03BJfwztu0kNXO4" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=9SEUrbvVUwiPMOykBYVP99uw5%2F7ViX7UpKaBX9I1lT5eRyEPk5Zd3J6y1Ee0gJZvOHWymB%2BFNq52KW62la4m3zHLDKBU8nuM2Ek1Ocs%3D"}]} |
| CF-RAY | 9c729ed91c932891-AMM |
{"id":195,"title":"BMW Pencil","price":100,"description":"High quality pencil","category":"stationery"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 201 | 1 | 0 | 0 |
| Product created successfully | 1 | 0 | 0 |
| All required fields exist | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 4 | 0 | 0 |
| Test Name | Assertion Error |
|---|
| Header Name | Header Value |
|---|---|
| Content-Type | application/json |
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc2OTk2NDc5MX0.3W-gD3oxKuMoEVC_ZILbZsE2n66DWZhtJGckyUS699c |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 61a97a3f-c2c0-4c36-ba65-910d42b7fca6 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 25 |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc2OTk2Mjk5MX0.Lj9nWLp2oNsvJH3yshjHjJE7lhuVp0g8wjs1ru5l0hA; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc3MjU1MzE5MX0.ag444jYthA_pkQrLkpGgh1QKllIc85htgvZvlFTM3Aw |
{
"price": "abd"
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:14 GMT |
| Content-Type | application/json; charset=utf-8 |
| Content-Length | 24 |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 97 |
| x-ratelimit-reset | 1769961203 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"18-L9Dj49E4IFbHCZOI/ckAL4ETueo" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=bAydfZEk7mPbRLSgghaGtSKU2ajFHOMYuzIx5EkOLwFIKjLo4gLNoR%2FYIhbkdFp3bAWUnxfp0Lwj7b3EEHL0v%2BGGRXYdWLICE0UXNAk%3D"}]} |
| CF-RAY | 9c729edaae2e2891-AMM |
{"id":195,"price":"abd"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| API should not accept non-numeric price | 1 | 0 | 0 |
| Total | 1 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Creates a new product using randomly generated test data to validate the product creation endpoint with dynamic values.
## Method & Endpoint
- **Method**: `POST`
- **Endpoint**: `https://dummyjson.com/products/add`
## Authentication
- **Required**: No
- This is a public endpoint for demonstration purposes
## Parameters
### Request Body (JSON)
Uses dynamically generated random data:
```json
{
"title": "Refined Concrete Shoes",
"description": "Small Bike",
"price": 910.30,
"discountPercentage": 302,
"rating": 4.5,
"stock": 945,
"brand": "Lynch - Wehner",
"category": "{{$randomProductCategory}}",
"thumbnail": "http://placeimg.com/640/480"
}
```
## Expected Response
- **Status Code**: `201 Created`
- **Response Structure**: Returns the created product with random data and assigned ID
```json
{
"id": 195,
"title": "Random Product Name",
"price": 123,
...
}
```
## Tests Included
- Validates response status code is 201
- Verifies product ID is assigned
- Checks random data is properly saved
- Confirms API handles dynamic test data correctly
| Header Name | Header Value |
|---|---|
| Content-Type | application/json |
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc2OTk2NDc5MX0.3W-gD3oxKuMoEVC_ZILbZsE2n66DWZhtJGckyUS699c |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 88def861-98e2-4e09-b07f-6a722bc00ef6 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 76 |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc2OTk2Mjk5MX0.Lj9nWLp2oNsvJH3yshjHjJE7lhuVp0g8wjs1ru5l0hA; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc3MjU1MzE5MX0.ag444jYthA_pkQrLkpGgh1QKllIc85htgvZvlFTM3Aw |
{
"title":"",
"description": "Missing title",
"price": 300
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:15 GMT |
| Content-Type | application/json; charset=utf-8 |
| Content-Length | 63 |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 96 |
| x-ratelimit-reset | 1769961203 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"3f-tX/vYVRt+L7mqvk3tobOjwwoGsM" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=e93bxtdV6fiZdcf7kenIAf1zgjpZNDpFBtB3AFEQX%2Ffwg4ElxQ%2Bpd51UcuwvvEVsKTQk7vUuUlJj%2FMS8FJe4nzngD1zjX3o7hO%2Bpamk%3D"}]} |
| CF-RAY | 9c729edc5fd22891-AMM |
{"id":195,"title":"","price":300,"description":"Missing title"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is as expected | 0 | 1 | 0 |
| Total | 0 | 1 | 0 |
| Test Name | Assertion Error |
|---|---|
| Status code is as expected | |
## Purpose
Updates an existing product's information by its unique identifier.
## Method & Endpoint
- **Method**: `PUT`
- **Endpoint**: `https://dummyjson.com/products/20`
## Authentication
- **Required**: No
- This is a public endpoint for demonstration purposes
## Parameters
### Path Variables
- `productId` (required) - The unique identifier of the product to update
### Request Body (JSON)
```json
{
"title": "Updated Product Name",
"price": 1299,
"description": "Updated description",
"stock": 75
}
```
**Note**: Only include fields you want to update. Unspecified fields remain unchanged.
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**: Returns the updated product with all fields
```json
{
"id": 1,
"title": "Updated Product Name",
"price": 1299,
"description": "Updated description",
"stock": 75,
...
}
```
## Tests Included
- Validates response status code is 200
- Verifies updated fields match request
- Checks product ID remains unchanged
- Confirms other fields are preserved
| Header Name | Header Value |
|---|---|
| Content-Type | application/json |
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc2OTk2NDc5MX0.3W-gD3oxKuMoEVC_ZILbZsE2n66DWZhtJGckyUS699c |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | b9feaeae-0328-413c-a72f-fce700f116e5 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 37 |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc2OTk2Mjk5MX0.Lj9nWLp2oNsvJH3yshjHjJE7lhuVp0g8wjs1ru5l0hA; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc3MjU1MzE5MX0.ag444jYthA_pkQrLkpGgh1QKllIc85htgvZvlFTM3Aw |
{
"title": "iPhone Galaxy +1"
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:15 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 95 |
| x-ratelimit-reset | 1769961203 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"192-iTF/37dqMdcAfA3B6GoiupdWK8A" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=45ouZO2Jk9jaKNVQqlf0GkX3c1tJYML1qhG3HYExc0LLN1fnXN%2BPCnzAbGbF0sHR0%2FVGPi56nhPqIpVKP35CSvjGxp1IT0xRSyxR7YA%3D"}]} |
| Content-Encoding | br |
| CF-RAY | 9c729ede09ec2891-AMM |
{"id":20,"title":"iPhone Galaxy +1","price":4.99,"discountPercentage":9.33,"stock":10,"rating":4.8,"images":["https://cdn.dummyjson.com/product-images/groceries/cooking-oil/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/cooking-oil/thumbnail.webp","description":"Versatile cooking oil suitable for frying, sautéing, and various culinary applications.","category":"groceries"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
| Header Name | Header Value |
|---|---|
| Content-Type | application/json |
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc2OTk2NDc5MX0.3W-gD3oxKuMoEVC_ZILbZsE2n66DWZhtJGckyUS699c |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 4f4fb13f-2b8d-4ab4-b3fa-f77fac1fdf46 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 37 |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc2OTk2Mjk5MX0.Lj9nWLp2oNsvJH3yshjHjJE7lhuVp0g8wjs1ru5l0hA; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc3MjU1MzE5MX0.ag444jYthA_pkQrLkpGgh1QKllIc85htgvZvlFTM3Aw |
{
"title": "iPhone Galaxy +1"
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:15 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 94 |
| x-ratelimit-reset | 1769961203 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"2d-0WtrwaXzWoposFPTOmioRGKyXA8" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=ZUZnphzcgwdUxYR21lvZwakgWJLcFo8AHwv9ScgdWOeHE5n8DzvHkzl2QIneWoAD5I9d3EaD2d7RYwud%2Bc4QNHE0V1VbLbYiQ4dv%2FBQ%3D"}]} |
| Content-Encoding | br |
| CF-RAY | 9c729edfab912891-AMM |
{"message":"Product with id '-20' not found"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 404 | 1 | 0 | 0 |
| Response contains not found | 1 | 0 | 0 |
| Error message exists | 1 | 0 | 0 |
| Total | 3 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Deletes a specific product from the system by its unique identifier.
## Method & Endpoint
- **Method**: `DELETE`
- **Endpoint**: `https://dummyjson.com/products/20`
## Authentication
- **Required**: No
- This is a public endpoint for demonstration purposes
## Parameters
### Path Variables
- `productId` (required) - The unique identifier of the product to delete
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**: Returns the deleted product information with deletion confirmation
```json
{
"id": 1,
"title": "Product Name",
"price": 549,
"isDeleted": true,
"deletedOn": "2024-01-01T12:00:00.000Z",
...
}
```
## Tests Included
- Validates response status code is 200
- Verifies `isDeleted` flag is true
- Checks deletion timestamp is present
- Confirms deleted product details are returned
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc2OTk2NDc5MX0.3W-gD3oxKuMoEVC_ZILbZsE2n66DWZhtJGckyUS699c |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 830eea48-5da3-4664-b9ac-878e9890403f |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc2OTk2Mjk5MX0.Lj9nWLp2oNsvJH3yshjHjJE7lhuVp0g8wjs1ru5l0hA; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc3MjU1MzE5MX0.ag444jYthA_pkQrLkpGgh1QKllIc85htgvZvlFTM3Aw |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:15 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 93 |
| x-ratelimit-reset | 1769961203 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"594-HOXDPa1gh/IN0YwvHUVddcMFGdw" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=L1l%2FSWQvLPHyi6BFyftGpfUQ3CmX4%2B5DECz6YwANrO8abn0174rPsi9vMu0fhE6ahamnYKKB2%2F4f7HkaoLT9U%2B4gsM1iHItfWyF%2F%2B20%3D"}]} |
| CF-RAY | 9c729ee1ade22891-AMM |
{"id":20,"title":"Cooking Oil","description":"Versatile cooking oil suitable for frying, sautéing, and various culinary applications.","category":"groceries","price":4.99,"discountPercentage":9.33,"rating":4.8,"stock":10,"tags":["cooking essentials"],"sku":"GRO-BRD-COO-020","weight":5,"dimensions":{"width":19.95,"height":27.54,"depth":24.86},"warrantyInformation":"Lifetime warranty","shippingInformation":"Ships in 1-2 business days","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Very happy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Victoria McDonald","reviewerEmail":"victoria.mcdonald@x.dummyjson.com"},{"rating":2,"comment":"Would not recommend!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Hazel Evans","reviewerEmail":"hazel.evans@x.dummyjson.com"},{"rating":5,"comment":"Would buy again!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Zoe Bennett","reviewerEmail":"zoe.bennett@x.dummyjson.com"}],"returnPolicy":"30 days return policy","minimumOrderQuantity":46,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"4874727824518","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/cooking-oil/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/cooking-oil/thumbnail.webp","isDeleted":true,"deletedOn":"2026-02-01T15:53:15.863Z"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| product Deleted successfully | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 3 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Retrieves a paginated list of all shopping carts in the system.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/carts`
## Authentication
- **Required**: No
- This is a public endpoint that doesn't require authentication
## Parameters
- No required parameters
- Optional query parameters: `limit`, `skip` for pagination
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
{
"carts": [
{
"id": 1,
"products": [
{
"id": 1,
"title": "Product Name",
"price": 549,
"quantity": 2,
"total": 1098
}
],
"total": 1098,
"discountedTotal": 985,
"userId": 1,
"totalProducts": 1,
"totalQuantity": 2
}
],
"total": 20,
"skip": 0,
"limit": 30
}
```
## Tests Included
- Validates response status code is 200
- Verifies carts array structure
- Checks pagination metadata
- Confirms cart totals and product details
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc2OTk2NDc5MX0.3W-gD3oxKuMoEVC_ZILbZsE2n66DWZhtJGckyUS699c |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 0b19cf59-79b1-4fb5-8956-282c5382ce65 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc2OTk2Mjk5MX0.Lj9nWLp2oNsvJH3yshjHjJE7lhuVp0g8wjs1ru5l0hA; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc3MjU1MzE5MX0.ag444jYthA_pkQrLkpGgh1QKllIc85htgvZvlFTM3Aw |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:16 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 91 |
| x-ratelimit-reset | 1769961197 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"7d39-+rQ7kyHBCLIn9tjTeKVf4oegWkQ" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=a2AI%2FoQG1EvXL8g%2FLfuywQSSNWReTne6ByKFsXAqhfytXqqG%2F%2FsZGt2U%2FhXWNDIqwkDxzQ4hYbhgrBEQZjjiwbcZFuaTeDjozrYQZBY%3D"}]} |
| CF-RAY | 9c729ee34f8f2891-AMM |
{"carts":[{"id":1,"products":[{"id":168,"title":"Charger SXT RWD","price":32999.99,"quantity":3,"total":98999.97,"discountPercentage":13.39,"discountedTotal":85743.87,"thumbnail":"https://cdn.dummyjson.com/products/images/vehicle/Charger%20SXT%20RWD/thumbnail.png"},{"id":78,"title":"Apple MacBook Pro 14 Inch Space Grey","price":1999.99,"quantity":2,"total":3999.98,"discountPercentage":18.52,"discountedTotal":3259.18,"thumbnail":"https://cdn.dummyjson.com/products/images/laptops/Apple%20MacBook%20Pro%2014%20Inch%20Space%20Grey/thumbnail.png"},{"id":183,"title":"Green Oval Earring","price":24.99,"quantity":5,"total":124.94999999999999,"discountPercentage":6.28,"discountedTotal":117.1,"thumbnail":"https://cdn.dummyjson.com/products/images/womens-jewellery/Green%20Oval%20Earring/thumbnail.png"},{"id":100,"title":"Apple Airpods","price":129.99,"quantity":5,"total":649.95,"discountPercentage":12.84,"discountedTotal":566.5,"thumbnail":"https://cdn.dummyjson.com/products/images/mobile-accessories/Apple%20Airpods/thumbnail.png"}],"total":103774.85,"discountedTotal":89686.65,"userId":33,"totalProducts":4,"totalQuantity":15},{"id":2,"products":[{"id":144,"title":"Cricket Helmet","price":44.99,"quantity":4,"total":179.96,"discountPercentage":11.47,"discountedTotal":159.32,"thumbnail":"https://cdn.dummyjson.com/products/images/sports-accessories/Cricket%20Helmet/thumbnail.png"},{"id":124,"title":"iPhone X","price":899.99,"quantity":4,"total":3599.96,"discountPercentage":8.03,"discountedTotal":3310.88,"thumbnail":"https://cdn.dummyjson.com/products/images/smartphones/iPhone%20X/thumbnail.png"},{"id":148,"title":"Golf Ball","price":9.99,"quantity":4,"total":39.96,"discountPercentage":11.24,"discountedTotal":35.47,"thumbnail":"https://cdn.dummyjson.com/products/images/sports-accessories/Golf%20Ball/thumbnail.png"},{"id":122,"title":"iPhone 6","price":299.99,"quantity":3,"total":899.97,"discountPercentage":19.64,"discountedTotal":723.22,"thumbnail":"https://cdn.dummyjson.com/products/images/smartphones/iPhone%206/thumbnail.png"},{"id":110,"title":"Selfie Lamp with iPhone","price":14.99,"quantity":5,"total":74.95,"discountPercentage":19.87,"discountedTotal":60.06,"thumbnail":"https://cdn.dummyjson.com/products/images/mobile-accessories/Selfie%20Lamp%20with%20iPhone/thumbnail.png"}],"total":4794.8,"discountedTotal":4288.95,"userId":142,"totalProducts":5,"totalQuantity":20},{"id":3,"products":[{"id":98,"title":"Rolex Submariner Watch","price":13999.99,"quantity":1,"total":13999.99,"discountPercentage":16.35,"discountedTotal":11710.99,"thumbnail":"https://cdn.dummyjson.com/products/images/mens-watches/Rolex%20Submariner%20Watch/thumbnail.png"},{"id":125,"title":"Oppo A57","price":249.99,"quantity":5,"total":1249.95,"discountPercentage":16.54,"discountedTotal":1043.21,"thumbnail":"https://cdn.dummyjson.com/products/images/smartphones/Oppo%20A57/thumbnail.png"},{"id":55,"title":"Egg Slicer","price":6.99,"quantity":2,"total":13.98,"discountPercentage":16.04,"discountedTotal":11.74,"thumbnail":"https://cdn.dummyjson.com/products/images/kitchen-accessories/Egg%20Slicer/thumbnail.png"},{"id":62,"title":"Ice Cube Tray","price":5.99,"quantity":2,"total":11.98,"discountPercentage":8.25,"discountedTotal":10.99,"thumbnail":"https://cdn.dummyjson.com/products/images/kitchen-accessories/Ice%20Cube%20Tray/thumbnail.png"},{"id":132,"title":"Samsung Galaxy S8","price":499.99,"quantity":3,"total":1499.97,"discountPercentage":8.84,"discountedTotal":1367.37,"thumbnail":"https://cdn.dummyjson.com/products/images/smartphones/Samsung%20Galaxy%20S8/thumbnail.png"}],"total":16775.87,"discountedTotal":14144.3,"userId":108,"totalProducts":5,"totalQuantity":13},{"id":4,"products":[{"id":187,"title":"Golden Shoes Woman","price":49.99,"quantity":5,"total":249.95000000000002,"discountPercentage":1.64,"discountedTotal":245.85,"thumbnail":"https://cdn.dummyjson.com/products/images/womens-shoes/Golden%20Shoes%20Woman/thumbnail.png"},{"id":40,"title":"Strawberry","price":3.99,"quantity":5,"total":19.950000000000003,"discountPercentage":4.6,"discountedTotal":19.03,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Strawberry/thumbnail.png"},{"id":156,"title":"Green and Black Glasses","price":34.99,"quantity":5,"total":174.95000000000002,"discountPercentage":4.34,"discountedTotal":167.36,"thumbnail":"https://cdn.dummyjson.com/products/images/sunglasses/Green%20and%20Black%20Glasses/thumbnail.png"},{"id":62,"title":"Ice Cube Tray","price":5.99,"quantity":2,"total":11.98,"discountPercentage":8.25,"discountedTotal":10.99,"thumbnail":"https://cdn.dummyjson.com/products/images/kitchen-accessories/Ice%20Cube%20Tray/thumbnail.png"}],"total":456.83,"discountedTotal":443.23,"userId":87,"totalProducts":4,"totalQuantity":17},{"id":5,"products":[{"id":108,"title":"iPhone 12 Silicone Case with MagSafe Plum","price":29.99,"quantity":2,"total":59.98,"discountPercentage":14.68,"discountedTotal":51.17,"thumbnail":"https://cdn.dummyjson.com/products/images/mobile-accessories/iPhone%2012%20Silicone%20Case%20with%20MagSafe%20Plum/thumbnail.png"},{"id":138,"title":"Baseball Ball","price":8.99,"quantity":5,"total":44.95,"discountPercentage":18.49,"discountedTotal":36.64,"thumbnail":"https://cdn.dummyjson.com/products/images/sports-accessories/Baseball%20Ball/thumbnail.png"},{"id":157,"title":"Party Glasses","price":19.99,"quantity":2,"total":39.98,"discountPercentage":19.17,"discountedTotal":32.32,"thumbnail":"https://cdn.dummyjson.com/products/images/sunglasses/Party%20Glasses/thumbnail.png"},{"id":8,"title":"Dior J'adore","price":89.99,"quantity":3,"total":269.96999999999997,"discountPercentage":10.79,"discountedTotal":240.84,"thumbnail":"https://cdn.dummyjson.com/products/images/fragrances/Dior%20J'adore/thumbnail.png"},{"id":80,"title":"Huawei Matebook X Pro","price":1399.99,"quantity":5,"total":6999.95,"discountPercentage":9.99,"discountedTotal":6300.65,"thumbnail":"https://cdn.dummyjson.com/products/images/laptops/Huawei%20Matebook%20X%20Pro/thumbnail.png"},{"id":28,"title":"Ice Cream","price":5.49,"quantity":3,"total":16.47,"discountPercentage":10,"discountedTotal":14.82,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Ice%20Cream/thumbnail.png"}],"total":7431.3,"discountedTotal":6676.44,"userId":134,"totalProducts":6,"totalQuantity":20},{"id":6,"products":[{"id":172,"title":"Blue Women's Handbag","price":49.99,"quantity":5,"total":249.95000000000002,"discountPercentage":8.08,"discountedTotal":229.75,"thumbnail":"https://cdn.dummyjson.com/products/images/womens-bags/Blue%20Women's%20Handbag/thumbnail.png"},{"id":112,"title":"TV Studio Camera Pedestal","price":499.99,"quantity":3,"total":1499.97,"discountPercentage":15.69,"discountedTotal":1264.62,"thumbnail":"https://cdn.dummyjson.com/products/images/mobile-accessories/TV%20Studio%20Camera%20Pedestal/thumbnail.png"},{"id":97,"title":"Rolex Datejust","price":10999.99,"quantity":3,"total":32999.97,"discountPercentage":10.58,"discountedTotal":29508.57,"thumbnail":"https://cdn.dummyjson.com/products/images/mens-watches/Rolex%20Datejust/thumbnail.png"},{"id":128,"title":"Realme C35","price":149.99,"quantity":3,"total":449.97,"discountPercentage":3.97,"discountedTotal":432.11,"thumbnail":"https://cdn.dummyjson.com/products/images/smartphones/Realme%20C35/thumbnail.png"}],"total":35199.86,"discountedTotal":31435.05,"userId":150,"totalProducts":4,"totalQuantity":14},{"id":7,"products":[{"id":167,"title":"300 Touring","price":28999.99,"quantity":5,"total":144999.95,"discountPercentage":11.78,"discountedTotal":127918.96,"thumbnail":"https://cdn.dummyjson.com/products/images/vehicle/300%20Touring/thumbnail.png"},{"id":111,"title":"Selfie Stick Monopod","price":12.99,"quantity":4,"total":51.96,"discountPercentage":10.98,"discountedTotal":46.25,"thumbnail":"https://cdn.dummyjson.com/products/images/mobile-accessories/Selfie%20Stick%20Monopod/thumbnail.png"},{"id":129,"title":"Realme X","price":299.99,"quantity":2,"total":599.98,"discountPercentage":10.13,"discountedTotal":539.2,"thumbnail":"https://cdn.dummyjson.com/products/images/smartphones/Realme%20X/thumbnail.png"}],"total":145651.89,"discountedTotal":128504.41,"userId":86,"totalProducts":3,"totalQuantity":11},{"id":8,"products":[{"id":117,"title":"Sportbike Motorcycle","price":7499.99,"quantity":2,"total":14999.98,"discountPercentage":19.83,"discountedTotal":12025.48,"thumbnail":"https://cdn.dummyjson.com/products/images/motorcycle/Sportbike%20Motorcycle/thumbnail.png"},{"id":18,"title":"Cat Food","price":8.99,"quantity":4,"total":35.96,"discountPercentage":1.15,"discountedTotal":35.55,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Cat%20Food/thumbnail.png"},{"id":105,"title":"Apple MagSafe Battery Pack","price":99.99,"quantity":5,"total":499.95,"discountPercentage":7.14,"discountedTotal":464.25,"thumbnail":"https://cdn.dummyjson.com/products/images/mobile-accessories/Apple%20MagSafe%20Battery%20Pack/thumbnail.png"},{"id":6,"title":"Calvin Klein CK One","price":49.99,"quantity":3,"total":149.97,"discountPercentage":5.67,"discountedTotal":141.47,"thumbnail":"https://cdn.dummyjson.com/products/images/fragrances/Calvin%20Klein%20CK%20One/thumbnail.png"}],"total":15685.86,"discountedTotal":12666.75,"userId":23,"totalProducts":4,"totalQuantity":14},{"id":9,"products":[{"id":178,"title":"Corset Leather With Skirt","price":89.99,"quantity":2,"total":179.98,"discountPercentage":12.59,"discountedTotal":157.32,"thumbnail":"https://cdn.dummyjson.com/products/images/womens-dresses/Corset%20Leather%20With%20Skirt/thumbnail.png"},{"id":191,"title":"Rolex Cellini Moonphase","price":15999.99,"quantity":4,"total":63999.96,"discountPercentage":3.26,"discountedTotal":61913.56,"thumbnail":"https://cdn.dummyjson.com/products/images/womens-watches/Rolex%20Cellini%20Moonphase/thumbnail.png"},{"id":47,"title":"Table Lamp","price":49.99,"quantity":2,"total":99.98,"discountPercentage":13.74,"discountedTotal":86.24,"thumbnail":"https://cdn.dummyjson.com/products/images/home-decoration/Table%20Lamp/thumbnail.png"},{"id":134,"title":"Vivo S1","price":249.99,"quantity":5,"total":1249.95,"discountPercentage":5.64,"discountedTotal":1179.45,"thumbnail":"https://cdn.dummyjson.com/products/images/smartphones/Vivo%20S1/thumbnail.png"}],"total":65529.87,"discountedTotal":63336.57,"userId":194,"totalProducts":4,"totalQuantity":13},{"id":10,"products":[{"id":190,"title":"IWC Ingenieur Automatic Steel","price":4999.99,"quantity":5,"total":24999.949999999997,"discountPercentage":12.34,"discountedTotal":21914.96,"thumbnail":"https://cdn.dummyjson.com/products/images/womens-watches/IWC%20Ingenieur%20Automatic%20Steel/thumbnail.png"},{"id":94,"title":"Longines Master Collection","price":1499.99,"quantity":3,"total":4499.97,"discountPercentage":16.44,"discountedTotal":3760.17,"thumbnail":"https://cdn.dummyjson.com/products/images/mens-watches/Longines%20Master%20Collection/thumbnail.png"}],"total":29499.92,"discountedTotal":25675.13,"userId":160,"totalProducts":2,"totalQuantity":8},{"id":11,"products":[{"id":88,"title":"Nike Air Jordan 1 Red And Black","price":149.99,"quantity":1,"total":149.99,"discountPercentage":17.18,"discountedTotal":124.22,"thumbnail":"https://cdn.dummyjson.com/products/images/mens-shoes/Nike%20Air%20Jordan%201%20Red%20And%20Black/thumbnail.png"},{"id":32,"title":"Milk","price":3.49,"quantity":3,"total":10.47,"discountPercentage":9.36,"discountedTotal":9.49,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Milk/thumbnail.png"},{"id":74,"title":"Spoon","price":4.99,"quantity":3,"total":14.97,"discountPercentage":2.78,"discountedTotal":14.55,"thumbnail":"https://cdn.dummyjson.com/products/images/kitchen-accessories/Spoon/thumbnail.png"},{"id":145,"title":"Cricket Wicket","price":29.99,"quantity":3,"total":89.97,"discountPercentage":17.87,"discountedTotal":73.89,"thumbnail":"https://cdn.dummyjson.com/products/images/sports-accessories/Cricket%20Wicket/thumbnail.png"},{"id":26,"title":"Green Chili Pepper","price":0.99,"quantity":3,"total":2.9699999999999998,"discountPercentage":18.69,"discountedTotal":2.41,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Green%20Chili%20Pepper/thumbnail.png"},{"id":127,"title":"Oppo K1","price":299.99,"quantity":1,"total":299.99,"discountPercentage":15.93,"discountedTotal":252.2,"thumbnail":"https://cdn.dummyjson.com/products/images/smartphones/Oppo%20K1/thumbnail.png"}],"total":568.36,"discountedTotal":476.76,"userId":172,"totalProducts":6,"totalQuantity":14},{"id":12,"products":[{"id":63,"title":"Kitchen Sieve","price":7.99,"quantity":4,"total":31.96,"discountPercentage":18.8,"discountedTotal":25.95,"thumbnail":"https://cdn.dummyjson.com/products/images/kitchen-accessories/Kitchen%20Sieve/thumbnail.png"},{"id":181,"title":"Marni Red & Black Suit","price":179.99,"quantity":5,"total":899.95,"discountPercentage":14.21,"discountedTotal":772.07,"thumbnail":"https://cdn.dummyjson.com/products/images/womens-dresses/Marni%20Red%20&%20Black%20Suit/thumbnail.png"}],"total":931.91,"discountedTotal":798.02,"userId":202,"totalProducts":2,"totalQuantity":9},{"id":13,"products":[{"id":85,"title":"Man Plaid Shirt","price":34.99,"quantity":2,"total":69.98,"discountPercentage":3.7,"discountedTotal":67.39,"thumbnail":"https://cdn.dummyjson.com/products/images/mens-shirts/Man%20Plaid%20Shirt/thumbnail.png"},{"id":109,"title":"Monopod","price":19.99,"quantity":3,"total":59.97,"discountPercentage":12.95,"discountedTotal":52.2,"thumbnail":"https://cdn.dummyjson.com/products/images/mobile-accessories/Monopod/thumbnail.png"},{"id":160,"title":"Samsung Galaxy Tab S8 Plus Grey","price":599.99,"quantity":1,"total":599.99,"discountPercentage":4.31,"discountedTotal":574.13,"thumbnail":"https://cdn.dummyjson.com/products/images/tablets/Samsung%20Galaxy%20Tab%20S8%20Plus%20Grey/thumbnail.png"},{"id":163,"title":"Girl Summer Dress","price":19.99,"quantity":3,"total":59.97,"discountPercentage":9.44,"discountedTotal":54.31,"thumbnail":"https://cdn.dummyjson.com/products/images/tops/Girl%20Summer%20Dress/thumbnail.png"},{"id":31,"title":"Lemon","price":0.79,"quantity":4,"total":3.16,"discountPercentage":12.32,"discountedTotal":2.77,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Lemon/thumbnail.png"}],"total":793.07,"discountedTotal":750.8,"userId":41,"totalProducts":5,"totalQuantity":13},{"id":14,"products":[{"id":92,"title":"Sports Sneakers Off White Red","price":109.99,"quantity":3,"total":329.96999999999997,"discountPercentage":17.73,"discountedTotal":271.47,"thumbnail":"https://cdn.dummyjson.com/products/images/mens-shoes/Sports%20Sneakers%20Off%20White%20Red/thumbnail.png"},{"id":54,"title":"Citrus Squeezer Yellow","price":8.99,"quantity":5,"total":44.95,"discountPercentage":6.3,"discountedTotal":42.12,"thumbnail":"https://cdn.dummyjson.com/products/images/kitchen-accessories/Citrus%20Squeezer%20Yellow/thumbnail.png"},{"id":76,"title":"Wooden Rolling Pin","price":11.99,"quantity":1,"total":11.99,"discountPercentage":8.45,"discountedTotal":10.98,"thumbnail":"https://cdn.dummyjson.com/products/images/kitchen-accessories/Wooden%20Rolling%20Pin/thumbnail.png"},{"id":44,"title":"Family Tree Photo Frame","price":29.99,"quantity":5,"total":149.95,"discountPercentage":10.68,"discountedTotal":133.94,"thumbnail":"https://cdn.dummyjson.com/products/images/home-decoration/Family%20Tree%20Photo%20Frame/thumbnail.png"},{"id":67,"title":"Mug Tree Stand","price":15.99,"quantity":3,"total":47.97,"discountPercentage":16.65,"discountedTotal":39.98,"thumbnail":"https://cdn.dummyjson.com/products/images/kitchen-accessories/Mug%20Tree%20Stand/thumbnail.png"},{"id":16,"title":"Apple","price":1.99,"quantity":1,"total":1.99,"discountPercentage":11.74,"discountedTotal":1.76,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Apple/thumbnail.png"}],"total":586.82,"discountedTotal":500.25,"userId":94,"totalProducts":6,"totalQuantity":18},{"id":15,"products":[{"id":11,"title":"Annibale Colombo Bed","price":1899.99,"quantity":5,"total":9499.95,"discountPercentage":8.09,"discountedTotal":8731.4,"thumbnail":"https://cdn.dummyjson.com/products/images/furniture/Annibale%20Colombo%20Bed/thumbnail.png"},{"id":133,"title":"Samsung Galaxy S10","price":699.99,"quantity":3,"total":2099.9700000000003,"discountPercentage":1.12,"discountedTotal":2076.45,"thumbnail":"https://cdn.dummyjson.com/products/images/smartphones/Samsung%20Galaxy%20S10/thumbnail.png"},{"id":111,"title":"Selfie Stick Monopod","price":12.99,"quantity":3,"total":38.97,"discountPercentage":10.98,"discountedTotal":34.69,"thumbnail":"https://cdn.dummyjson.com/products/images/mobile-accessories/Selfie%20Stick%20Monopod/thumbnail.png"},{"id":162,"title":"Blue Frock","price":29.99,"quantity":3,"total":89.97,"discountPercentage":3.86,"discountedTotal":86.5,"thumbnail":"https://cdn.dummyjson.com/products/images/tops/Blue%20Frock/thumbnail.png"},{"id":30,"title":"Kiwi","price":2.49,"quantity":5,"total":12.450000000000001,"discountPercentage":4.34,"discountedTotal":11.91,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Kiwi/thumbnail.png"}],"total":11741.31,"discountedTotal":10940.95,"userId":11,"totalProducts":5,"totalQuantity":19},{"id":16,"products":[{"id":19,"title":"Chicken Meat","price":9.99,"quantity":2,"total":19.98,"discountPercentage":13.37,"discountedTotal":17.31,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Chicken%20Meat/thumbnail.png"},{"id":152,"title":"Tennis Racket","price":49.99,"quantity":3,"total":149.97,"discountPercentage":9.13,"discountedTotal":136.28,"thumbnail":"https://cdn.dummyjson.com/products/images/sports-accessories/Tennis%20Racket/thumbnail.png"},{"id":35,"title":"Potatoes","price":2.29,"quantity":1,"total":2.29,"discountPercentage":1.69,"discountedTotal":2.25,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Potatoes/thumbnail.png"}],"total":172.24,"discountedTotal":155.84,"userId":200,"totalProducts":3,"totalQuantity":6},{"id":17,"products":[{"id":1,"title":"Essence Mascara Lash Princess","price":9.99,"quantity":2,"total":19.98,"discountPercentage":0.63,"discountedTotal":19.85,"thumbnail":"https://cdn.dummyjson.com/products/images/beauty/Essence%20Mascara%20Lash%20Princess/thumbnail.png"},{"id":60,"title":"Grater Black","price":10.99,"quantity":3,"total":32.97,"discountPercentage":16.62,"discountedTotal":27.49,"thumbnail":"https://cdn.dummyjson.com/products/images/kitchen-accessories/Grater%20Black/thumbnail.png"},{"id":74,"title":"Spoon","price":4.99,"quantity":4,"total":19.96,"discountPercentage":2.78,"discountedTotal":19.41,"thumbnail":"https://cdn.dummyjson.com/products/images/kitchen-accessories/Spoon/thumbnail.png"},{"id":44,"title":"Family Tree Photo Frame","price":29.99,"quantity":4,"total":119.96,"discountPercentage":10.68,"discountedTotal":107.15,"thumbnail":"https://cdn.dummyjson.com/products/images/home-decoration/Family%20Tree%20Photo%20Frame/thumbnail.png"}],"total":192.87,"discountedTotal":173.9,"userId":141,"totalProducts":4,"totalQuantity":13},{"id":18,"products":[{"id":127,"title":"Oppo K1","price":299.99,"quantity":4,"total":1199.96,"discountPercentage":15.93,"discountedTotal":1008.81,"thumbnail":"https://cdn.dummyjson.com/products/images/smartphones/Oppo%20K1/thumbnail.png"},{"id":24,"title":"Fish Steak","price":14.99,"quantity":3,"total":44.97,"discountPercentage":7.66,"discountedTotal":41.53,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Fish%20Steak/thumbnail.png"},{"id":20,"title":"Cooking Oil","price":4.99,"quantity":5,"total":24.950000000000003,"discountPercentage":12.62,"discountedTotal":21.8,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Cooking%20Oil/thumbnail.png"},{"id":154,"title":"Black Sun Glasses","price":29.99,"quantity":3,"total":89.97,"discountPercentage":1.11,"discountedTotal":88.97,"thumbnail":"https://cdn.dummyjson.com/products/images/sunglasses/Black%20Sun%20Glasses/thumbnail.png"},{"id":44,"title":"Family Tree Photo Frame","price":29.99,"quantity":2,"total":59.98,"discountPercentage":10.68,"discountedTotal":53.57,"thumbnail":"https://cdn.dummyjson.com/products/images/home-decoration/Family%20Tree%20Photo%20Frame/thumbnail.png"},{"id":5,"title":"Red Nail Polish","price":8.99,"quantity":5,"total":44.95,"discountPercentage":3.76,"discountedTotal":43.26,"thumbnail":"https://cdn.dummyjson.com/products/images/beauty/Red%20Nail%20Polish/thumbnail.png"}],"total":1464.78,"discountedTotal":1257.94,"userId":189,"totalProducts":6,"totalQuantity":22},{"id":19,"products":[{"id":187,"title":"Golden Shoes Woman","price":49.99,"quantity":3,"total":149.97,"discountPercentage":1.64,"discountedTotal":147.51,"thumbnail":"https://cdn.dummyjson.com/products/images/womens-shoes/Golden%20Shoes%20Woman/thumbnail.png"},{"id":153,"title":"Volleyball","price":11.99,"quantity":5,"total":59.95,"discountPercentage":16.05,"discountedTotal":50.33,"thumbnail":"https://cdn.dummyjson.com/products/images/sports-accessories/Volleyball/thumbnail.png"},{"id":34,"title":"Nescafe Coffee","price":7.99,"quantity":3,"total":23.97,"discountPercentage":8.31,"discountedTotal":21.98,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Nescafe%20Coffee/thumbnail.png"},{"id":130,"title":"Realme XT","price":349.99,"quantity":2,"total":699.98,"discountPercentage":17.86,"discountedTotal":574.96,"thumbnail":"https://cdn.dummyjson.com/products/images/smartphones/Realme%20XT/thumbnail.png"}],"total":933.87,"discountedTotal":794.78,"userId":59,"totalProducts":4,"totalQuantity":13},{"id":20,"products":[{"id":107,"title":"Beats Flex Wireless Earphones","price":49.99,"quantity":1,"total":49.99,"discountPercentage":8.79,"discountedTotal":45.6,"thumbnail":"https://cdn.dummyjson.com/products/images/mobile-accessories/Beats%20Flex%20Wireless%20Earphones/thumbnail.png"},{"id":193,"title":"Watch Gold for Women","price":799.99,"quantity":3,"total":2399.9700000000003,"discountPercentage":19.53,"discountedTotal":1931.26,"thumbnail":"https://cdn.dummyjson.com/products/images/womens-watches/Watch%20Gold%20for%20Women/thumbnail.png"},{"id":100,"title":"Apple Airpods","price":129.99,"quantity":3,"total":389.97,"discountPercentage":12.84,"discountedTotal":339.9,"thumbnail":"https://cdn.dummyjson.com/products/images/mobile-accessories/Apple%20Airpods/thumbnail.png"},{"id":90,"title":"Puma Future Rider Trainers","price":89.99,"quantity":5,"total":449.95,"discountPercentage":14.7,"discountedTotal":383.81,"thumbnail":"https://cdn.dummyjson.com/products/images/mens-shoes/Puma%20Future%20Rider%20Trainers/thumbnail.png"},{"id":118,"title":"Attitude Super Leaves Hand Soap","price":8.99,"quantity":5,"total":44.95,"discountPercentage":7.23,"discountedTotal":41.7,"thumbnail":"https://cdn.dummyjson.com/products/images/skin-care/Attitude%20Super%20Leaves%20Hand%20Soap/thumbnail.png"},{"id":166,"title":"Tartan Dress","price":39.99,"quantity":5,"total":199.95000000000002,"discountPercentage":2.82,"discountedTotal":194.31,"thumbnail":"https://cdn.dummyjson.com/products/images/tops/Tartan%20Dress/thumbnail.png"}],"total":3534.78,"discountedTotal":2936.58,"userId":90,"totalProducts":6,"totalQuantity":22},{"id":21,"products":[{"id":77,"title":"Yellow Peeler","price":5.99,"quantity":2,"total":11.98,"discountPercentage":13.16,"discountedTotal":10.4,"thumbnail":"https://cdn.dummyjson.com/products/images/kitchen-accessories/Yellow%20Peeler/thumbnail.png"},{"id":91,"title":"Sports Sneakers Off White & Red","price":119.99,"quantity":2,"total":239.98,"discountPercentage":1.96,"discountedTotal":235.28,"thumbnail":"https://cdn.dummyjson.com/products/images/mens-shoes/Sports%20Sneakers%20Off%20White%20&%20Red/thumbnail.png"}],"total":251.96,"discountedTotal":245.68,"userId":42,"totalProducts":2,"totalQuantity":4},{"id":22,"products":[{"id":73,"title":"Spice Rack","price":19.99,"quantity":5,"total":99.94999999999999,"discountPercentage":8.74,"discountedTotal":91.21,"thumbnail":"https://cdn.dummyjson.com/products/images/kitchen-accessories/Spice%20Rack/thumbnail.png"},{"id":2,"title":"Eyeshadow Palette with Mirror","price":19.99,"quantity":2,"total":39.98,"discountPercentage":0.7,"discountedTotal":39.7,"thumbnail":"https://cdn.dummyjson.com/products/images/beauty/Eyeshadow%20Palette%20with%20Mirror/thumbnail.png"},{"id":69,"title":"Plate","price":3.99,"quantity":2,"total":7.98,"discountPercentage":16,"discountedTotal":6.7,"thumbnail":"https://cdn.dummyjson.com/products/images/kitchen-accessories/Plate/thumbnail.png"},{"id":155,"title":"Classic Sun Glasses","price":24.99,"quantity":3,"total":74.97,"discountPercentage":9.27,"discountedTotal":68.02,"thumbnail":"https://cdn.dummyjson.com/products/images/sunglasses/Classic%20Sun%20Glasses/thumbnail.png"}],"total":222.88,"discountedTotal":205.63,"userId":140,"totalProducts":4,"totalQuantity":12},{"id":23,"products":[{"id":82,"title":"New DELL XPS 13 9300 Laptop","price":1499.99,"quantity":5,"total":7499.95,"discountPercentage":3.9,"discountedTotal":7207.45,"thumbnail":"https://cdn.dummyjson.com/products/images/laptops/New%20DELL%20XPS%2013%209300%20Laptop/thumbnail.png"},{"id":172,"title":"Blue Women's Handbag","price":49.99,"quantity":4,"total":199.96,"discountPercentage":8.08,"discountedTotal":183.8,"thumbnail":"https://cdn.dummyjson.com/products/images/womens-bags/Blue%20Women's%20Handbag/thumbnail.png"},{"id":41,"title":"Tissue Paper Box","price":2.49,"quantity":2,"total":4.98,"discountPercentage":2.74,"discountedTotal":4.84,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Tissue%20Paper%20Box/thumbnail.png"},{"id":37,"title":"Red Onions","price":1.99,"quantity":4,"total":7.96,"discountPercentage":8.95,"discountedTotal":7.25,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Red%20Onions/thumbnail.png"},{"id":138,"title":"Baseball Ball","price":8.99,"quantity":5,"total":44.95,"discountPercentage":18.49,"discountedTotal":36.64,"thumbnail":"https://cdn.dummyjson.com/products/images/sports-accessories/Baseball%20Ball/thumbnail.png"}],"total":7757.8,"discountedTotal":7439.98,"userId":147,"totalProducts":5,"totalQuantity":20},{"id":24,"products":[{"id":108,"title":"iPhone 12 Silicone Case with MagSafe Plum","price":29.99,"quantity":5,"total":149.95,"discountPercentage":14.68,"discountedTotal":127.94,"thumbnail":"https://cdn.dummyjson.com/products/images/mobile-accessories/iPhone%2012%20Silicone%20Case%20with%20MagSafe%20Plum/thumbnail.png"},{"id":134,"title":"Vivo S1","price":249.99,"quantity":4,"total":999.96,"discountPercentage":5.64,"discountedTotal":943.56,"thumbnail":"https://cdn.dummyjson.com/products/images/smartphones/Vivo%20S1/thumbnail.png"},{"id":174,"title":"Prada Women Bag","price":599.99,"quantity":1,"total":599.99,"discountPercentage":12.86,"discountedTotal":522.83,"thumbnail":"https://cdn.dummyjson.com/products/images/womens-bags/Prada%20Women%20Bag/thumbnail.png"}],"total":1749.9,"discountedTotal":1594.33,"userId":6,"totalProducts":3,"totalQuantity":10},{"id":25,"products":[{"id":4,"title":"Red Lipstick","price":12.99,"quantity":1,"total":12.99,"discountPercentage":14.69,"discountedTotal":11.08,"thumbnail":"https://cdn.dummyjson.com/products/images/beauty/Red%20Lipstick/thumbnail.png"},{"id":126,"title":"Oppo F19 Pro+","price":399.99,"quantity":1,"total":399.99,"discountPercentage":14.38,"discountedTotal":342.47,"thumbnail":"https://cdn.dummyjson.com/products/images/smartphones/Oppo%20F19%20Pro+/thumbnail.png"}],"total":412.98,"discountedTotal":353.55,"userId":118,"totalProducts":2,"totalQuantity":2},{"id":26,"products":[{"id":37,"title":"Red Onions","price":1.99,"quantity":5,"total":9.95,"discountPercentage":8.95,"discountedTotal":9.06,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Red%20Onions/thumbnail.png"},{"id":128,"title":"Realme C35","price":149.99,"quantity":3,"total":449.97,"discountPercentage":3.97,"discountedTotal":432.11,"thumbnail":"https://cdn.dummyjson.com/products/images/smartphones/Realme%20C35/thumbnail.png"}],"total":459.92,"discountedTotal":441.17,"userId":66,"totalProducts":2,"totalQuantity":8},{"id":27,"products":[{"id":33,"title":"Mulberry","price":4.99,"quantity":1,"total":4.99,"discountPercentage":2.75,"discountedTotal":4.85,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Mulberry/thumbnail.png"},{"id":110,"title":"Selfie Lamp with iPhone","price":14.99,"quantity":2,"total":29.98,"discountPercentage":19.87,"discountedTotal":24.02,"thumbnail":"https://cdn.dummyjson.com/products/images/mobile-accessories/Selfie%20Lamp%20with%20iPhone/thumbnail.png"},{"id":16,"title":"Apple","price":1.99,"quantity":3,"total":5.97,"discountPercentage":11.74,"discountedTotal":5.27,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Apple/thumbnail.png"},{"id":83,"title":"Blue & Black Check Shirt","price":29.99,"quantity":5,"total":149.95,"discountPercentage":8.76,"discountedTotal":136.81,"thumbnail":"https://cdn.dummyjson.com/products/images/mens-shirts/Blue%20&%20Black%20Check%20Shirt/thumbnail.png"}],"total":190.89,"discountedTotal":170.95,"userId":75,"totalProducts":4,"totalQuantity":11},{"id":28,"products":[{"id":1,"title":"Essence Mascara Lash Princess","price":9.99,"quantity":5,"total":49.95,"discountPercentage":0.63,"discountedTotal":49.64,"thumbnail":"https://cdn.dummyjson.com/products/images/beauty/Essence%20Mascara%20Lash%20Princess/thumbnail.png"},{"id":141,"title":"Basketball Rim","price":39.99,"quantity":4,"total":159.96,"discountPercentage":14.7,"discountedTotal":136.45,"thumbnail":"https://cdn.dummyjson.com/products/images/sports-accessories/Basketball%20Rim/thumbnail.png"}],"total":209.91,"discountedTotal":186.09,"userId":147,"totalProducts":2,"totalQuantity":9},{"id":29,"products":[{"id":80,"title":"Huawei Matebook X Pro","price":1399.99,"quantity":2,"total":2799.98,"discountPercentage":9.99,"discountedTotal":2520.26,"thumbnail":"https://cdn.dummyjson.com/products/images/laptops/Huawei%20Matebook%20X%20Pro/thumbnail.png"},{"id":107,"title":"Beats Flex Wireless Earphones","price":49.99,"quantity":4,"total":199.96,"discountPercentage":8.79,"discountedTotal":182.38,"thumbnail":"https://cdn.dummyjson.com/products/images/mobile-accessories/Beats%20Flex%20Wireless%20Earphones/thumbnail.png"},{"id":25,"title":"Green Bell Pepper","price":1.29,"quantity":2,"total":2.58,"discountPercentage":1.2,"discountedTotal":2.55,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Green%20Bell%20Pepper/thumbnail.png"},{"id":121,"title":"iPhone 5s","price":199.99,"quantity":4,"total":799.96,"discountPercentage":8.38,"discountedTotal":732.92,"thumbnail":"https://cdn.dummyjson.com/products/images/smartphones/iPhone%205s/thumbnail.png"},{"id":153,"title":"Volleyball","price":11.99,"quantity":5,"total":59.95,"discountPercentage":16.05,"discountedTotal":50.33,"thumbnail":"https://cdn.dummyjson.com/products/images/sports-accessories/Volleyball/thumbnail.png"}],"total":3862.43,"discountedTotal":3488.44,"userId":170,"totalProducts":5,"totalQuantity":17},{"id":30,"products":[{"id":181,"title":"Marni Red & Black Suit","price":179.99,"quantity":1,"total":179.99,"discountPercentage":14.21,"discountedTotal":154.41,"thumbnail":"https://cdn.dummyjson.com/products/images/womens-dresses/Marni%20Red%20&%20Black%20Suit/thumbnail.png"},{"id":171,"title":"Pacifica Touring","price":31999.99,"quantity":4,"total":127999.96,"discountPercentage":7.4,"discountedTotal":118527.96,"thumbnail":"https://cdn.dummyjson.com/products/images/vehicle/Pacifica%20Touring/thumbnail.png"},{"id":35,"title":"Potatoes","price":2.29,"quantity":4,"total":9.16,"discountPercentage":1.69,"discountedTotal":9.01,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Potatoes/thumbnail.png"},{"id":46,"title":"Plant Pot","price":14.99,"quantity":4,"total":59.96,"discountPercentage":17.65,"discountedTotal":49.38,"thumbnail":"https://cdn.dummyjson.com/products/images/home-decoration/Plant%20Pot/thumbnail.png"}],"total":128249.07,"discountedTotal":118740.76,"userId":177,"totalProducts":4,"totalQuantity":13}],"total":50,"skip":0,"limit":30}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Required fields exist in first cart | 1 | 0 | 0 |
| Total | 3 | 0 | 0 |
| Test Name | Assertion Error |
|---|
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc2OTk2NDc5MX0.3W-gD3oxKuMoEVC_ZILbZsE2n66DWZhtJGckyUS699c |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 2c109a67-e210-45bb-b3af-fec3f6115775 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc2OTk2Mjk5MX0.Lj9nWLp2oNsvJH3yshjHjJE7lhuVp0g8wjs1ru5l0hA; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc3MjU1MzE5MX0.ag444jYthA_pkQrLkpGgh1QKllIc85htgvZvlFTM3Aw |
| Content-Length | 0 |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:16 GMT |
| Content-Type | text/html; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 92 |
| x-ratelimit-reset | 1769961203 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| content-security-policy | default-src 'none' |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=2aHjncmWeabVZ40VhI2AzJ%2BsJnP%2Ba81ineb5%2BiEu5J3BMBntZWCbH6mX2TO3Wj8esD5q6xl9edTjAAOp7hKtsgRjSmDNAI%2BOhFxVyhQ%3D"}]} |
| Content-Encoding | br |
| CF-RAY | 9c729ee4e97d2891-AMM |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Error</title>
</head>
<body>
<pre>Cannot POST /carts</pre>
</body>
</html>
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Wrong method correctly returns 404 or 405 | 1 | 0 | 0 |
| Total | 1 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Retrieves detailed information about a specific shopping cart by its unique identifier.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/carts/11`
## Authentication
- **Required**: No
- This is a public endpoint that doesn't require authentication
## Parameters
### Path Variables
- `cartId` (required) - The unique identifier of the cart to retrieve
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
{
"id": 1,
"products": [
{
"id": 1,
"title": "Product Name",
"price": 549,
"quantity": 2,
"total": 1098,
"discountPercentage": 12.96,
"discountedTotal": 956
}
],
"total": 1098,
"discountedTotal": 956,
"userId": 1,
"totalProducts": 1,
"totalQuantity": 2
}
```
## Tests Included
- Validates response status code is 200
- Verifies cart ID matches request
- Checks products array structure
- Confirms total calculations are correct
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc2OTk2NDc5MX0.3W-gD3oxKuMoEVC_ZILbZsE2n66DWZhtJGckyUS699c |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | ea78ee05-c24c-4e67-a203-8ecfb7454678 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc2OTk2Mjk5MX0.Lj9nWLp2oNsvJH3yshjHjJE7lhuVp0g8wjs1ru5l0hA; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc3MjU1MzE5MX0.ag444jYthA_pkQrLkpGgh1QKllIc85htgvZvlFTM3Aw |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:16 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 91 |
| x-ratelimit-reset | 1769961203 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"5d1-dNDH7AwlX9F89w+TElZ1Vd5INzs" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=xvX5oIxbWFjuTj%2Ftp1vlyHX%2BsWMbb7SAdxF5q2JrXZj2Q1iRSLfD0qRDrxr%2BX%2FL4HzhTt9fcuD%2F04pO1Tvzrx%2FyeN%2B50rCggJlav3N4%3D"}]} |
| CF-RAY | 9c729ee69b692891-AMM |
{"id":11,"products":[{"id":88,"title":"Nike Air Jordan 1 Red And Black","price":149.99,"quantity":1,"total":149.99,"discountPercentage":17.18,"discountedTotal":124.22,"thumbnail":"https://cdn.dummyjson.com/products/images/mens-shoes/Nike%20Air%20Jordan%201%20Red%20And%20Black/thumbnail.png"},{"id":32,"title":"Milk","price":3.49,"quantity":3,"total":10.47,"discountPercentage":9.36,"discountedTotal":9.49,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Milk/thumbnail.png"},{"id":74,"title":"Spoon","price":4.99,"quantity":3,"total":14.97,"discountPercentage":2.78,"discountedTotal":14.55,"thumbnail":"https://cdn.dummyjson.com/products/images/kitchen-accessories/Spoon/thumbnail.png"},{"id":145,"title":"Cricket Wicket","price":29.99,"quantity":3,"total":89.97,"discountPercentage":17.87,"discountedTotal":73.89,"thumbnail":"https://cdn.dummyjson.com/products/images/sports-accessories/Cricket%20Wicket/thumbnail.png"},{"id":26,"title":"Green Chili Pepper","price":0.99,"quantity":3,"total":2.9699999999999998,"discountPercentage":18.69,"discountedTotal":2.41,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Green%20Chili%20Pepper/thumbnail.png"},{"id":127,"title":"Oppo K1","price":299.99,"quantity":1,"total":299.99,"discountPercentage":15.93,"discountedTotal":252.2,"thumbnail":"https://cdn.dummyjson.com/products/images/smartphones/Oppo%20K1/thumbnail.png"}],"total":568.36,"discountedTotal":476.76,"userId":172,"totalProducts":6,"totalQuantity":14}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Required fields exist in cart | 1 | 0 | 0 |
| Products array is not empty | 1 | 0 | 0 |
| Total | 4 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Retrieves all shopping carts associated with a specific user.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/carts/user/20`
## Authentication
- **Required**: No
- This is a public endpoint that doesn't require authentication
## Parameters
### Path Variables
- `userId` (required) - The unique identifier of the user whose carts to retrieve
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
{
"carts": [
{
"id": 1,
"products": [
{
"id": 1,
"title": "Product Name",
"price": 549,
"quantity": 2,
"total": 1098
}
],
"total": 1098,
"discountedTotal": 985,
"userId": 20,
"totalProducts": 1,
"totalQuantity": 2
}
],
"total": 3,
"skip": 0,
"limit": 30
}
```
## Tests Included
- Validates response status code is 200
- Verifies all carts belong to specified user
- Checks carts array structure
- Confirms user ID matches in all carts
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc2OTk2NDc5MX0.3W-gD3oxKuMoEVC_ZILbZsE2n66DWZhtJGckyUS699c |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 281f4e9f-8dad-4d72-82bd-ff40fbf6da96 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc2OTk2Mjk5MX0.Lj9nWLp2oNsvJH3yshjHjJE7lhuVp0g8wjs1ru5l0hA; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc3MjU1MzE5MX0.ag444jYthA_pkQrLkpGgh1QKllIc85htgvZvlFTM3Aw |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:16 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 99 |
| x-ratelimit-reset | 1769961207 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"452-dejvefTk1JGhUjC9m0sxjP8K8Do" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=64Um42ugLU%2FQNNq%2B2i4CfEy9%2BnjgMBnrlvnn%2BwmXCixV8Q1bVTEG8XqNmTf%2FUlf1H1KWTdGZGUGpCbrIQ0chjdLfp5segWnLWmuVOOo%3D"}]} |
| CF-RAY | 9c729ee84dbd2891-AMM |
{"carts":[{"id":44,"products":[{"id":93,"title":"Brown Leather Belt Watch","price":89.99,"quantity":3,"total":269.96999999999997,"discountPercentage":8.72,"discountedTotal":246.43,"thumbnail":"https://cdn.dummyjson.com/products/images/mens-watches/Brown%20Leather%20Belt%20Watch/thumbnail.png"},{"id":4,"title":"Red Lipstick","price":12.99,"quantity":2,"total":25.98,"discountPercentage":14.69,"discountedTotal":22.16,"thumbnail":"https://cdn.dummyjson.com/products/images/beauty/Red%20Lipstick/thumbnail.png"},{"id":140,"title":"Basketball","price":14.99,"quantity":5,"total":74.95,"discountPercentage":15.7,"discountedTotal":63.18,"thumbnail":"https://cdn.dummyjson.com/products/images/sports-accessories/Basketball/thumbnail.png"},{"id":83,"title":"Blue & Black Check Shirt","price":29.99,"quantity":3,"total":89.97,"discountPercentage":8.76,"discountedTotal":82.09,"thumbnail":"https://cdn.dummyjson.com/products/images/mens-shirts/Blue%20&%20Black%20Check%20Shirt/thumbnail.png"}],"total":460.87,"discountedTotal":413.86,"userId":20,"totalProducts":4,"totalQuantity":13}],"total":1,"skip":0,"limit":1}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Creates a new shopping cart or adds products to an existing cart for a user.
## Method & Endpoint
- **Method**: `POST`
- **Endpoint**: `https://dummyjson.com/carts/add`
## Authentication
- **Required**: No
- This is a public endpoint for demonstration purposes
## Parameters
### Request Body (JSON)
```json
{
"userId": 1,
"products": [
{
"id": 1,
"quantity": 2
},
{
"id": 5,
"quantity": 1
}
]
}
```
**Required Fields**:
- `userId` - The user ID who owns the cart
- `products` - Array of product objects with `id` and `quantity`
## Expected Response
- **Status Code**: `201 Created`
- **Response Structure**: Returns the created cart with calculated totals
```json
{
"id": 21,
"products": [
{
"id": 1,
"title": "Product Name",
"price": 549,
"quantity": 2,
"total": 1098
}
],
"total": 1098,
"discountedTotal": 985,
"userId": 1,
"totalProducts": 2,
"totalQuantity": 3
}
```
## Tests Included
- Validates response status code is 201
- Verifies cart ID is assigned
- Checks product totals are calculated correctly
- Confirms all products are added to cart
| Header Name | Header Value |
|---|---|
| Content-Type | application/json |
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc2OTk2NDc5MX0.3W-gD3oxKuMoEVC_ZILbZsE2n66DWZhtJGckyUS699c |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 1b2edc97-7e44-4456-aba8-b5003577a14d |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 152 |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc2OTk2Mjk5MX0.Lj9nWLp2oNsvJH3yshjHjJE7lhuVp0g8wjs1ru5l0hA; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc3MjU1MzE5MX0.ag444jYthA_pkQrLkpGgh1QKllIc85htgvZvlFTM3Aw |
{
"userId": 1,
"products": [
{
"id": 144,
"quantity": 4
},
{
"id": 98,
"quantity": 1
}
]
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:17 GMT |
| Content-Type | application/json; charset=utf-8 |
| Content-Length | 584 |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 93 |
| x-ratelimit-reset | 1769961199 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"248-5dWqMXWeXCBfsFmAf4sbnGOuqRg" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=rsAVMMhmC5s3gujMegVH96wnHhbxORksQoFElC7YNTXrkCaz%2Bb2eU7hgIjWjvma00ZQH1z5X4iYGGPKpm4RxZd89Yt%2FQw7PwKEi3Z8s%3D"}]} |
| CF-RAY | 9c729ee9ef692891-AMM |
{"id":51,"products":[{"id":98,"title":"Rolex Submariner Watch","price":13999.99,"quantity":4,"total":55999.96,"discountPercentage":5.05,"discountedPrice":53172,"thumbnail":"https://cdn.dummyjson.com/product-images/mens-watches/rolex-submariner-watch/thumbnail.webp"},{"id":144,"title":"Cricket Helmet","price":44.99,"quantity":1,"total":44.99,"discountPercentage":9.64,"discountedPrice":41,"thumbnail":"https://cdn.dummyjson.com/product-images/sports-accessories/cricket-helmet/thumbnail.webp"}],"total":56044.95,"discountedTotal":53213,"userId":1,"totalProducts":2,"totalQuantity":5}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 201 | 1 | 0 | 0 |
| Response has userId | 1 | 0 | 0 |
| Products have id and quantity | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 4 | 0 | 0 |
| Test Name | Assertion Error |
|---|
| Header Name | Header Value |
|---|---|
| Content-Type | application/json |
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc2OTk2NDc5MX0.3W-gD3oxKuMoEVC_ZILbZsE2n66DWZhtJGckyUS699c |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | a8dab2b1-fcb7-4317-9e9e-5fef64bba1ac |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 113 |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc2OTk2Mjk5MX0.Lj9nWLp2oNsvJH3yshjHjJE7lhuVp0g8wjs1ru5l0hA; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc3MjU1MzE5MX0.ag444jYthA_pkQrLkpGgh1QKllIc85htgvZvlFTM3Aw |
{
"userId": 1,
"products": [
{
"id": 144,
"quantity": 0
}
]
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:17 GMT |
| Content-Type | application/json; charset=utf-8 |
| Content-Length | 332 |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 98 |
| x-ratelimit-reset | 1769961207 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"14c-M42jev9/jNjkfFvEKbauQtpC+2U" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=vOp0Lb3VFetxmnyYuW8rwKcamBDuBCZ%2BRaRtSOKyFUigLp8G9LHDUFkoB0fORm6j04Cuta2%2BB201pWns7q8u8oX9ja6nUhlzfnQs3Gg%3D"}]} |
| CF-RAY | 9c729eeb992b2891-AMM |
{"id":51,"products":[{"id":144,"title":"Cricket Helmet","price":44.99,"quantity":1,"total":44.99,"discountPercentage":9.64,"discountedPrice":41,"thumbnail":"https://cdn.dummyjson.com/product-images/sports-accessories/cricket-helmet/thumbnail.webp"}],"total":44.99,"discountedTotal":41,"userId":1,"totalProducts":1,"totalQuantity":1}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| BUGT quantity=0 automaticalle corrected to 1 | 1 | 0 | 0 |
| Total | 1 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Updates an existing shopping cart's products and quantities.
## Method & Endpoint
- **Method**: `PUT`
- **Endpoint**: `https://dummyjson.com/carts/11`
## Authentication
- **Required**: No
- This is a public endpoint for demonstration purposes
## Parameters
### Path Variables
- `cartId` (required) - The unique identifier of the cart to update
### Request Body (JSON)
```json
{
"products": [
{
"id": 1,
"quantity": 3
},
{
"id": 10,
"quantity": 1
}
]
}
```
**Note**: The products array replaces the existing cart contents.
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**: Returns the updated cart with recalculated totals
```json
{
"id": 1,
"products": [
{
"id": 1,
"title": "Product Name",
"price": 549,
"quantity": 3,
"total": 1647
}
],
"total": 1647,
"discountedTotal": 1480,
"userId": 1,
"totalProducts": 2,
"totalQuantity": 4
}
```
## Tests Included
- Validates response status code is 200
- Verifies cart ID remains unchanged
- Checks updated quantities and totals
- Confirms product list is updated correctly
| Header Name | Header Value |
|---|---|
| Content-Type | application/json |
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc2OTk2NDc5MX0.3W-gD3oxKuMoEVC_ZILbZsE2n66DWZhtJGckyUS699c |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 635def88-8e93-4bba-bf84-0eefe518cab3 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 78 |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc2OTk2Mjk5MX0.Lj9nWLp2oNsvJH3yshjHjJE7lhuVp0g8wjs1ru5l0hA; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc3MjU1MzE5MX0.ag444jYthA_pkQrLkpGgh1QKllIc85htgvZvlFTM3Aw |
{
"merge": true,
"products": [
{ "id": 1, "quantity": 1 }
]
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:17 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 97 |
| x-ratelimit-reset | 1769961207 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"6af-U879Xr8c9nPuFdwkrSazTIBwHGc" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=ZGVETa575iGZn7A%2B1XbnpsbTmnv6UUaUCFPvr%2FgWyvQkIAYQbPtQfeZGVLy6xJQQloulHjK8R08c5uZun0lBOP8ERFJzf2nYcIatYfE%3D"}]} |
| CF-RAY | 9c729eed3ad02891-AMM |
{"id":11,"products":[{"id":88,"title":"Nike Air Jordan 1 Red And Black","price":149.99,"quantity":1,"total":149.99,"discountPercentage":17.18,"discountedPrice":124,"thumbnail":"https://cdn.dummyjson.com/products/images/mens-shoes/Nike%20Air%20Jordan%201%20Red%20And%20Black/thumbnail.png"},{"id":32,"title":"Milk","price":3.49,"quantity":3,"total":10.47,"discountPercentage":9.36,"discountedPrice":9,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Milk/thumbnail.png"},{"id":74,"title":"Spoon","price":4.99,"quantity":3,"total":14.97,"discountPercentage":2.78,"discountedPrice":15,"thumbnail":"https://cdn.dummyjson.com/products/images/kitchen-accessories/Spoon/thumbnail.png"},{"id":145,"title":"Cricket Wicket","price":29.99,"quantity":3,"total":89.97,"discountPercentage":17.87,"discountedPrice":74,"thumbnail":"https://cdn.dummyjson.com/products/images/sports-accessories/Cricket%20Wicket/thumbnail.png"},{"id":26,"title":"Green Chili Pepper","price":0.99,"quantity":3,"total":2.9699999999999998,"discountPercentage":18.69,"discountedPrice":2,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Green%20Chili%20Pepper/thumbnail.png"},{"id":127,"title":"Oppo K1","price":299.99,"quantity":1,"total":299.99,"discountPercentage":15.93,"discountedPrice":252,"thumbnail":"https://cdn.dummyjson.com/products/images/smartphones/Oppo%20K1/thumbnail.png"},{"id":1,"title":"Essence Mascara Lash Princess","price":9.99,"quantity":1,"total":9.99,"discountPercentage":10.48,"discountedPrice":9,"thumbnail":"https://cdn.dummyjson.com/product-images/beauty/essence-mascara-lash-princess/thumbnail.webp"}],"total":578.35,"discountedTotal":485,"userId":172,"totalProducts":7,"totalQuantity":15}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Deletes a specific shopping cart from the system by its unique identifier.
## Method & Endpoint
- **Method**: `DELETE`
- **Endpoint**: `https://dummyjson.com/carts/11`
## Authentication
- **Required**: No
- This is a public endpoint for demonstration purposes
## Parameters
### Path Variables
- `cartId` (required) - The unique identifier of the cart to delete
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**: Returns the deleted cart information with deletion confirmation
```json
{
"id": 1,
"products": [
{
"id": 1,
"title": "Product Name",
"price": 549,
"quantity": 2,
"total": 1098
}
],
"total": 1098,
"discountedTotal": 985,
"userId": 1,
"totalProducts": 1,
"totalQuantity": 2,
"isDeleted": true,
"deletedOn": "2024-01-01T12:00:00.000Z"
}
```
## Tests Included
- Validates response status code is 200
- Verifies `isDeleted` flag is true
- Checks deletion timestamp is present
- Confirms deleted cart details are returned
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc2OTk2NDc5MX0.3W-gD3oxKuMoEVC_ZILbZsE2n66DWZhtJGckyUS699c |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 9e081a5a-223f-4406-bafb-650898702c18 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc2OTk2Mjk5MX0.Lj9nWLp2oNsvJH3yshjHjJE7lhuVp0g8wjs1ru5l0hA; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc3MjU1MzE5MX0.ag444jYthA_pkQrLkpGgh1QKllIc85htgvZvlFTM3Aw |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:18 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 95 |
| x-ratelimit-reset | 1769961200 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"609-IRRfYLnUFCCRhWJmxA3q0O/VwRI" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=ah71EO3LbxB1aidl12%2BpJfuVi%2BmAcOsz8%2BcBiNdzKfEC%2Bm4PxT9yZLGZoESKhk1Q9q0bXnHLXq2%2BIrLpQr2IwGJGExBmWv%2FCgOEsQPo%3D"}]} |
| CF-RAY | 9c729eeebcb02891-AMM |
{"id":11,"products":[{"id":88,"title":"Nike Air Jordan 1 Red And Black","price":149.99,"quantity":1,"total":149.99,"discountPercentage":17.18,"discountedTotal":124.22,"thumbnail":"https://cdn.dummyjson.com/products/images/mens-shoes/Nike%20Air%20Jordan%201%20Red%20And%20Black/thumbnail.png"},{"id":32,"title":"Milk","price":3.49,"quantity":3,"total":10.47,"discountPercentage":9.36,"discountedTotal":9.49,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Milk/thumbnail.png"},{"id":74,"title":"Spoon","price":4.99,"quantity":3,"total":14.97,"discountPercentage":2.78,"discountedTotal":14.55,"thumbnail":"https://cdn.dummyjson.com/products/images/kitchen-accessories/Spoon/thumbnail.png"},{"id":145,"title":"Cricket Wicket","price":29.99,"quantity":3,"total":89.97,"discountPercentage":17.87,"discountedTotal":73.89,"thumbnail":"https://cdn.dummyjson.com/products/images/sports-accessories/Cricket%20Wicket/thumbnail.png"},{"id":26,"title":"Green Chili Pepper","price":0.99,"quantity":3,"total":2.9699999999999998,"discountPercentage":18.69,"discountedTotal":2.41,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Green%20Chili%20Pepper/thumbnail.png"},{"id":127,"title":"Oppo K1","price":299.99,"quantity":1,"total":299.99,"discountPercentage":15.93,"discountedTotal":252.2,"thumbnail":"https://cdn.dummyjson.com/products/images/smartphones/Oppo%20K1/thumbnail.png"}],"total":568.36,"discountedTotal":476.76,"userId":172,"totalProducts":6,"totalQuantity":14,"isDeleted":true,"deletedOn":"2026-02-01T15:53:17.948Z"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Deleted cart has correct id | 1 | 0 | 0 |
| Response contains isDeleted flag | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 4 | 0 | 0 |
| Test Name | Assertion Error |
|---|
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc2OTk2NDc5MX0.3W-gD3oxKuMoEVC_ZILbZsE2n66DWZhtJGckyUS699c |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 84940d13-ddd7-4c71-8a87-01ab6946e73c |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc2OTk2Mjk5MX0.Lj9nWLp2oNsvJH3yshjHjJE7lhuVp0g8wjs1ru5l0hA; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc3MjU1MzE5MX0.ag444jYthA_pkQrLkpGgh1QKllIc85htgvZvlFTM3Aw |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:18 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 90 |
| x-ratelimit-reset | 1769961203 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"2b-JQ/fhVd+HH8flrSxW3e6Bpvtu6A" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=jBiWGtbTcVfzMWQlWuwB6KMDLQ%2FuuvQF%2FMMhue42ZLLfVRZzMRE6UyTUeCEWjA8J7IF32Gi6NXbg7qBt%2Fm8T9MSjS1BLqDHtqHil8eg%3D"}]} |
| Content-Encoding | br |
| CF-RAY | 9c729ef06ede2891-AMM |
{"message":"Cart with id 'abcd' not found"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Invalid cart id handled correctly | 1 | 0 | 0 |
| Response body exists | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Retrieves a paginated list of all users in the system.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/users`
## Authentication
- **Required**: No
- This is a public endpoint that doesn't require authentication
## Parameters
- No required parameters
- Optional query parameters: `limit`, `skip` for pagination
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
{
"users": [
{
"id": 1,
"firstName": "Emily",
"lastName": "Johnson",
"email": "emily.johnson@x.dummyjson.com",
"username": "emilys",
"age": 28,
"gender": "female",
"phone": "+81 965-431-3024",
"birthDate": "1996-5-30",
"image": "https://dummyjson.com/icon/emilys/128",
"address": {...},
"company": {...}
}
],
"total": 208,
"skip": 0,
"limit": 30
}
```
## Tests Included
- Validates response status code is 200
- Verifies users array structure
- Checks pagination metadata
- Confirms user object contains required fields
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc2OTk2NDc5MX0.3W-gD3oxKuMoEVC_ZILbZsE2n66DWZhtJGckyUS699c |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 1baffb8a-c8f7-4714-9844-6a5a3b1be8f8 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc2OTk2Mjk5MX0.Lj9nWLp2oNsvJH3yshjHjJE7lhuVp0g8wjs1ru5l0hA; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc3MjU1MzE5MX0.ag444jYthA_pkQrLkpGgh1QKllIc85htgvZvlFTM3Aw |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:18 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 87 |
| x-ratelimit-reset | 1769886055 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"a3b1-Wc+qCYPJ2IxKpnt00AlusGYMzCE" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| Age | 75148 |
| Cache-Control | no-store |
| cf-cache-status | HIT |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=u1iu2yLkjmKyZTqBHxxxBBuuaE6uQ%2FuJJGee1Ser0krNbgjA31YDqMIUtyJj4TPllaznd9tuCzBP%2B2Mr52JzDe2eWvN8eJbPBIIabAg%3D"}]} |
| CF-RAY | 9c729ef208972891-AMM |
{"users":[{"id":1,"firstName":"Emily","lastName":"Johnson","maidenName":"Smith","age":29,"gender":"female","email":"emily.johnson@x.dummyjson.com","phone":"+81 965-431-3024","username":"emilys","password":"emilyspass","birthDate":"1996-5-30","image":"https://dummyjson.com/icon/emilys/128","bloodGroup":"O-","height":193.24,"weight":63.16,"eyeColor":"Green","hair":{"color":"Brown","type":"Curly"},"ip":"42.48.100.32","address":{"address":"626 Main Street","city":"Phoenix","state":"Mississippi","stateCode":"MS","postalCode":"29112","coordinates":{"lat":-77.16213,"lng":-92.084824},"country":"United States"},"macAddress":"47:fa:41:18:ec:eb","university":"University of Wisconsin--Madison","bank":{"cardExpire":"05/28","cardNumber":"3693233511855044","cardType":"Diners Club International","currency":"GBP","iban":"GB74MH2UZLR9TRPHYNU8F8"},"company":{"department":"Engineering","name":"Dooley, Kozey and Cronin","title":"Sales Manager","address":{"address":"263 Tenth Street","city":"San Francisco","state":"Wisconsin","stateCode":"WI","postalCode":"37657","coordinates":{"lat":71.814525,"lng":-161.150263},"country":"United States"}},"ein":"977-175","ssn":"900-590-289","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"admin"},{"id":2,"firstName":"Michael","lastName":"Williams","maidenName":"","age":36,"gender":"male","email":"michael.williams@x.dummyjson.com","phone":"+49 258-627-6644","username":"michaelw","password":"michaelwpass","birthDate":"1989-8-10","image":"https://dummyjson.com/icon/michaelw/128","bloodGroup":"B+","height":186.22,"weight":76.32,"eyeColor":"Red","hair":{"color":"Green","type":"Straight"},"ip":"12.13.116.142","address":{"address":"385 Fifth Street","city":"Houston","state":"Alabama","stateCode":"AL","postalCode":"38807","coordinates":{"lat":22.815468,"lng":115.608581},"country":"United States"},"macAddress":"79:15:78:99:60:aa","university":"Ohio State University","bank":{"cardExpire":"01/30","cardNumber":"3530633803003665","cardType":"JCB","currency":"USD","iban":"DE26362283149158045865"},"company":{"department":"Support","name":"Spinka - Dickinson","title":"Support Specialist","address":{"address":"395 Main Street","city":"Los Angeles","state":"New Hampshire","stateCode":"NH","postalCode":"73442","coordinates":{"lat":79.098326,"lng":-119.624845},"country":"United States"}},"ein":"912-602","ssn":"108-953-962","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Edge/97.0.1072.76 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"admin"},{"id":3,"firstName":"Sophia","lastName":"Brown","maidenName":"","age":43,"gender":"female","email":"sophia.brown@x.dummyjson.com","phone":"+81 210-652-2785","username":"sophiab","password":"sophiabpass","birthDate":"1982-11-6","image":"https://dummyjson.com/icon/sophiab/128","bloodGroup":"O-","height":177.72,"weight":52.6,"eyeColor":"Hazel","hair":{"color":"White","type":"Wavy"},"ip":"214.225.51.195","address":{"address":"1642 Ninth Street","city":"Washington","state":"Alabama","stateCode":"AL","postalCode":"32822","coordinates":{"lat":45.289366,"lng":46.832664},"country":"United States"},"macAddress":"12:a3:d3:6f:5c:5b","university":"Pepperdine University","bank":{"cardExpire":"10/27","cardNumber":"6011212053392887","cardType":"Discover","currency":"EUR","iban":"DE12191213468288004835"},"company":{"department":"Research and Development","name":"Schiller - Zieme","title":"Accountant","address":{"address":"1896 Washington Street","city":"Dallas","state":"Nevada","stateCode":"NV","postalCode":"88511","coordinates":{"lat":20.086743,"lng":-34.577107},"country":"United States"}},"ein":"963-113","ssn":"638-461-822","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"admin"},{"id":4,"firstName":"James","lastName":"Davis","maidenName":"","age":46,"gender":"male","email":"james.davis@x.dummyjson.com","phone":"+49 614-958-9364","username":"jamesd","password":"jamesdpass","birthDate":"1979-5-4","image":"https://dummyjson.com/icon/jamesd/128","bloodGroup":"AB+","height":193.31,"weight":62.1,"eyeColor":"Amber","hair":{"color":"Blonde","type":"Straight"},"ip":"101.118.131.66","address":{"address":"238 Jefferson Street","city":"Seattle","state":"Pennsylvania","stateCode":"PA","postalCode":"68354","coordinates":{"lat":16.782513,"lng":-139.34723},"country":"United States"},"macAddress":"10:7d:df:1f:97:58","university":"University of Southern California","bank":{"cardExpire":"07/30","cardNumber":"5303440212268149","cardType":"Mastercard","currency":"CAD","iban":"DE01300746880579852937"},"company":{"department":"Support","name":"Pagac and Sons","title":"Research Analyst","address":{"address":"1622 Lincoln Street","city":"Fort Worth","state":"Pennsylvania","stateCode":"PA","postalCode":"27768","coordinates":{"lat":54.91193,"lng":-79.498328},"country":"United States"}},"ein":"904-810","ssn":"116-951-314","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"admin"},{"id":5,"firstName":"Emma","lastName":"Miller","maidenName":"Johnson","age":31,"gender":"female","email":"emma.miller@x.dummyjson.com","phone":"+91 759-776-1614","username":"emmaj","password":"emmajpass","birthDate":"1994-6-13","image":"https://dummyjson.com/icon/emmaj/128","bloodGroup":"AB-","height":192.8,"weight":63.62,"eyeColor":"Green","hair":{"color":"White","type":"Straight"},"ip":"224.126.22.183","address":{"address":"607 Fourth Street","city":"Jacksonville","state":"Colorado","stateCode":"CO","postalCode":"26593","coordinates":{"lat":0.505589,"lng":-157.43281},"country":"United States"},"macAddress":"32:b9:7e:8d:f5:e8","university":"Northeastern University","bank":{"cardExpire":"07/30","cardNumber":"5237188057591130","cardType":"Mastercard","currency":"NZD","iban":"DE19182355652037133559"},"company":{"department":"Human Resources","name":"Graham - Gulgowski","title":"Quality Assurance Engineer","address":{"address":"1460 Sixth Street","city":"San Antonio","state":"Idaho","stateCode":"ID","postalCode":"21965","coordinates":{"lat":44.346545,"lng":-26.944701},"country":"United States"}},"ein":"403-505","ssn":"526-210-885","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:97.0) Gecko/20100101 Firefox/97.0","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"admin"},{"id":6,"firstName":"Olivia","lastName":"Wilson","maidenName":"","age":23,"gender":"female","email":"olivia.wilson@x.dummyjson.com","phone":"+91 607-295-6448","username":"oliviaw","password":"oliviawpass","birthDate":"2002-4-20","image":"https://dummyjson.com/icon/oliviaw/128","bloodGroup":"B+","height":182.61,"weight":58,"eyeColor":"Hazel","hair":{"color":"Gray","type":"Curly"},"ip":"249.178.112.207","address":{"address":"547 First Street","city":"Fort Worth","state":"Tennessee","stateCode":"TN","postalCode":"83843","coordinates":{"lat":75.32627,"lng":-26.15285},"country":"United States"},"macAddress":"9c:7f:ea:34:18:19","university":"University of North Carolina--Chapel Hill","bank":{"cardExpire":"06/30","cardNumber":"376320072452632","cardType":"American Express","currency":"NZD","iban":"DE21153814367894194071"},"company":{"department":"Product Management","name":"Pfannerstill Inc","title":"Research Analyst","address":{"address":"425 Sixth Street","city":"Indianapolis","state":"Oklahoma","stateCode":"OK","postalCode":"74263","coordinates":{"lat":74.986644,"lng":-132.916888},"country":"United States"}},"ein":"921-709","ssn":"836-772-168","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.3 Safari/605.1.15","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"moderator"},{"id":7,"firstName":"Alexander","lastName":"Jones","maidenName":"","age":39,"gender":"male","email":"alexander.jones@x.dummyjson.com","phone":"+61 260-824-4986","username":"alexanderj","password":"alexanderjpass","birthDate":"1986-10-20","image":"https://dummyjson.com/icon/alexanderj/128","bloodGroup":"AB-","height":153.89,"weight":77.42,"eyeColor":"Blue","hair":{"color":"White","type":"Straight"},"ip":"166.204.84.32","address":{"address":"664 Maple Street","city":"Indianapolis","state":"Delaware","stateCode":"DE","postalCode":"86684","coordinates":{"lat":35.289664,"lng":7.063255},"country":"United States"},"macAddress":"d2:64:58:2d:1c:46","university":"University of Illinois--Urbana-Champaign","bank":{"cardExpire":"12/29","cardNumber":"5189302549548693","cardType":"Mastercard","currency":"PKR","iban":"DE67517655968963441488"},"company":{"department":"Engineering","name":"Dickens - Beahan","title":"Web Developer","address":{"address":"996 Eighth Street","city":"Washington","state":"Kansas","stateCode":"KS","postalCode":"27858","coordinates":{"lat":-75.462366,"lng":-128.025697},"country":"United States"}},"ein":"638-127","ssn":"722-993-925","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"moderator"},{"id":8,"firstName":"Ava","lastName":"Taylor","maidenName":"","age":28,"gender":"female","email":"ava.taylor@x.dummyjson.com","phone":"+1 458-853-7877","username":"avat","password":"avatpass","birthDate":"1997-8-25","image":"https://dummyjson.com/icon/avat/128","bloodGroup":"AB-","height":168.47,"weight":57.08,"eyeColor":"Hazel","hair":{"color":"Red","type":"Kinky"},"ip":"150.73.197.233","address":{"address":"1197 First Street","city":"Fort Worth","state":"Rhode Island","stateCode":"RI","postalCode":"24771","coordinates":{"lat":-81.194833,"lng":-87.948158},"country":"United States"},"macAddress":"8d:2e:c2:d6:e7:a8","university":"University of Wisconsin--Madison","bank":{"cardExpire":"08/30","cardNumber":"5349974103330333","cardType":"Mastercard","currency":"EUR","iban":"FR94ZM2MMGL1EVYQE1ZLCVCFH83"},"company":{"department":"Marketing","name":"Nikolaus Inc","title":"Chief Executive Officer","address":{"address":"930 Lincoln Street","city":"Austin","state":"Colorado","stateCode":"CO","postalCode":"47592","coordinates":{"lat":87.970083,"lng":-42.769351},"country":"United States"}},"ein":"297-762","ssn":"257-419-109","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"moderator"},{"id":9,"firstName":"Ethan","lastName":"Martinez","maidenName":"","age":34,"gender":"male","email":"ethan.martinez@x.dummyjson.com","phone":"+92 933-608-5081","username":"ethanm","password":"ethanmpass","birthDate":"1991-2-12","image":"https://dummyjson.com/icon/ethanm/128","bloodGroup":"AB+","height":159.19,"weight":68.81,"eyeColor":"Hazel","hair":{"color":"Purple","type":"Curly"},"ip":"63.191.127.71","address":{"address":"466 Pine Street","city":"San Antonio","state":"Louisiana","stateCode":"LA","postalCode":"72360","coordinates":{"lat":74.074918,"lng":-25.312703},"country":"United States"},"macAddress":"59:e:9e:e3:29:da","university":"Syracuse University","bank":{"cardExpire":"10/27","cardNumber":"3598603288061479","cardType":"JCB","currency":"GBP","iban":"GB26PND7D83JTW4HL6LZ71"},"company":{"department":"Support","name":"Gorczany - Gottlieb","title":"Legal Counsel","address":{"address":"1597 Oak Street","city":"Chicago","state":"Florida","stateCode":"FL","postalCode":"28100","coordinates":{"lat":-67.45208,"lng":-23.209886},"country":"United States"}},"ein":"790-434","ssn":"569-650-348","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"moderator"},{"id":10,"firstName":"Isabella","lastName":"Anderson","maidenName":"Davis","age":32,"gender":"female","email":"isabella.anderson@x.dummyjson.com","phone":"+49 770-658-4885","username":"isabellad","password":"isabelladpass","birthDate":"1993-6-10","image":"https://dummyjson.com/icon/isabellad/128","bloodGroup":"A-","height":150.56,"weight":50.1,"eyeColor":"Brown","hair":{"color":"Blonde","type":"Curly"},"ip":"114.9.114.205","address":{"address":"1964 Oak Street","city":"New York","state":"Utah","stateCode":"UT","postalCode":"89352","coordinates":{"lat":41.331324,"lng":151.782727},"country":"United States"},"macAddress":"b1:b0:d0:a2:82:80","university":"California Institute of Technology (Caltech)","bank":{"cardExpire":"03/30","cardNumber":"3602093733952858","cardType":"Diners Club International","currency":"USD","iban":"DE12934874962442340025"},"company":{"department":"Marketing","name":"Pollich - Hilpert","title":"Chief Financial Officer","address":{"address":"1029 Adams Street","city":"San Diego","state":"Maryland","stateCode":"MD","postalCode":"63847","coordinates":{"lat":-25.843393,"lng":-62.692681},"country":"United States"}},"ein":"127-297","ssn":"902-438-728","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"moderator"},{"id":11,"firstName":"Liam","lastName":"Garcia","maidenName":"","age":30,"gender":"male","email":"liam.garcia@x.dummyjson.com","phone":"+92 870-217-6201","username":"liamg","password":"liamgpass","birthDate":"1995-6-6","image":"https://dummyjson.com/icon/liamg/128","bloodGroup":"AB-","height":162.32,"weight":93.16,"eyeColor":"Violet","hair":{"color":"Red","type":"Wavy"},"ip":"56.201.85.9","address":{"address":"576 Fifth Street","city":"Denver","state":"South Dakota","stateCode":"SD","postalCode":"57252","coordinates":{"lat":-66.218177,"lng":-145.340165},"country":"United States"},"macAddress":"31:9a:28:8b:99:6c","university":"Ohio State University","bank":{"cardExpire":"12/29","cardNumber":"3614993744940956","cardType":"Diners Club International","currency":"USD","iban":"DE65581882748067758114"},"company":{"department":"Services","name":"Considine - Torp","title":"Web Developer","address":{"address":"27 Cedar Street","city":"Philadelphia","state":"Connecticut","stateCode":"CT","postalCode":"79574","coordinates":{"lat":-81.841588,"lng":31.79423},"country":"United States"}},"ein":"326-604","ssn":"933-784-949","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"moderator"},{"id":12,"firstName":"Mia","lastName":"Rodriguez","maidenName":"","age":25,"gender":"female","email":"mia.rodriguez@x.dummyjson.com","phone":"+49 989-461-8403","username":"miar","password":"miarpass","birthDate":"2000-8-4","image":"https://dummyjson.com/icon/miar/128","bloodGroup":"O-","height":188.08,"weight":56.03,"eyeColor":"Blue","hair":{"color":"Purple","type":"Wavy"},"ip":"11.72.253.90","address":{"address":"1627 Sixth Street","city":"Jacksonville","state":"West Virginia","stateCode":"WV","postalCode":"41810","coordinates":{"lat":24.857497,"lng":-34.865429},"country":"United States"},"macAddress":"53:d7:a4:6:1e:58","university":"William & Mary","bank":{"cardExpire":"02/29","cardNumber":"343932350909214","cardType":"American Express","currency":"CAD","iban":"DE77118774979880310165"},"company":{"department":"Accounting","name":"Miller, Schowalter and Wisozk","title":"Business Analyst","address":{"address":"1039 Washington Street","city":"Philadelphia","state":"New Jersey","stateCode":"NJ","postalCode":"57518","coordinates":{"lat":85.455933,"lng":164.246103},"country":"United States"}},"ein":"754-660","ssn":"749-524-124","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"moderator"},{"id":13,"firstName":"Noah","lastName":"Hernandez","maidenName":"","age":41,"gender":"male","email":"noah.hernandez@x.dummyjson.com","phone":"+49 393-605-6968","username":"noahh","password":"noahhpass","birthDate":"1984-6-5","image":"https://dummyjson.com/icon/noahh/128","bloodGroup":"AB+","height":188.62,"weight":69.49,"eyeColor":"Brown","hair":{"color":"Red","type":"Curly"},"ip":"169.154.126.57","address":{"address":"1413 Maple Street","city":"New York","state":"North Dakota","stateCode":"ND","postalCode":"73696","coordinates":{"lat":-25.0377,"lng":-151.70469},"country":"United States"},"macAddress":"d4:fe:ae:8f:eb:a3","university":"New York University (NYU)","bank":{"cardExpire":"03/30","cardNumber":"6262462852322850","cardType":"UnionPay","currency":"PKR","iban":"DE13437032020581217601"},"company":{"department":"Engineering","name":"Botsford, Marquardt and Roberts","title":"Database Administrator","address":{"address":"62 Third Street","city":"Seattle","state":"Oregon","stateCode":"OR","postalCode":"83474","coordinates":{"lat":19.490447,"lng":-13.173207},"country":"United States"}},"ein":"877-628","ssn":"660-847-389","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"moderator"},{"id":14,"firstName":"Charlotte","lastName":"Lopez","maidenName":"Martinez","age":37,"gender":"female","email":"charlotte.lopez@x.dummyjson.com","phone":"+44 373-953-5028","username":"charlottem","password":"charlottempass","birthDate":"1988-6-8","image":"https://dummyjson.com/icon/charlottem/128","bloodGroup":"AB-","height":178.92,"weight":82.46,"eyeColor":"Brown","hair":{"color":"Gray","type":"Kinky"},"ip":"119.103.95.60","address":{"address":"208 Second Street","city":"Columbus","state":"Ohio","stateCode":"OH","postalCode":"42044","coordinates":{"lat":-44.443762,"lng":-151.420561},"country":"United States"},"macAddress":"f6:ff:37:aa:6c:f1","university":"Northeastern University","bank":{"cardExpire":"12/27","cardNumber":"3634388457177035","cardType":"Diners Club International","currency":"PKR","iban":"DE54092147842698685963"},"company":{"department":"Accounting","name":"Zulauf and Sons","title":"Chief Executive Officer","address":{"address":"569 Jefferson Street","city":"Los Angeles","state":"Montana","stateCode":"MT","postalCode":"17779","coordinates":{"lat":-18.371256,"lng":22.566258},"country":"United States"}},"ein":"364-782","ssn":"255-491-479","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"moderator"},{"id":15,"firstName":"William","lastName":"Gonzalez","maidenName":"","age":33,"gender":"male","email":"william.gonzalez@x.dummyjson.com","phone":"+81 905-252-7319","username":"williamg","password":"williamgpass","birthDate":"1992-3-27","image":"https://dummyjson.com/icon/williamg/128","bloodGroup":"B-","height":173.21,"weight":82.41,"eyeColor":"Hazel","hair":{"color":"Gray","type":"Curly"},"ip":"250.2.241.204","address":{"address":"31 Maple Street","city":"San Jose","state":"Utah","stateCode":"UT","postalCode":"78243","coordinates":{"lat":8.152876,"lng":113.29799},"country":"United States"},"macAddress":"f5:68:28:f9:ec:89","university":"Tufts University","bank":{"cardExpire":"05/30","cardNumber":"6228256225004929","cardType":"UnionPay","currency":"PKR","iban":"DE63711022986572448914"},"company":{"department":"Marketing","name":"Spinka - Dickinson","title":"Software Architect","address":{"address":"1538 Eighth Street","city":"San Jose","state":"Missouri","stateCode":"MO","postalCode":"29673","coordinates":{"lat":24.169361,"lng":-29.395167},"country":"United States"}},"ein":"830-515","ssn":"690-544-755","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"moderator"},{"id":16,"firstName":"Avery","lastName":"Perez","maidenName":"","age":26,"gender":"female","email":"avery.perez@x.dummyjson.com","phone":"+61 731-431-3457","username":"averyp","password":"averyppass","birthDate":"1999-3-10","image":"https://dummyjson.com/icon/averyp/128","bloodGroup":"O-","height":172.68,"weight":93.9,"eyeColor":"Brown","hair":{"color":"Green","type":"Curly"},"ip":"131.217.4.214","address":{"address":"1125 First Street","city":"Columbus","state":"Iowa","stateCode":"IA","postalCode":"30973","coordinates":{"lat":12.789127,"lng":85.792598},"country":"United States"},"macAddress":"b3:ff:f3:c5:37:46","university":"Harvard University","bank":{"cardExpire":"08/29","cardNumber":"378024038311910","cardType":"American Express","currency":"USD","iban":"DE42403186906981858976"},"company":{"department":"Accounting","name":"Herzog Inc","title":"Database Administrator","address":{"address":"183 Maple Street","city":"New York","state":"Rhode Island","stateCode":"RI","postalCode":"45238","coordinates":{"lat":-53.318189,"lng":105.835271},"country":"United States"}},"ein":"348-493","ssn":"679-523-686","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":17,"firstName":"Evelyn","lastName":"Sanchez","maidenName":"","age":38,"gender":"female","email":"evelyn.sanchez@x.dummyjson.com","phone":"+1 623-880-6871","username":"evelyns","password":"evelynspass","birthDate":"1987-10-13","image":"https://dummyjson.com/icon/evelyns/128","bloodGroup":"B+","height":184.08,"weight":83.15,"eyeColor":"Violet","hair":{"color":"Blue","type":"Curly"},"ip":"87.114.135.146","address":{"address":"1170 Lincoln Street","city":"San Diego","state":"Wyoming","stateCode":"WY","postalCode":"43423","coordinates":{"lat":-83.31484,"lng":11.768071},"country":"United States"},"macAddress":"f8:e5:bd:43:bc:d8","university":"Washington University in St. Louis","bank":{"cardExpire":"01/29","cardNumber":"3514443781649095","cardType":"JCB","currency":"GBP","iban":"GB74239MLVNQ0UB9ANTFRM"},"company":{"department":"Support","name":"Predovic - Johns","title":"Chief Financial Officer","address":{"address":"1802 Ninth Street","city":"San Diego","state":"Minnesota","stateCode":"MN","postalCode":"89416","coordinates":{"lat":29.034592,"lng":-78.004598},"country":"United States"}},"ein":"604-817","ssn":"689-332-644","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":18,"firstName":"Logan","lastName":"Torres","maidenName":"","age":32,"gender":"male","email":"logan.torres@x.dummyjson.com","phone":"+81 507-434-8733","username":"logant","password":"logantpass","birthDate":"1993-10-26","image":"https://dummyjson.com/icon/logant/128","bloodGroup":"A+","height":190.04,"weight":72.43,"eyeColor":"Green","hair":{"color":"Green","type":"Curly"},"ip":"155.98.15.162","address":{"address":"907 Seventh Street","city":"Columbus","state":"Arkansas","stateCode":"AR","postalCode":"78805","coordinates":{"lat":-64.846516,"lng":174.775744},"country":"United States"},"macAddress":"40:d:5c:1:7d:bf","university":"University of Illinois--Urbana-Champaign","bank":{"cardExpire":"04/30","cardNumber":"6258651210557142","cardType":"UnionPay","currency":"EUR","iban":"ES1171429445321693077621"},"company":{"department":"Training","name":"Jast - Nader","title":"Data Analyst","address":{"address":"947 Main Street","city":"Denver","state":"Minnesota","stateCode":"MN","postalCode":"71896","coordinates":{"lat":-24.654063,"lng":-147.255268},"country":"United States"}},"ein":"576-218","ssn":"806-639-934","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":19,"firstName":"Abigail","lastName":"Rivera","maidenName":"","age":29,"gender":"female","email":"abigail.rivera@x.dummyjson.com","phone":"+91 228-363-7806","username":"abigailr","password":"abigailrpass","birthDate":"1996-10-11","image":"https://dummyjson.com/icon/abigailr/128","bloodGroup":"B+","height":186.39,"weight":74.61,"eyeColor":"Violet","hair":{"color":"Blue","type":"Kinky"},"ip":"19.183.240.94","address":{"address":"996 Oak Street","city":"Chicago","state":"New Mexico","stateCode":"NM","postalCode":"11407","coordinates":{"lat":44.321308,"lng":-3.723903},"country":"United States"},"macAddress":"1d:a6:58:2a:e5:e4","university":"California Institute of Technology (Caltech)","bank":{"cardExpire":"01/27","cardNumber":"6011399019022417","cardType":"Discover","currency":"EUR","iban":"IT11QP2B5J81QM1FBX029VI5DD68O"},"company":{"department":"Human Resources","name":"Prohaska - Thiel","title":"Business Analyst","address":{"address":"1402 Adams Street","city":"Austin","state":"Wisconsin","stateCode":"WI","postalCode":"51456","coordinates":{"lat":25.672938,"lng":-76.54967},"country":"United States"}},"ein":"173-637","ssn":"655-823-929","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Edge/97.0.1072.76 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":20,"firstName":"Jackson","lastName":"Evans","maidenName":"","age":35,"gender":"male","email":"jackson.evans@x.dummyjson.com","phone":"+44 468-628-6686","username":"jacksone","password":"jacksonepass","birthDate":"1990-11-30","image":"https://dummyjson.com/icon/jacksone/128","bloodGroup":"O-","height":162.57,"weight":74.37,"eyeColor":"Green","hair":{"color":"Red","type":"Straight"},"ip":"221.127.144.198","address":{"address":"1873 Main Street","city":"New York","state":"Arkansas","stateCode":"AR","postalCode":"26600","coordinates":{"lat":34.722451,"lng":63.448927},"country":"United States"},"macAddress":"81:14:1:97:88:85","university":"Ohio State University","bank":{"cardExpire":"07/30","cardNumber":"376760688512826","cardType":"American Express","currency":"GBP","iban":"GB27CM0H0MNPXSPDGA0A1O"},"company":{"department":"Legal","name":"Kuhlman LLC","title":"Web Developer","address":{"address":"1706 First Street","city":"Chicago","state":"Hawaii","stateCode":"HI","postalCode":"34725","coordinates":{"lat":-80.416937,"lng":-83.224516},"country":"United States"}},"ein":"843-260","ssn":"248-787-886","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":21,"firstName":"Madison","lastName":"Collins","maidenName":"","age":27,"gender":"female","email":"madison.collins@x.dummyjson.com","phone":"+81 259-957-5711","username":"madisonc","password":"madisoncpass","birthDate":"1998-3-7","image":"https://dummyjson.com/icon/madisonc/128","bloodGroup":"B-","height":189.28,"weight":56.96,"eyeColor":"Red","hair":{"color":"Gray","type":"Curly"},"ip":"85.34.1.204","address":{"address":"1892 Lincoln Street","city":"Philadelphia","state":"New Jersey","stateCode":"NJ","postalCode":"62091","coordinates":{"lat":52.993694,"lng":160.486892},"country":"United States"},"macAddress":"13:b0:d0:23:4d:26","university":"University of Pennsylvania","bank":{"cardExpire":"09/27","cardNumber":"5551259848327064","cardType":"Mastercard","currency":"EUR","iban":"ES3893300143587765232049"},"company":{"department":"Engineering","name":"Mayer - Smitham","title":"Chief Technology Officer","address":{"address":"1438 Main Street","city":"San Diego","state":"Delaware","stateCode":"DE","postalCode":"63144","coordinates":{"lat":1.629613,"lng":23.232982},"country":"United States"}},"ein":"716-166","ssn":"457-258-950","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":22,"firstName":"Elijah","lastName":"Stewart","maidenName":"","age":34,"gender":"male","email":"elijah.stewart@x.dummyjson.com","phone":"+44 468-357-7872","username":"elijahs","password":"elijahspass","birthDate":"1991-10-22","image":"https://dummyjson.com/icon/elijahs/128","bloodGroup":"A-","height":195.33,"weight":81.64,"eyeColor":"Blue","hair":{"color":"Purple","type":"Straight"},"ip":"23.87.135.62","address":{"address":"1701 Eighth Street","city":"Columbus","state":"Illinois","stateCode":"IL","postalCode":"31585","coordinates":{"lat":-54.833799,"lng":-174.504027},"country":"United States"},"macAddress":"75:17:c6:35:fc:6d","university":"Georgetown University","bank":{"cardExpire":"05/28","cardNumber":"3648138556543460","cardType":"Diners Club International","currency":"EUR","iban":"DE82018985741195770313"},"company":{"department":"Legal","name":"Langworth Group","title":"Business Analyst","address":{"address":"155 Ninth Street","city":"Washington","state":"South Dakota","stateCode":"SD","postalCode":"19039","coordinates":{"lat":61.279254,"lng":-12.607767},"country":"United States"}},"ein":"520-394","ssn":"287-380-801","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":23,"firstName":"Chloe","lastName":"Morales","maidenName":"","age":40,"gender":"female","email":"chloe.morales@x.dummyjson.com","phone":"+92 468-541-7133","username":"chloem","password":"chloempass","birthDate":"1985-4-21","image":"https://dummyjson.com/icon/chloem/128","bloodGroup":"O+","height":185.07,"weight":63.97,"eyeColor":"Brown","hair":{"color":"Red","type":"Kinky"},"ip":"66.78.20.21","address":{"address":"401 Fourth Street","city":"Dallas","state":"New Jersey","stateCode":"NJ","postalCode":"54972","coordinates":{"lat":-30.190759,"lng":-58.705979},"country":"United States"},"macAddress":"fc:f:29:e1:37:b8","university":"Syracuse University","bank":{"cardExpire":"09/30","cardNumber":"347036238254235","cardType":"American Express","currency":"CNY","iban":"DE77762461851744284392"},"company":{"department":"Sales","name":"Grady LLC","title":"Database Administrator","address":{"address":"269 Third Street","city":"Houston","state":"North Carolina","stateCode":"NC","postalCode":"10385","coordinates":{"lat":40.098115,"lng":-1.762972},"country":"United States"}},"ein":"913-597","ssn":"938-883-163","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":24,"firstName":"Mateo","lastName":"Nguyen","maidenName":"","age":31,"gender":"male","email":"mateo.nguyen@x.dummyjson.com","phone":"+1 341-597-6694","username":"mateon","password":"mateonpass","birthDate":"1994-6-2","image":"https://dummyjson.com/icon/mateon/128","bloodGroup":"O+","height":174.29,"weight":59.98,"eyeColor":"Red","hair":{"color":"Purple","type":"Wavy"},"ip":"192.57.144.7","address":{"address":"1578 Fourth Street","city":"Columbus","state":"Missouri","stateCode":"MO","postalCode":"20673","coordinates":{"lat":-32.828675,"lng":-82.557354},"country":"United States"},"macAddress":"a7:26:10:7a:36:29","university":"Columbia University","bank":{"cardExpire":"12/29","cardNumber":"4021840414995098","cardType":"Visa","currency":"CAD","iban":"DE43275561962007561223"},"company":{"department":"Accounting","name":"Spinka LLC","title":"Business Analyst","address":{"address":"1967 Jefferson Street","city":"Dallas","state":"Louisiana","stateCode":"LA","postalCode":"78527","coordinates":{"lat":75.982676,"lng":164.459743},"country":"United States"}},"ein":"229-249","ssn":"416-877-230","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":25,"firstName":"Harper","lastName":"Kelly","maidenName":"Evans","age":28,"gender":"female","email":"harper.kelly@x.dummyjson.com","phone":"+92 518-863-2863","username":"harpere","password":"harperepass","birthDate":"1997-3-3","image":"https://dummyjson.com/icon/harpere/128","bloodGroup":"AB-","height":184.32,"weight":81.69,"eyeColor":"Amber","hair":{"color":"Red","type":"Curly"},"ip":"174.111.61.162","address":{"address":"1591 Adams Street","city":"Philadelphia","state":"New York","stateCode":"NY","postalCode":"69521","coordinates":{"lat":-26.832913,"lng":-75.445017},"country":"United States"},"macAddress":"b:ff:33:67:94:e4","university":"Boston College","bank":{"cardExpire":"06/27","cardNumber":"4488823564436432","cardType":"Visa","currency":"EUR","iban":"ES5874149276753342261515"},"company":{"department":"Legal","name":"Leffler, Rolfson and Becker","title":"Business Development Manager","address":{"address":"16 Maple Street","city":"Austin","state":"North Carolina","stateCode":"NC","postalCode":"68274","coordinates":{"lat":-15.423746,"lng":149.298887},"country":"United States"}},"ein":"592-557","ssn":"209-544-548","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":26,"firstName":"Evelyn","lastName":"Gonzalez","maidenName":"","age":36,"gender":"female","email":"evelyn.gonzalez@x.dummyjson.com","phone":"+61 708-508-4638","username":"evelyng","password":"evelyngpass","birthDate":"1989-2-5","image":"https://dummyjson.com/icon/evelyng/128","bloodGroup":"O+","height":168.94,"weight":58.47,"eyeColor":"Red","hair":{"color":"Black","type":"Wavy"},"ip":"42.52.74.232","address":{"address":"1065 Lincoln Street","city":"Dallas","state":"Maine","stateCode":"ME","postalCode":"84898","coordinates":{"lat":67.768359,"lng":71.268643},"country":"United States"},"macAddress":"89:5e:5a:2a:72:42","university":"Washington University in St. Louis","bank":{"cardExpire":"08/28","cardNumber":"6011735364912274","cardType":"Discover","currency":"CAD","iban":"DE27147353096476220032"},"company":{"department":"Accounting","name":"Tromp, Gaylord and Weber","title":"Project Manager","address":{"address":"584 Ninth Street","city":"Jacksonville","state":"Wisconsin","stateCode":"WI","postalCode":"45633","coordinates":{"lat":26.014021,"lng":40.572436},"country":"United States"}},"ein":"569-275","ssn":"487-680-127","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":27,"firstName":"Daniel","lastName":"Cook","maidenName":"","age":42,"gender":"male","email":"daniel.cook@x.dummyjson.com","phone":"+44 254-761-6843","username":"danielc","password":"danielcpass","birthDate":"1983-12-25","image":"https://dummyjson.com/icon/danielc/128","bloodGroup":"AB+","height":186.21,"weight":83.72,"eyeColor":"Brown","hair":{"color":"Blonde","type":"Curly"},"ip":"1.61.73.142","address":{"address":"1163 Pine Street","city":"Los Angeles","state":"Nevada","stateCode":"NV","postalCode":"58781","coordinates":{"lat":-3.456681,"lng":-134.937482},"country":"United States"},"macAddress":"6e:73:dc:3a:85:10","university":"Columbia University","bank":{"cardExpire":"05/29","cardNumber":"5485409595328150","cardType":"Mastercard","currency":"NZD","iban":"DE71341603969952506034"},"company":{"department":"Support","name":"Morissette, Baumbach and Auer","title":"Legal Counsel","address":{"address":"938 Fifth Street","city":"San Francisco","state":"South Dakota","stateCode":"SD","postalCode":"45305","coordinates":{"lat":21.323588,"lng":-83.531427},"country":"United States"}},"ein":"585-905","ssn":"645-515-583","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:97.0) Gecko/20100101 Firefox/97.0","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":28,"firstName":"Lily","lastName":"Lee","maidenName":"Brown","age":30,"gender":"female","email":"lily.lee@x.dummyjson.com","phone":"+1 808-757-9867","username":"lilyb","password":"lilybpass","birthDate":"1995-12-3","image":"https://dummyjson.com/icon/lilyb/128","bloodGroup":"AB-","height":181.42,"weight":51.49,"eyeColor":"Gray","hair":{"color":"Purple","type":"Straight"},"ip":"67.184.255.96","address":{"address":"1946 Oak Street","city":"Phoenix","state":"Massachusetts","stateCode":"MA","postalCode":"41540","coordinates":{"lat":-9.87059,"lng":-72.336845},"country":"United States"},"macAddress":"18:b6:c7:a:50:3f","university":"Johns Hopkins University","bank":{"cardExpire":"12/28","cardNumber":"5551782139834613","cardType":"Mastercard","currency":"CAD","iban":"DE49484285539189712621"},"company":{"department":"Product Management","name":"Cremin Inc","title":"Quality Assurance Engineer","address":{"address":"1735 Cedar Street","city":"Phoenix","state":"Wyoming","stateCode":"WY","postalCode":"85797","coordinates":{"lat":72.231441,"lng":-158.147245},"country":"United States"}},"ein":"229-776","ssn":"358-185-671","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Edge/97.0.1072.76 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":29,"firstName":"Henry","lastName":"Hill","maidenName":"","age":39,"gender":"male","email":"henry.hill@x.dummyjson.com","phone":"+1 240-833-4680","username":"henryh","password":"henryhpass","birthDate":"1986-8-19","image":"https://dummyjson.com/icon/henryh/128","bloodGroup":"O-","height":180.25,"weight":95.84,"eyeColor":"Gray","hair":{"color":"Black","type":"Straight"},"ip":"194.43.55.202","address":{"address":"1837 Maple Street","city":"Indianapolis","state":"Delaware","stateCode":"DE","postalCode":"81783","coordinates":{"lat":35.498256,"lng":154.088476},"country":"United States"},"macAddress":"fa:c3:1b:21:5f:44","university":"University of Illinois--Urbana-Champaign","bank":{"cardExpire":"11/29","cardNumber":"3625097026040498","cardType":"Diners Club International","currency":"EUR","iban":"DE08820336197191865470"},"company":{"department":"Services","name":"Gerlach, Funk and Schoen","title":"Sales Manager","address":{"address":"1651 Lincoln Street","city":"San Francisco","state":"West Virginia","stateCode":"WV","postalCode":"61805","coordinates":{"lat":-59.936335,"lng":-12.405368},"country":"United States"}},"ein":"118-957","ssn":"925-686-100","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":30,"firstName":"Addison","lastName":"Wright","maidenName":"","age":33,"gender":"female","email":"addison.wright@x.dummyjson.com","phone":"+1 514-384-3300","username":"addisonw","password":"addisonwpass","birthDate":"1992-1-3","image":"https://dummyjson.com/icon/addisonw/128","bloodGroup":"B+","height":179.32,"weight":76.93,"eyeColor":"Brown","hair":{"color":"Blonde","type":"Straight"},"ip":"11.35.69.81","address":{"address":"568 Tenth Street","city":"San Francisco","state":"Montana","stateCode":"MT","postalCode":"54698","coordinates":{"lat":20.946052,"lng":100.228822},"country":"United States"},"macAddress":"fb:0:94:21:16:c","university":"Syracuse University","bank":{"cardExpire":"06/28","cardNumber":"5274971895809762","cardType":"Mastercard","currency":"PKR","iban":"DE91480955939051635497"},"company":{"department":"Services","name":"Kreiger Inc","title":"Human Resources Manager","address":{"address":"1173 Eighth Street","city":"San Diego","state":"Michigan","stateCode":"MI","postalCode":"85777","coordinates":{"lat":65.324413,"lng":87.142893},"country":"United States"}},"ein":"415-286","ssn":"804-492-390","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"}],"total":208,"skip":0,"limit":30}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 2 | 0 | 0 |
| Total | 3 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Authenticates a user with username and password, returning an access token for subsequent authenticated requests.
## Method & Endpoint
- **Method**: `POST`
- **Endpoint**: `https://dummyjson.com/auth/login`
## Authentication
- **Required**: No (this endpoint provides authentication)
## Parameters
### Request Body (JSON)
```json
{
"username": "emilys",
"password": "emilyspass"
}
```
**Required Fields**:
- `username` - User's username
- `password` - User's password
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
{
"id": 1,
"username": "emilys",
"email": "emily.johnson@x.dummyjson.com",
"firstName": "Emily",
"lastName": "Johnson",
"gender": "female",
"image": "https://dummyjson.com/icon/emilys/128",
"accessToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
"refreshToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."
}
```
## Tests Included
- Validates response status code is 200
- Verifies access token is present
- Stores token in environment variable `eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc2OTk2NDc5MX0.3W-gD3oxKuMoEVC_ZILbZsE2n66DWZhtJGckyUS699c`
- Checks user details are returned
| Header Name | Header Value |
|---|---|
| Content-Type | application/json |
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc2OTk2NDc5MX0.3W-gD3oxKuMoEVC_ZILbZsE2n66DWZhtJGckyUS699c |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 5b63cb47-68b8-4d44-8537-01d1692db205 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 83 |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc2OTk2Mjk5MX0.Lj9nWLp2oNsvJH3yshjHjJE7lhuVp0g8wjs1ru5l0hA; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc3MjU1MzE5MX0.ag444jYthA_pkQrLkpGgh1QKllIc85htgvZvlFTM3Aw |
{
"username": "emilys",
"password": "emilyspass",
"expiresInMins": 30
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:18 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 94 |
| x-ratelimit-reset | 1769961200 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| Set-Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTgsImV4cCI6MTc2OTk2Mjk5OH0.V8kkzsuC9MW2rdwtBwxYgmfMedoXHl8ePJdLeoUEkBo; Max-Age=1800; Path=/; Expires=Sun, 01 Feb 2026 16:23:18 GMT; HttpOnly; Secure |
| Set-Cookie | refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTgsImV4cCI6MTc3MjU1MzE5OH0.32uUizEfQYoPFr2h9z3h0vO8Fsdmf9fpsw1aGQxWHVM; Max-Age=1800; Path=/; Expires=Sun, 01 Feb 2026 16:23:18 GMT; HttpOnly; Secure |
| etag | W/"3a2-b3qKt6R9cMCPH8ZQUNj0QStPgQM" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=OSYnOmycBzRdO0GCPTK9L2q1SHS5Q93vTSNBSb5cSOY1hi23ZsQtElb4uFgb0ZtD8yhwtp5rLK18Z8kkaAOGYOq%2B0IejcAgA%2FfNHbd8%3D"}]} |
| Content-Encoding | br |
| CF-RAY | 9c729ef299342891-AMM |
{"accessToken":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTgsImV4cCI6MTc2OTk2Mjk5OH0.V8kkzsuC9MW2rdwtBwxYgmfMedoXHl8ePJdLeoUEkBo","refreshToken":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTgsImV4cCI6MTc3MjU1MzE5OH0.32uUizEfQYoPFr2h9z3h0vO8Fsdmf9fpsw1aGQxWHVM","id":1,"username":"emilys","email":"emily.johnson@x.dummyjson.com","firstName":"Emily","lastName":"Johnson","gender":"female","image":"https://dummyjson.com/icon/emilys/128"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 2 | 0 | 0 |
| Total | 3 | 0 | 0 |
| Test Name | Assertion Error |
|---|
| Header Name | Header Value |
|---|---|
| Content-Type | application/json |
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc2OTk2NDc5MX0.3W-gD3oxKuMoEVC_ZILbZsE2n66DWZhtJGckyUS699c |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 5ad64f6c-9ac0-4b05-bf1c-b231649d28e5 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 82 |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTgsImV4cCI6MTc2OTk2Mjk5OH0.V8kkzsuC9MW2rdwtBwxYgmfMedoXHl8ePJdLeoUEkBo; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTgsImV4cCI6MTc3MjU1MzE5OH0.32uUizEfQYoPFr2h9z3h0vO8Fsdmf9fpsw1aGQxWHVM |
{
"username": "anood",
"password": "emilyspass",
"expiresInMins": 30
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:18 GMT |
| Content-Type | application/json; charset=utf-8 |
| Content-Length | 33 |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 89 |
| x-ratelimit-reset | 1769961203 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"21-dBEoW0UmTF+EGUMaprEp9/8zNNA" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=ywRVIalmG%2FCakgBLxlLafW0Qdqa4xyOCvQBs0te0WZoPde7wXoblr%2BcakApY5p0Ls3NNsihTmnMfp1DQDCwVvUmPJCQLPIuRSfUSuMA%3D"}]} |
| CF-RAY | 9c729ef44b192891-AMM |
{"message":"Invalid credentials"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Invalid credentials handled | 1 | 0 | 0 |
| Error message exists | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Retrieves the profile information of the currently authenticated user based on the provided access token.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/auth/me`
## Authentication
- **Required**: Yes
- **Type**: Bearer Token
- **Header**: `Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc2OTk2NDc5MX0.3W-gD3oxKuMoEVC_ZILbZsE2n66DWZhtJGckyUS699c`
## Parameters
- No parameters required
- Authentication token must be provided in Authorization header
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
{
"id": 1,
"firstName": "Emily",
"lastName": "Johnson",
"email": "emily.johnson@x.dummyjson.com",
"username": "emilys",
"age": 28,
"gender": "female",
"phone": "+81 965-431-3024",
"birthDate": "1996-5-30",
"image": "https://dummyjson.com/icon/emilys/128",
"address": {...},
"company": {...}
}
```
## Tests Included
- Validates response status code is 200
- Verifies authenticated user details are returned
- Checks all user profile fields are present
- Confirms token authentication is working
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc2OTk2NDc5MX0.3W-gD3oxKuMoEVC_ZILbZsE2n66DWZhtJGckyUS699c |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 1c78032f-578c-45de-9955-d8168025db7f |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTgsImV4cCI6MTc2OTk2Mjk5OH0.V8kkzsuC9MW2rdwtBwxYgmfMedoXHl8ePJdLeoUEkBo; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTgsImV4cCI6MTc3MjU1MzE5OH0.32uUizEfQYoPFr2h9z3h0vO8Fsdmf9fpsw1aGQxWHVM |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:19 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 99 |
| x-ratelimit-reset | 1769961209 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"58f-CoL/KoXlW3x1PtqQr3wqPsXj6DE" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=%2FmszBVOSTzc9jG5FyDNaESIk%2BwpNBfo806mh%2FDUgyHXlQ5OI0CBQmcYAtumHgY%2BjrTttHwaOAt68u%2BS57myAI8A4YIZErPk%2BcaxP7m4%3D"}]} |
| CF-RAY | 9c729ef5dcdd2891-AMM |
{"id":1,"firstName":"Emily","lastName":"Johnson","maidenName":"Smith","age":29,"gender":"female","email":"emily.johnson@x.dummyjson.com","phone":"+81 965-431-3024","username":"emilys","password":"emilyspass","birthDate":"1996-5-30","image":"https://dummyjson.com/icon/emilys/128","bloodGroup":"O-","height":193.24,"weight":63.16,"eyeColor":"Green","hair":{"color":"Brown","type":"Curly"},"ip":"42.48.100.32","address":{"address":"626 Main Street","city":"Phoenix","state":"Mississippi","stateCode":"MS","postalCode":"29112","coordinates":{"lat":-77.16213,"lng":-92.084824},"country":"United States"},"macAddress":"47:fa:41:18:ec:eb","university":"University of Wisconsin--Madison","bank":{"cardExpire":"05/28","cardNumber":"3693233511855044","cardType":"Diners Club International","currency":"GBP","iban":"GB74MH2UZLR9TRPHYNU8F8"},"company":{"department":"Engineering","name":"Dooley, Kozey and Cronin","title":"Sales Manager","address":{"address":"263 Tenth Street","city":"San Francisco","state":"Wisconsin","stateCode":"WI","postalCode":"37657","coordinates":{"lat":71.814525,"lng":-161.150263},"country":"United States"}},"ein":"977-175","ssn":"900-590-289","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"admin"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 2 | 0 | 0 |
| Total | 3 | 0 | 0 |
| Test Name | Assertion Error |
|---|
| Header Name | Header Value |
|---|---|
| Authorization | Bearer 123456 |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | da18514c-4ef8-4a8d-a5cf-88c443d4ae36 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTgsImV4cCI6MTc2OTk2Mjk5OH0.V8kkzsuC9MW2rdwtBwxYgmfMedoXHl8ePJdLeoUEkBo; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTgsImV4cCI6MTc3MjU1MzE5OH0.32uUizEfQYoPFr2h9z3h0vO8Fsdmf9fpsw1aGQxWHVM |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:19 GMT |
| Content-Type | application/json; charset=utf-8 |
| Content-Length | 36 |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 88 |
| x-ratelimit-reset | 1769961203 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| Set-Cookie | accessToken=; Path=/; Expires=Thu, 01 Jan 1970 00:00:00 GMT |
| Set-Cookie | refreshToken=; Path=/; Expires=Thu, 01 Jan 1970 00:00:00 GMT |
| etag | W/"24-xqucZbgfFI1MEKHBW2jR/IjHNdY" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=Kj6mH7hF61vz0pnF7vXq5VKUioAGY5SXJQ7apPamKABNMs5U8WUsg69F%2F7fXNGweLm9eohmgYEZQ7R4B%2BVIh3hnHm7fpY77mDVd2rh0%3D"}]} |
| CF-RAY | 9c729ef78ec62891-AMM |
{"message":"Invalid/Expired Token!"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Invalid token | 1 | 0 | 0 |
| Error message exists | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Retrieves detailed information about a specific user by their unique identifier.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/users/4`
## Authentication
- **Required**: No
- This is a public endpoint that doesn't require authentication
## Parameters
### Path Variables
- `userId` (required) - The unique identifier of the user to retrieve
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
{
"id": 1,
"firstName": "Emily",
"lastName": "Johnson",
"email": "emily.johnson@x.dummyjson.com",
"username": "emilys",
"age": 28,
"gender": "female",
"phone": "+81 965-431-3024",
"birthDate": "1996-5-30",
"image": "https://dummyjson.com/icon/emilys/128",
"address": {
"address": "626 Main Street",
"city": "Phoenix",
"state": "Mississippi",
"country": "United States",
"postalCode": "29112"
},
"company": {
"name": "Dooley and Sons",
"title": "Sales Manager"
}
}
```
## Tests Included
- Validates response status code is 200
- Verifies user ID matches request
- Checks all user profile fields are present
- Confirms address and company objects structure
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc2OTk2NDc5MX0.3W-gD3oxKuMoEVC_ZILbZsE2n66DWZhtJGckyUS699c |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | d17d3fa0-a2b6-4eff-b3d2-f0097467ac51 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:19 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 99 |
| x-ratelimit-reset | 1769961210 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"577-Z3kifpL3J1jktd9eGnQ28K8KFtI" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=u4ys2kfjwQ7VOY1oRJQogwesJm%2BFnb0TgTC5SsJ44axBpBrZzh1p1bmRObJIbe2cQjQLl5KsIOi9ySKlQnZcX2edNFq3bJ28sSK%2B6Mc%3D"}]} |
| CF-RAY | 9c729ef9183b2891-AMM |
{"id":4,"firstName":"James","lastName":"Davis","maidenName":"","age":46,"gender":"male","email":"james.davis@x.dummyjson.com","phone":"+49 614-958-9364","username":"jamesd","password":"jamesdpass","birthDate":"1979-5-4","image":"https://dummyjson.com/icon/jamesd/128","bloodGroup":"AB+","height":193.31,"weight":62.1,"eyeColor":"Amber","hair":{"color":"Blonde","type":"Straight"},"ip":"101.118.131.66","address":{"address":"238 Jefferson Street","city":"Seattle","state":"Pennsylvania","stateCode":"PA","postalCode":"68354","coordinates":{"lat":16.782513,"lng":-139.34723},"country":"United States"},"macAddress":"10:7d:df:1f:97:58","university":"University of Southern California","bank":{"cardExpire":"07/30","cardNumber":"5303440212268149","cardType":"Mastercard","currency":"CAD","iban":"DE01300746880579852937"},"company":{"department":"Support","name":"Pagac and Sons","title":"Research Analyst","address":{"address":"1622 Lincoln Street","city":"Fort Worth","state":"Pennsylvania","stateCode":"PA","postalCode":"27768","coordinates":{"lat":54.91193,"lng":-79.498328},"country":"United States"}},"ein":"904-810","ssn":"116-951-314","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"admin"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Required fields exist | 1 | 0 | 0 |
| Total | 3 | 0 | 0 |
| Test Name | Assertion Error |
|---|
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc2OTk2NDc5MX0.3W-gD3oxKuMoEVC_ZILbZsE2n66DWZhtJGckyUS699c |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | f198c4ba-b7fe-407f-b73a-34f08eb840d5 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:20 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 98 |
| x-ratelimit-reset | 1769961210 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"2b-ZhauGgbHQlYpTPzEWJLt9JF5uhE" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=%2BvsxESbE6tBZT%2F1amB8LXnbnjlfFeupkHGQkJMuVs1PbmnzE%2FEDHhckpD2Hp7mppdKF%2FhLwhC%2FA1vnrkHTyipL1uoVGREajVA7ysoko%3D"}]} |
| Content-Encoding | br |
| CF-RAY | 9c729efb2a1a2891-AMM |
{"message":"User with id '9999' not found"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Invalid User ID should not succeed | 1 | 0 | 0 |
| Error message exists | 1 | 0 | 0 |
| BUG , Returned users for Invalid ID | 1 | 0 | 0 |
| Total | 3 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Searches for users based on a query string, returning all users that match the search criteria.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/users/search?q=John`
## Authentication
- **Required**: No
- This is a public endpoint that doesn't require authentication
## Parameters
### Query Parameters
- `q` (required) - The search query string to find matching users (searches across name, username, email, etc.)
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
{
"users": [
{
"id": 1,
"firstName": "John",
"lastName": "Doe",
"email": "john.doe@x.dummyjson.com",
"username": "johnd",
"age": 30,
...
}
],
"total": 5,
"skip": 0,
"limit": 30
}
```
## Tests Included
- Validates response status code is 200
- Verifies users array exists
- Checks pagination metadata (total, skip, limit)
- Confirms search results match query criteria
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc2OTk2NDc5MX0.3W-gD3oxKuMoEVC_ZILbZsE2n66DWZhtJGckyUS699c |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | e6f4cc59-f8ae-4316-8be6-e90fc9fa2691 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:20 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 97 |
| x-ratelimit-reset | 1769961210 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"1092-DffrDnJxyiPiDr/F4xPdXlAPNCM" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=7aWjFXbZ5jDN4V8khIjFR%2B5pOhcpzOYg1IHxpP5yWJh5TMpXoNmjQawK8W4Miixns1%2BFAbxPGyLEtrUc0Uv7fJsnNrNGNe1NnRzUCY8%3D"}]} |
| CF-RAY | 9c729efcebd42891-AMM |
{"users":[{"id":1,"firstName":"Emily","lastName":"Johnson","maidenName":"Smith","age":29,"gender":"female","email":"emily.johnson@x.dummyjson.com","phone":"+81 965-431-3024","username":"emilys","password":"emilyspass","birthDate":"1996-5-30","image":"https://dummyjson.com/icon/emilys/128","bloodGroup":"O-","height":193.24,"weight":63.16,"eyeColor":"Green","hair":{"color":"Brown","type":"Curly"},"ip":"42.48.100.32","address":{"address":"626 Main Street","city":"Phoenix","state":"Mississippi","stateCode":"MS","postalCode":"29112","coordinates":{"lat":-77.16213,"lng":-92.084824},"country":"United States"},"macAddress":"47:fa:41:18:ec:eb","university":"University of Wisconsin--Madison","bank":{"cardExpire":"05/28","cardNumber":"3693233511855044","cardType":"Diners Club International","currency":"GBP","iban":"GB74MH2UZLR9TRPHYNU8F8"},"company":{"department":"Engineering","name":"Dooley, Kozey and Cronin","title":"Sales Manager","address":{"address":"263 Tenth Street","city":"San Francisco","state":"Wisconsin","stateCode":"WI","postalCode":"37657","coordinates":{"lat":71.814525,"lng":-161.150263},"country":"United States"}},"ein":"977-175","ssn":"900-590-289","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"admin"},{"id":102,"firstName":"John","lastName":"Doe","maidenName":"","age":36,"gender":"male","email":"john.doe@x.dummyjson.com","phone":"+44 242-757-6754","username":"johnd","password":"johndpass","birthDate":"1989-2-20","image":"https://dummyjson.com/icon/johnd/128","bloodGroup":"B-","height":179.44,"weight":93.42,"eyeColor":"Brown","hair":{"color":"Blonde","type":"Wavy"},"ip":"1.250.48.36","address":{"address":"37 Second Street","city":"Fort Worth","state":"New York","stateCode":"NY","postalCode":"33991","coordinates":{"lat":-66.043758,"lng":-59.356632},"country":"United States"},"macAddress":"6d:ab:13:25:a0:10","university":"Brown University","bank":{"cardExpire":"04/30","cardNumber":"3654883476033545","cardType":"Diners Club International","currency":"GBP","iban":"GB50FILIYPYET62B22GD66"},"company":{"department":"Accounting","name":"Aufderhar - Cormier","title":"Business Analyst","address":{"address":"1095 Adams Street","city":"Washington","state":"Missouri","stateCode":"MO","postalCode":"43273","coordinates":{"lat":63.930802,"lng":88.782366},"country":"United States"}},"ein":"861-925","ssn":"824-760-922","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":104,"firstName":"Michael","lastName":"Johnson","maidenName":"","age":25,"gender":"male","email":"michael.johnson@x.dummyjson.com","phone":"+92 290-825-4767","username":"michaelj","password":"michaeljpass","birthDate":"2000-1-6","image":"https://dummyjson.com/icon/michaelj/128","bloodGroup":"A+","height":164.38,"weight":97.18,"eyeColor":"Red","hair":{"color":"White","type":"Curly"},"ip":"115.37.119.66","address":{"address":"1252 Washington Street","city":"Phoenix","state":"Maryland","stateCode":"MD","postalCode":"64002","coordinates":{"lat":-79.040825,"lng":100.576804},"country":"United States"},"macAddress":"29:bc:a7:64:58:48","university":"University of Miami","bank":{"cardExpire":"04/30","cardNumber":"5503135276268039","cardType":"Mastercard","currency":"INR","iban":"DE80210977585310104611"},"company":{"department":"Marketing","name":"Wisozk, Schamberger and Huels","title":"Systems Analyst","address":{"address":"378 Madison Street","city":"Columbus","state":"South Dakota","stateCode":"SD","postalCode":"34297","coordinates":{"lat":-74.566078,"lng":-90.962102},"country":"United States"}},"ein":"819-102","ssn":"924-462-933","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"}],"total":3,"skip":0,"limit":3}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Users array not empty | 1 | 0 | 0 |
| First user has id | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 4 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Filters users based on a specific field key-value pair, allowing precise user data filtering.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/users/filter?key=hair.color&value=Brown`
## Authentication
- **Required**: No
- This is a public endpoint that doesn't require authentication
## Parameters
### Query Parameters
- `key` (required) - The field path to filter by (supports nested fields with dot notation, e.g., `hair.color`, `address.city`)
- `value` (required) - The value to match for the specified key
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
{
"users": [
{
"id": 1,
"firstName": "Emily",
"lastName": "Johnson",
"hair": {
"color": "Brown",
"type": "Curly"
},
...
}
],
"total": 50,
"skip": 0,
"limit": 30
}
```
## Tests Included
- Validates response status code is 200
- Verifies all users match the filter criteria
- Checks filtered field contains expected value
- Confirms pagination metadata is present
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc2OTk2NDc5MX0.3W-gD3oxKuMoEVC_ZILbZsE2n66DWZhtJGckyUS699c |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | d9557ac5-0939-43c6-b74d-08f5ca078360 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:20 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 96 |
| x-ratelimit-reset | 1769961210 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"7caa-OItcDQBJ3m1BPDRUpluqCm9ogM0" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=ZEIzcwZwpVW8Wl%2Bm8NptEzkpJPZ1HWBnou5d%2Fzdmfq0%2F1%2Bf8BgL3QOv9UNlR%2Bj9sBb4oxekkbMfXF7l6sbGPvyPKAqfKLfVqowveVAo%3D"}]} |
| CF-RAY | 9c729efe9de32891-AMM |
{"users":[{"id":1,"firstName":"Emily","lastName":"Johnson","maidenName":"Smith","age":29,"gender":"female","email":"emily.johnson@x.dummyjson.com","phone":"+81 965-431-3024","username":"emilys","password":"emilyspass","birthDate":"1996-5-30","image":"https://dummyjson.com/icon/emilys/128","bloodGroup":"O-","height":193.24,"weight":63.16,"eyeColor":"Green","hair":{"color":"Brown","type":"Curly"},"ip":"42.48.100.32","address":{"address":"626 Main Street","city":"Phoenix","state":"Mississippi","stateCode":"MS","postalCode":"29112","coordinates":{"lat":-77.16213,"lng":-92.084824},"country":"United States"},"macAddress":"47:fa:41:18:ec:eb","university":"University of Wisconsin--Madison","bank":{"cardExpire":"05/28","cardNumber":"3693233511855044","cardType":"Diners Club International","currency":"GBP","iban":"GB74MH2UZLR9TRPHYNU8F8"},"company":{"department":"Engineering","name":"Dooley, Kozey and Cronin","title":"Sales Manager","address":{"address":"263 Tenth Street","city":"San Francisco","state":"Wisconsin","stateCode":"WI","postalCode":"37657","coordinates":{"lat":71.814525,"lng":-161.150263},"country":"United States"}},"ein":"977-175","ssn":"900-590-289","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"admin"},{"id":33,"firstName":"Carter","lastName":"Baker","maidenName":"","age":32,"gender":"male","email":"carter.baker@x.dummyjson.com","phone":"+49 787-512-9117","username":"carterb","password":"carterbpass","birthDate":"1993-4-19","image":"https://dummyjson.com/icon/carterb/128","bloodGroup":"A+","height":190.96,"weight":70.78,"eyeColor":"Green","hair":{"color":"Brown","type":"Straight"},"ip":"167.111.147.45","address":{"address":"625 Third Street","city":"Denver","state":"Oregon","stateCode":"OR","postalCode":"74622","coordinates":{"lat":-63.00584,"lng":76.189171},"country":"United States"},"macAddress":"35:0:ad:91:5f:f3","university":"Washington University in St. Louis","bank":{"cardExpire":"04/30","cardNumber":"5286984910566529","cardType":"Mastercard","currency":"AUD","iban":"DE50017878346071444444"},"company":{"department":"Product Management","name":"Luettgen and Sons","title":"Software Engineer","address":{"address":"127 Cedar Street","city":"Washington","state":"South Carolina","stateCode":"SC","postalCode":"17426","coordinates":{"lat":71.127142,"lng":174.470146},"country":"United States"}},"ein":"193-203","ssn":"927-818-529","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":51,"firstName":"Eli","lastName":"Bennett","maidenName":"","age":30,"gender":"male","email":"eli.bennett@x.dummyjson.com","phone":"+1 465-379-7226","username":"elib","password":"elibpass","birthDate":"1995-9-17","image":"https://dummyjson.com/icon/elib/128","bloodGroup":"B+","height":170.61,"weight":91.22,"eyeColor":"Gray","hair":{"color":"Brown","type":"Kinky"},"ip":"144.73.131.148","address":{"address":"1423 Main Street","city":"Jacksonville","state":"Idaho","stateCode":"ID","postalCode":"34271","coordinates":{"lat":-15.022759,"lng":58.392572},"country":"United States"},"macAddress":"f6:59:76:66:c0:85","university":"Boston University","bank":{"cardExpire":"04/28","cardNumber":"3644848905447957","cardType":"Diners Club International","currency":"GBP","iban":"GB4969YU8ZX5UYTERMTE5X"},"company":{"department":"Accounting","name":"Waters, Ankunding and Green","title":"Chief Operating Officer","address":{"address":"1536 Fourth Street","city":"Indianapolis","state":"Michigan","stateCode":"MI","postalCode":"77147","coordinates":{"lat":-49.858979,"lng":-21.940443},"country":"United States"}},"ein":"222-408","ssn":"216-126-647","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":54,"firstName":"Ava","lastName":"Harrison","maidenName":"","age":29,"gender":"female","email":"ava.harrison@x.dummyjson.com","phone":"+44 926-778-4653","username":"avah","password":"avahpass","birthDate":"1996-4-22","image":"https://dummyjson.com/icon/avah/128","bloodGroup":"O-","height":155.72,"weight":93.47,"eyeColor":"Hazel","hair":{"color":"Brown","type":"Curly"},"ip":"225.40.138.177","address":{"address":"1094 Adams Street","city":"San Antonio","state":"Vermont","stateCode":"VT","postalCode":"14336","coordinates":{"lat":-84.032892,"lng":-46.255902},"country":"United States"},"macAddress":"4e:2b:e4:33:7a:f8","university":"Harvard University","bank":{"cardExpire":"01/27","cardNumber":"3694482369735209","cardType":"Diners Club International","currency":"AUD","iban":"DE64412118002973670494"},"company":{"department":"Engineering","name":"Blanda - Jacobson","title":"Legal Counsel","address":{"address":"1374 Cedar Street","city":"Philadelphia","state":"Delaware","stateCode":"DE","postalCode":"21641","coordinates":{"lat":-56.564069,"lng":-134.42879},"country":"United States"}},"ein":"145-780","ssn":"621-536-422","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":59,"firstName":"Ethan","lastName":"Fletcher","maidenName":"","age":34,"gender":"male","email":"ethan.fletcher@x.dummyjson.com","phone":"+1 251-564-2643","username":"ethanf","password":"ethanfpass","birthDate":"1991-5-1","image":"https://dummyjson.com/icon/ethanf/128","bloodGroup":"AB-","height":183.99,"weight":83.98,"eyeColor":"Violet","hair":{"color":"Brown","type":"Curly"},"ip":"21.94.6.7","address":{"address":"789 Main Street","city":"Dallas","state":"Arkansas","stateCode":"AR","postalCode":"87924","coordinates":{"lat":29.411519,"lng":23.598322},"country":"United States"},"macAddress":"b2:fd:ca:1b:3b:a5","university":"Cornell University","bank":{"cardExpire":"02/27","cardNumber":"4440217612919449","cardType":"Visa","currency":"AUD","iban":"DE42359669771256255400"},"company":{"department":"Training","name":"Halvorson LLC","title":"Data Scientist","address":{"address":"258 Tenth Street","city":"Washington","state":"Texas","stateCode":"TX","postalCode":"10371","coordinates":{"lat":45.367618,"lng":-147.524292},"country":"United States"}},"ein":"610-786","ssn":"577-991-233","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":78,"firstName":"Eleanor","lastName":"Tyler","maidenName":"","age":31,"gender":"female","email":"eleanor.tyler@x.dummyjson.com","phone":"+1 232-621-9938","username":"eleanort","password":"eleanortpass","birthDate":"1994-10-26","image":"https://dummyjson.com/icon/eleanort/128","bloodGroup":"O-","height":195.85,"weight":70.03,"eyeColor":"Green","hair":{"color":"Brown","type":"Wavy"},"ip":"54.87.239.213","address":{"address":"439 Pine Street","city":"San Antonio","state":"New Hampshire","stateCode":"NH","postalCode":"64622","coordinates":{"lat":51.5965,"lng":47.479982},"country":"United States"},"macAddress":"df:94:e1:e7:3a:7","university":"Wake Forest University","bank":{"cardExpire":"03/30","cardNumber":"6282984352125703","cardType":"UnionPay","currency":"EUR","iban":"DE60851175428733331885"},"company":{"department":"Product Management","name":"Hilpert and Sons","title":"Web Developer","address":{"address":"580 Seventh Street","city":"Jacksonville","state":"Indiana","stateCode":"IN","postalCode":"57924","coordinates":{"lat":-3.475554,"lng":-138.094068},"country":"United States"}},"ein":"668-175","ssn":"688-176-797","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":83,"firstName":"Dylan","lastName":"Wells","maidenName":"","age":35,"gender":"male","email":"dylan.wells@x.dummyjson.com","phone":"+49 659-638-1106","username":"dylanw","password":"dylanwpass","birthDate":"1990-11-7","image":"https://dummyjson.com/icon/dylanw/128","bloodGroup":"O+","height":156.56,"weight":83.29,"eyeColor":"Amber","hair":{"color":"Brown","type":"Curly"},"ip":"254.112.7.252","address":{"address":"816 Sixth Street","city":"Philadelphia","state":"West Virginia","stateCode":"WV","postalCode":"54522","coordinates":{"lat":-82.623651,"lng":33.259567},"country":"United States"},"macAddress":"b7:c7:29:ff:e0:49","university":"William & Mary","bank":{"cardExpire":"07/29","cardNumber":"3597467382729154","cardType":"JCB","currency":"AUD","iban":"DE62128867521743907285"},"company":{"department":"Services","name":"Schmidt - Hyatt","title":"Support Specialist","address":{"address":"360 Sixth Street","city":"Seattle","state":"Florida","stateCode":"FL","postalCode":"16124","coordinates":{"lat":61.755934,"lng":-149.215844},"country":"United States"}},"ein":"560-210","ssn":"572-136-332","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":103,"firstName":"Emily","lastName":"Brown","maidenName":"Taylor","age":43,"gender":"female","email":"emily.brown@x.dummyjson.com","phone":"+61 875-999-8871","username":"emilyt","password":"emilytpass","birthDate":"1982-12-5","image":"https://dummyjson.com/icon/emilyt/128","bloodGroup":"AB-","height":181.96,"weight":89.65,"eyeColor":"Blue","hair":{"color":"Brown","type":"Kinky"},"ip":"41.156.197.109","address":{"address":"1962 Fourth Street","city":"Houston","state":"Hawaii","stateCode":"HI","postalCode":"67104","coordinates":{"lat":-64.336051,"lng":135.876737},"country":"United States"},"macAddress":"3b:9b:ee:cf:1f:de","university":"Georgetown University","bank":{"cardExpire":"09/30","cardNumber":"374970244492890","cardType":"American Express","currency":"INR","iban":"DE06646067555223276327"},"company":{"department":"Research and Development","name":"Pfannerstill Inc","title":"Data Analyst","address":{"address":"1998 Main Street","city":"Indianapolis","state":"Arizona","stateCode":"AZ","postalCode":"57190","coordinates":{"lat":-83.995771,"lng":127.669213},"country":"United States"}},"ein":"844-425","ssn":"119-906-830","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":105,"firstName":"Emma","lastName":"Wilson","maidenName":"Clark","age":32,"gender":"female","email":"emma.wilson@x.dummyjson.com","phone":"+49 933-975-3236","username":"emmac","password":"emmacpass","birthDate":"1993-6-2","image":"https://dummyjson.com/icon/emmac/128","bloodGroup":"O+","height":164.59,"weight":97.44,"eyeColor":"Gray","hair":{"color":"Brown","type":"Straight"},"ip":"23.240.162.228","address":{"address":"888 Lincoln Street","city":"New York","state":"Kansas","stateCode":"KS","postalCode":"85313","coordinates":{"lat":64.320835,"lng":-25.984113},"country":"United States"},"macAddress":"64:a6:72:4d:9e:79","university":"Tufts University","bank":{"cardExpire":"03/30","cardNumber":"6011728212195820","cardType":"Discover","currency":"CNY","iban":"DE03754619165111286589"},"company":{"department":"Sales","name":"Nienow - Fritsch","title":"Software Engineer","address":{"address":"1302 Adams Street","city":"San Francisco","state":"Alaska","stateCode":"AK","postalCode":"39028","coordinates":{"lat":-78.519188,"lng":-144.614396},"country":"United States"}},"ein":"108-918","ssn":"690-817-970","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":112,"firstName":"Alexander","lastName":"Hernandez","maidenName":"","age":42,"gender":"male","email":"alexander.hernandez@x.dummyjson.com","phone":"+49 410-245-8608","username":"alexanderh","password":"alexanderhpass","birthDate":"1983-7-4","image":"https://dummyjson.com/icon/alexanderh/128","bloodGroup":"B-","height":172.2,"weight":82.3,"eyeColor":"Blue","hair":{"color":"Brown","type":"Kinky"},"ip":"145.104.53.16","address":{"address":"329 Second Street","city":"Dallas","state":"Idaho","stateCode":"ID","postalCode":"49314","coordinates":{"lat":14.101714,"lng":-148.130379},"country":"United States"},"macAddress":"4c:83:2a:82:f:c6","university":"University of Florida","bank":{"cardExpire":"11/30","cardNumber":"3511024200905426","cardType":"JCB","currency":"JPY","iban":"DE42863681794561041810"},"company":{"department":"Sales","name":"Gibson LLC","title":"Chief Technology Officer","address":{"address":"176 Main Street","city":"Seattle","state":"Pennsylvania","stateCode":"PA","postalCode":"61558","coordinates":{"lat":25.794587,"lng":101.693435},"country":"United States"}},"ein":"355-181","ssn":"583-406-155","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":117,"firstName":"Amelia","lastName":"Perez","maidenName":"Gonzalez","age":44,"gender":"female","email":"amelia.perez@x.dummyjson.com","phone":"+49 751-988-9521","username":"ameliag","password":"ameliagpass","birthDate":"1981-1-29","image":"https://dummyjson.com/icon/ameliag/128","bloodGroup":"B+","height":186.66,"weight":80.38,"eyeColor":"Brown","hair":{"color":"Brown","type":"Wavy"},"ip":"249.222.49.78","address":{"address":"25 Elm Street","city":"New York","state":"New Hampshire","stateCode":"NH","postalCode":"88314","coordinates":{"lat":-55.895738,"lng":-117.829232},"country":"United States"},"macAddress":"1:64:41:63:ca:9e","university":"University of Michigan--Ann Arbor","bank":{"cardExpire":"05/30","cardNumber":"349189566293370","cardType":"American Express","currency":"EUR","iban":"IT88GLSNDVETYALH79DUSDQWYBNMA"},"company":{"department":"Services","name":"Swift - Stamm","title":"Chief Executive Officer","address":{"address":"1390 Pine Street","city":"Philadelphia","state":"Maine","stateCode":"ME","postalCode":"21632","coordinates":{"lat":-19.615702,"lng":42.511462},"country":"United States"}},"ein":"836-867","ssn":"769-496-865","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":121,"firstName":"Ava","lastName":"Harris","maidenName":"","age":30,"gender":"female","email":"ava.harris@x.dummyjson.com","phone":"+44 422-227-6412","username":"avahx","password":"avahxpass","birthDate":"1995-8-26","image":"https://dummyjson.com/icon/avahx/128","bloodGroup":"A-","height":199.36,"weight":63.3,"eyeColor":"Blue","hair":{"color":"Brown","type":"Wavy"},"ip":"23.127.175.229","address":{"address":"518 Elm Street","city":"San Antonio","state":"Florida","stateCode":"FL","postalCode":"35171","coordinates":{"lat":74.817644,"lng":15.72801},"country":"United States"},"macAddress":"4:c3:e9:35:23:2a","university":"University of Florida","bank":{"cardExpire":"02/30","cardNumber":"3622583668551978","cardType":"Diners Club International","currency":"JPY","iban":"DE72545287965967528178"},"company":{"department":"Marketing","name":"Lebsack Inc","title":"Engineer","address":{"address":"1495 First Street","city":"Columbus","state":"Alaska","stateCode":"AK","postalCode":"64989","coordinates":{"lat":18.943383,"lng":-136.717336},"country":"United States"}},"ein":"715-161","ssn":"906-771-261","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":124,"firstName":"Noah","lastName":"Lewis","maidenName":"","age":40,"gender":"male","email":"noah.lewis@x.dummyjson.com","phone":"+61 396-867-4229","username":"noahl","password":"noahlpass","birthDate":"1985-6-9","image":"https://dummyjson.com/icon/noahl/128","bloodGroup":"AB-","height":168.71,"weight":86.15,"eyeColor":"Green","hair":{"color":"Brown","type":"Curly"},"ip":"210.106.253.177","address":{"address":"41 Fifth Street","city":"Denver","state":"Alabama","stateCode":"AL","postalCode":"42655","coordinates":{"lat":62.7964,"lng":-10.481867},"country":"United States"},"macAddress":"e3:f5:6d:86:ed:bd","university":"Yale University","bank":{"cardExpire":"01/30","cardNumber":"3553297247069104","cardType":"JCB","currency":"EUR","iban":"FR89F3HKAI2Q8MPK3JKJ43YQIT7"},"company":{"department":"Research and Development","name":"Satterfield, Shields and Littel","title":"Project Manager","address":{"address":"596 Third Street","city":"Seattle","state":"Minnesota","stateCode":"MN","postalCode":"30859","coordinates":{"lat":-9.449962,"lng":124.358321},"country":"United States"}},"ein":"898-556","ssn":"711-488-725","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":131,"firstName":"Jackson","lastName":"Morales","maidenName":"","age":34,"gender":"male","email":"jackson.morales@x.dummyjson.com","phone":"+1 685-561-9154","username":"jacksonm","password":"jacksonmpass","birthDate":"1991-9-18","image":"https://dummyjson.com/icon/jacksonm/128","bloodGroup":"AB-","height":154.3,"weight":60.62,"eyeColor":"Violet","hair":{"color":"Brown","type":"Curly"},"ip":"10.39.106.47","address":{"address":"1549 Main Street","city":"Austin","state":"Arkansas","stateCode":"AR","postalCode":"23595","coordinates":{"lat":89.624584,"lng":-107.671084},"country":"United States"},"macAddress":"e7:a2:59:b:23:32","university":"Pepperdine University","bank":{"cardExpire":"08/27","cardNumber":"4668916290124603","cardType":"Visa","currency":"AUD","iban":"DE89790012694823772619"},"company":{"department":"Human Resources","name":"Kshlerin, Mitchell and Wilderman","title":"Legal Counsel","address":{"address":"694 Second Street","city":"San Diego","state":"New Hampshire","stateCode":"NH","postalCode":"64598","coordinates":{"lat":-67.250988,"lng":158.241684},"country":"United States"}},"ein":"106-784","ssn":"439-618-286","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":135,"firstName":"Elijah","lastName":"Cruz","maidenName":"","age":30,"gender":"male","email":"elijah.cruz@x.dummyjson.com","phone":"+1 613-532-2557","username":"elijahc","password":"elijahcpass","birthDate":"1995-1-23","image":"https://dummyjson.com/icon/elijahc/128","bloodGroup":"O+","height":195.29,"weight":78.61,"eyeColor":"Gray","hair":{"color":"Brown","type":"Wavy"},"ip":"178.45.211.139","address":{"address":"583 Second Street","city":"Seattle","state":"North Dakota","stateCode":"ND","postalCode":"26483","coordinates":{"lat":19.529428,"lng":165.798169},"country":"United States"},"macAddress":"11:be:4d:5a:92:7d","university":"University of California--Berkeley","bank":{"cardExpire":"05/27","cardNumber":"5195573329944110","cardType":"Mastercard","currency":"CAD","iban":"DE67341880174568825698"},"company":{"department":"Accounting","name":"Stokes - Harber","title":"Marketing Manager","address":{"address":"1462 Jefferson Street","city":"Seattle","state":"New Jersey","stateCode":"NJ","postalCode":"81308","coordinates":{"lat":69.208929,"lng":-159.871286},"country":"United States"}},"ein":"115-488","ssn":"577-965-784","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":136,"firstName":"Madison","lastName":"Stewart","maidenName":"Kelly","age":37,"gender":"female","email":"madison.stewart@x.dummyjson.com","phone":"+61 455-829-5048","username":"madisonk","password":"madisonkpass","birthDate":"1988-5-15","image":"https://dummyjson.com/icon/madisonk/128","bloodGroup":"B-","height":199.81,"weight":76.36,"eyeColor":"Blue","hair":{"color":"Brown","type":"Kinky"},"ip":"110.144.81.89","address":{"address":"823 Sixth Street","city":"Indianapolis","state":"Arkansas","stateCode":"AR","postalCode":"66305","coordinates":{"lat":-26.509663,"lng":-127.744698},"country":"United States"},"macAddress":"4e:15:99:a0:22:33","university":"Northwestern University","bank":{"cardExpire":"06/27","cardNumber":"5362208194454054","cardType":"Mastercard","currency":"PKR","iban":"DE03605844090278785940"},"company":{"department":"Training","name":"Schowalter Group","title":"Data Scientist","address":{"address":"344 Main Street","city":"Washington","state":"Colorado","stateCode":"CO","postalCode":"64474","coordinates":{"lat":-33.940327,"lng":-144.800578},"country":"United States"}},"ein":"246-581","ssn":"223-424-188","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":147,"firstName":"Henry","lastName":"Turner","maidenName":"","age":45,"gender":"male","email":"henry.turner@x.dummyjson.com","phone":"+1 374-470-5082","username":"henryt","password":"henrytpass","birthDate":"1980-6-12","image":"https://dummyjson.com/icon/henryt/128","bloodGroup":"AB-","height":151.17,"weight":62.94,"eyeColor":"Amber","hair":{"color":"Brown","type":"Straight"},"ip":"96.193.117.130","address":{"address":"201 Sixth Street","city":"Philadelphia","state":"Ohio","stateCode":"OH","postalCode":"41914","coordinates":{"lat":-26.432988,"lng":79.850071},"country":"United States"},"macAddress":"69:dd:33:c0:84:9e","university":"University of Florida","bank":{"cardExpire":"10/30","cardNumber":"371905945311588","cardType":"American Express","currency":"GBP","iban":"GB8253KW72S9PYJOKIXEU7"},"company":{"department":"Legal","name":"Dickens - Beahan","title":"Technical Support Engineer","address":{"address":"1392 Fifth Street","city":"Chicago","state":"Wyoming","stateCode":"WY","postalCode":"76234","coordinates":{"lat":9.204767,"lng":-80.70479},"country":"United States"}},"ein":"884-620","ssn":"555-829-690","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":151,"firstName":"Nathan","lastName":"Reed","maidenName":"","age":29,"gender":"male","email":"nathan.reed@x.dummyjson.com","phone":"+1 448-642-4577","username":"nathanr","password":"nathanrpass","birthDate":"1996-12-26","image":"https://dummyjson.com/icon/nathanr/128","bloodGroup":"A+","height":186.76,"weight":52.22,"eyeColor":"Amber","hair":{"color":"Brown","type":"Curly"},"ip":"216.178.112.125","address":{"address":"82 Cedar Street","city":"Los Angeles","state":"Utah","stateCode":"UT","postalCode":"73204","coordinates":{"lat":66.874876,"lng":-47.038037},"country":"United States"},"macAddress":"1b:a1:e1:cd:a2:39","university":"University of Pennsylvania","bank":{"cardExpire":"04/27","cardNumber":"6249029371283109","cardType":"UnionPay","currency":"USD","iban":"DE15115435946113309166"},"company":{"department":"Training","name":"Stark Group","title":"Chief Operating Officer","address":{"address":"1075 Adams Street","city":"Philadelphia","state":"North Carolina","stateCode":"NC","postalCode":"28999","coordinates":{"lat":55.767346,"lng":-60.983019},"country":"United States"}},"ein":"647-669","ssn":"355-857-184","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":156,"firstName":"Mila","lastName":"Hernandez","maidenName":"Mitchell","age":34,"gender":"female","email":"mila.hernandez@x.dummyjson.com","phone":"+49 893-855-2896","username":"milam","password":"milampass","birthDate":"1991-8-18","image":"https://dummyjson.com/icon/milam/128","bloodGroup":"B-","height":174.13,"weight":80.97,"eyeColor":"Hazel","hair":{"color":"Brown","type":"Kinky"},"ip":"109.219.231.82","address":{"address":"1454 Oak Street","city":"Seattle","state":"New Mexico","stateCode":"NM","postalCode":"46438","coordinates":{"lat":89.661297,"lng":163.24939},"country":"United States"},"macAddress":"69:8b:7e:5f:44:93","university":"University of Virginia","bank":{"cardExpire":"12/29","cardNumber":"4584709028598326","cardType":"Visa","currency":"EUR","iban":"NL07YI74AY8L48Z7OE"},"company":{"department":"Marketing","name":"Wisoky - Rowe","title":"Software Architect","address":{"address":"1281 Pine Street","city":"Austin","state":"Rhode Island","stateCode":"RI","postalCode":"66784","coordinates":{"lat":53.726642,"lng":102.912699},"country":"United States"}},"ein":"708-862","ssn":"549-233-319","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":166,"firstName":"Elena","lastName":"Long","maidenName":"Mitchell","age":43,"gender":"female","email":"elena.long@x.dummyjson.com","phone":"+91 697-839-3216","username":"elenam","password":"elenampass","birthDate":"1982-4-4","image":"https://dummyjson.com/icon/elenam/128","bloodGroup":"AB+","height":179.89,"weight":56.93,"eyeColor":"Hazel","hair":{"color":"Brown","type":"Kinky"},"ip":"252.247.244.14","address":{"address":"1883 Lincoln Street","city":"San Jose","state":"New York","stateCode":"NY","postalCode":"29766","coordinates":{"lat":-59.16639,"lng":-110.237583},"country":"United States"},"macAddress":"7f:a7:45:db:ae:69","university":"Tufts University","bank":{"cardExpire":"02/29","cardNumber":"5223503782631983","cardType":"Mastercard","currency":"GBP","iban":"GB291SKJY1I21ZAJIARKW4"},"company":{"department":"Research and Development","name":"Bruen and Sons","title":"Database Administrator","address":{"address":"985 Ninth Street","city":"New York","state":"Colorado","stateCode":"CO","postalCode":"36408","coordinates":{"lat":59.040431,"lng":-134.144154},"country":"United States"}},"ein":"457-165","ssn":"619-479-503","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":188,"firstName":"Aria","lastName":"Flores","maidenName":"Martin","age":26,"gender":"female","email":"aria.flores@x.dummyjson.com","phone":"+61 415-771-8232","username":"ariamx","password":"ariamxpass","birthDate":"1999-11-8","image":"https://dummyjson.com/icon/ariamx/128","bloodGroup":"O-","height":160.06,"weight":92.02,"eyeColor":"Amber","hair":{"color":"Brown","type":"Wavy"},"ip":"86.67.36.191","address":{"address":"492 Pine Street","city":"Indianapolis","state":"Tennessee","stateCode":"TN","postalCode":"71284","coordinates":{"lat":-88.3996,"lng":22.908268},"country":"United States"},"macAddress":"9d:d1:19:e7:45:26","university":"Columbia University","bank":{"cardExpire":"07/30","cardNumber":"3568996021436297","cardType":"JCB","currency":"AUD","iban":"DE53096479676200434539"},"company":{"department":"Sales","name":"Gibson LLC","title":"Sales Manager","address":{"address":"1728 Sixth Street","city":"Fort Worth","state":"Nebraska","stateCode":"NE","postalCode":"74809","coordinates":{"lat":51.558679,"lng":-85.819219},"country":"United States"}},"ein":"784-961","ssn":"132-677-684","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":203,"firstName":"Nova","lastName":"Cooper","maidenName":"Bell","age":32,"gender":"female","email":"nova.cooper@x.dummyjson.com","phone":"+49 292-569-8252","username":"novab","password":"novabpass","birthDate":"1993-6-16","image":"https://dummyjson.com/icon/novab/128","bloodGroup":"B-","height":155.62,"weight":60.62,"eyeColor":"Hazel","hair":{"color":"Brown","type":"Curly"},"ip":"143.240.135.160","address":{"address":"1687 Pine Street","city":"Los Angeles","state":"Nebraska","stateCode":"NE","postalCode":"49131","coordinates":{"lat":64.747296,"lng":148.357671},"country":"United States"},"macAddress":"e:ea:3e:f3:2d:90","university":"Dartmouth College","bank":{"cardExpire":"01/27","cardNumber":"4281297008337127","cardType":"Visa","currency":"CAD","iban":"DE21025127888819711543"},"company":{"department":"Marketing","name":"Schmidt - Hyatt","title":"Legal Counsel","address":{"address":"1970 Maple Street","city":"New York","state":"Georgia","stateCode":"GA","postalCode":"24324","coordinates":{"lat":-84.354097,"lng":-63.193683},"country":"United States"}},"ein":"249-364","ssn":"357-926-188","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:97.0) Gecko/20100101 Firefox/97.0","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":206,"firstName":"Elena","lastName":"Baker","maidenName":"","age":35,"gender":"female","email":"elena.baker@x.dummyjson.com","phone":"+49 978-346-6960","username":"elenab","password":"elenabpass","birthDate":"1990-3-16","image":"https://dummyjson.com/icon/elenab/128","bloodGroup":"O+","height":150.62,"weight":95.55,"eyeColor":"Brown","hair":{"color":"Brown","type":"Straight"},"ip":"85.35.8.29","address":{"address":"117 Maple Street","city":"San Francisco","state":"Tennessee","stateCode":"TN","postalCode":"40535","coordinates":{"lat":30.069731,"lng":-118.879243},"country":"United States"},"macAddress":"83:75:b2:b6:ca:8b","university":"Tufts University","bank":{"cardExpire":"01/30","cardNumber":"5437614839810348","cardType":"Mastercard","currency":"INR","iban":"DE24112202737130790320"},"company":{"department":"Engineering","name":"Heller LLC","title":"Project Manager","address":{"address":"139 Jefferson Street","city":"San Antonio","state":"Idaho","stateCode":"ID","postalCode":"50546","coordinates":{"lat":1.356153,"lng":175.897893},"country":"United States"}},"ein":"509-840","ssn":"640-201-673","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"}],"total":23,"skip":0,"limit":23}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Retrieves a paginated list of users with specific fields selected, demonstrating pagination and field filtering capabilities.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/users?limit=5&skip=10&select=firstName,age`
## Authentication
- **Required**: No
- This is a public endpoint that doesn't require authentication
## Parameters
### Query Parameters
- `limit` (optional) - Number of users to return (default: 30)
- `skip` (optional) - Number of users to skip for pagination (default: 0)
- `select` (optional) - Comma-separated list of fields to include in response
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
{
"users": [
{
"id": 11,
"firstName": "John",
"age": 30
}
],
"total": 208,
"skip": 10,
"limit": 5
}
```
## Tests Included
- Validates response status code is 200
- Verifies correct number of users returned (limit)
- Checks pagination offset (skip)
- Confirms only selected fields are present in response
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc2OTk2NDc5MX0.3W-gD3oxKuMoEVC_ZILbZsE2n66DWZhtJGckyUS699c |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 2eaedc44-cd89-4bcd-8573-64f6b6921c42 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:20 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 87 |
| x-ratelimit-reset | 1769961203 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"f0-c9aLGWPNjhOdE9zS5MuqtOmC4iE" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=qXZAGgKsKZ1MF2PMaLLh1InhqGYw4eQzEe6e6j%2B1Fiu50cwmsR8zx1TusaCqyTKwx5rAtqYmD3C8E5zue4Fb8RYnfdxUy1Be1xofwgs%3D"}]} |
| Content-Encoding | br |
| CF-RAY | 9c729f006fe72891-AMM |
{"users":[{"id":11,"firstName":"Liam","age":30},{"id":12,"firstName":"Mia","age":25},{"id":13,"firstName":"Noah","age":41},{"id":14,"firstName":"Charlotte","age":37},{"id":15,"firstName":"William","age":33}],"total":208,"skip":10,"limit":5}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Retrieves all users sorted by a specific field in ascending or descending order.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/users?sortBy=firstName&order=asc`
## Authentication
- **Required**: No
- This is a public endpoint that doesn't require authentication
## Parameters
### Query Parameters
- `sortBy` (optional) - Field name to sort by (e.g., firstName, lastName, age, email)
- `order` (optional) - Sort order: `asc` (ascending) or `desc` (descending)
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
{
"users": [
{
"id": 1,
"firstName": "Aaron",
"lastName": "Smith",
"age": 25,
...
}
],
"total": 208,
"skip": 0,
"limit": 30
}
```
## Tests Included
- Validates response status code is 200
- Verifies users array is sorted correctly
- Checks sort order matches requested order (asc/desc)
- Confirms all user fields are present
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc2OTk2NDc5MX0.3W-gD3oxKuMoEVC_ZILbZsE2n66DWZhtJGckyUS699c |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 2e665564-9d85-4166-ae57-fc551ed554ea |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:21 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 95 |
| x-ratelimit-reset | 1769961210 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"a337-zsejjB8Q1xUzsEelxEwDQWBnWxk" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=06TP6n9jKkbDfIIN5GEGEmZMkL1NziyWvfAOE9Q1r%2FR64%2FJgn6w%2FI0m2eFX2ViS8UQXzsmUnp2HAD%2F8zhLP%2FYojsZtDVYJ%2B0sL94YAY%3D"}]} |
| CF-RAY | 9c729f0219b22891-AMM |
{"users":[{"id":84,"firstName":"Aaliyah","lastName":"Hanson","maidenName":"","age":29,"gender":"female","email":"aaliyah.hanson@x.dummyjson.com","phone":"+1 275-501-1119","username":"aaliyahh","password":"aaliyahhpass","birthDate":"1996-3-20","image":"https://dummyjson.com/icon/aaliyahh/128","bloodGroup":"B+","height":164.5,"weight":92.03,"eyeColor":"Blue","hair":{"color":"Gray","type":"Wavy"},"ip":"51.180.201.49","address":{"address":"790 Eighth Street","city":"Philadelphia","state":"North Dakota","stateCode":"ND","postalCode":"51438","coordinates":{"lat":15.832722,"lng":-148.237795},"country":"United States"},"macAddress":"89:50:ac:7e:d0:b6","university":"Cornell University","bank":{"cardExpire":"02/28","cardNumber":"6011926454334632","cardType":"Discover","currency":"CAD","iban":"DE02970928927762628941"},"company":{"department":"Accounting","name":"Marvin Inc","title":"Quality Assurance Engineer","address":{"address":"747 Ninth Street","city":"San Francisco","state":"North Carolina","stateCode":"NC","postalCode":"68238","coordinates":{"lat":-53.992111,"lng":-32.617357},"country":"United States"}},"ein":"709-477","ssn":"453-478-272","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":176,"firstName":"Aaliyah","lastName":"Martinez","maidenName":"Adams","age":29,"gender":"female","email":"aaliyah.martinez@x.dummyjson.com","phone":"+91 862-924-5336","username":"aaliyaha","password":"aaliyahapass","birthDate":"1996-2-2","image":"https://dummyjson.com/icon/aaliyaha/128","bloodGroup":"B+","height":177.05,"weight":68.62,"eyeColor":"Green","hair":{"color":"Blonde","type":"Curly"},"ip":"164.70.78.194","address":{"address":"935 Fifth Street","city":"New York","state":"West Virginia","stateCode":"WV","postalCode":"60165","coordinates":{"lat":2.456241,"lng":-122.373016},"country":"United States"},"macAddress":"c:a3:46:aa:98:7c","university":"Georgetown University","bank":{"cardExpire":"04/29","cardNumber":"5587285781475675","cardType":"Mastercard","currency":"CNY","iban":"DE44094986173554781705"},"company":{"department":"Support","name":"Ankunding, Little and Flatley","title":"Web Developer","address":{"address":"624 Adams Street","city":"Jacksonville","state":"Nebraska","stateCode":"NE","postalCode":"72753","coordinates":{"lat":56.509799,"lng":-4.674365},"country":"United States"}},"ein":"286-236","ssn":"195-119-185","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":157,"firstName":"Aaron","lastName":"Cook","maidenName":"","age":28,"gender":"male","email":"aaron.cook@x.dummyjson.com","phone":"+81 362-539-6973","username":"aaronc","password":"aaroncpass","birthDate":"1997-1-26","image":"https://dummyjson.com/icon/aaronc/128","bloodGroup":"AB+","height":165.6,"weight":61.17,"eyeColor":"Green","hair":{"color":"Blue","type":"Curly"},"ip":"71.248.65.203","address":{"address":"169 First Street","city":"Phoenix","state":"Wyoming","stateCode":"WY","postalCode":"52331","coordinates":{"lat":-6.538887,"lng":-58.475605},"country":"United States"},"macAddress":"9e:3f:8b:b:83:af","university":"University of Pennsylvania","bank":{"cardExpire":"03/29","cardNumber":"6011771715186854","cardType":"Discover","currency":"AUD","iban":"DE28971190963043337518"},"company":{"department":"Support","name":"Leffler, Rolfson and Becker","title":"Support Specialist","address":{"address":"380 Maple Street","city":"San Antonio","state":"Michigan","stateCode":"MI","postalCode":"44238","coordinates":{"lat":-31.851481,"lng":-63.253251},"country":"United States"}},"ein":"862-277","ssn":"270-351-584","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":19,"firstName":"Abigail","lastName":"Rivera","maidenName":"","age":29,"gender":"female","email":"abigail.rivera@x.dummyjson.com","phone":"+91 228-363-7806","username":"abigailr","password":"abigailrpass","birthDate":"1996-10-11","image":"https://dummyjson.com/icon/abigailr/128","bloodGroup":"B+","height":186.39,"weight":74.61,"eyeColor":"Violet","hair":{"color":"Blue","type":"Kinky"},"ip":"19.183.240.94","address":{"address":"996 Oak Street","city":"Chicago","state":"New Mexico","stateCode":"NM","postalCode":"11407","coordinates":{"lat":44.321308,"lng":-3.723903},"country":"United States"},"macAddress":"1d:a6:58:2a:e5:e4","university":"California Institute of Technology (Caltech)","bank":{"cardExpire":"01/27","cardNumber":"6011399019022417","cardType":"Discover","currency":"EUR","iban":"IT11QP2B5J81QM1FBX029VI5DD68O"},"company":{"department":"Human Resources","name":"Prohaska - Thiel","title":"Business Analyst","address":{"address":"1402 Adams Street","city":"Austin","state":"Wisconsin","stateCode":"WI","postalCode":"51456","coordinates":{"lat":25.672938,"lng":-76.54967},"country":"United States"}},"ein":"173-637","ssn":"655-823-929","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Edge/97.0.1072.76 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":30,"firstName":"Addison","lastName":"Wright","maidenName":"","age":33,"gender":"female","email":"addison.wright@x.dummyjson.com","phone":"+1 514-384-3300","username":"addisonw","password":"addisonwpass","birthDate":"1992-1-3","image":"https://dummyjson.com/icon/addisonw/128","bloodGroup":"B+","height":179.32,"weight":76.93,"eyeColor":"Brown","hair":{"color":"Blonde","type":"Straight"},"ip":"11.35.69.81","address":{"address":"568 Tenth Street","city":"San Francisco","state":"Montana","stateCode":"MT","postalCode":"54698","coordinates":{"lat":20.946052,"lng":100.228822},"country":"United States"},"macAddress":"fb:0:94:21:16:c","university":"Syracuse University","bank":{"cardExpire":"06/28","cardNumber":"5274971895809762","cardType":"Mastercard","currency":"PKR","iban":"DE91480955939051635497"},"company":{"department":"Services","name":"Kreiger Inc","title":"Human Resources Manager","address":{"address":"1173 Eighth Street","city":"San Diego","state":"Michigan","stateCode":"MI","postalCode":"85777","coordinates":{"lat":65.324413,"lng":87.142893},"country":"United States"}},"ein":"415-286","ssn":"804-492-390","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":164,"firstName":"Addison","lastName":"Ward","maidenName":"Foster","age":30,"gender":"female","email":"addison.ward@x.dummyjson.com","phone":"+1 248-875-1802","username":"addisonf","password":"addisonfpass","birthDate":"1995-8-23","image":"https://dummyjson.com/icon/addisonf/128","bloodGroup":"B-","height":160.22,"weight":75.72,"eyeColor":"Amber","hair":{"color":"Green","type":"Wavy"},"ip":"74.79.100.79","address":{"address":"1320 Fifth Street","city":"San Francisco","state":"South Carolina","stateCode":"SC","postalCode":"20149","coordinates":{"lat":-39.289112,"lng":46.108923},"country":"United States"},"macAddress":"e2:a5:4:ce:d7:60","university":"University of Illinois--Urbana-Champaign","bank":{"cardExpire":"12/30","cardNumber":"6011006235805000","cardType":"Discover","currency":"AUD","iban":"DE46038536418760965942"},"company":{"department":"Human Resources","name":"Kshlerin, Mitchell and Wilderman","title":"Product Manager","address":{"address":"1388 Tenth Street","city":"Charlotte","state":"New York","stateCode":"NY","postalCode":"63709","coordinates":{"lat":-5.900293,"lng":-10.987888},"country":"United States"}},"ein":"104-679","ssn":"801-271-313","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":200,"firstName":"Adrian","lastName":"Flores","maidenName":"","age":44,"gender":"male","email":"adrian.flores@x.dummyjson.com","phone":"+61 524-858-7351","username":"adrianf","password":"adrianfpass","birthDate":"1981-5-1","image":"https://dummyjson.com/icon/adrianf/128","bloodGroup":"O+","height":183.05,"weight":97.74,"eyeColor":"Green","hair":{"color":"Purple","type":"Wavy"},"ip":"86.244.141.158","address":{"address":"1395 Madison Street","city":"New York","state":"Delaware","stateCode":"DE","postalCode":"60163","coordinates":{"lat":48.779884,"lng":-84.200415},"country":"United States"},"macAddress":"e1:22:78:3f:9b:8c","university":"Stanford University","bank":{"cardExpire":"08/27","cardNumber":"347972688413683","cardType":"American Express","currency":"JPY","iban":"DE47803706973935779318"},"company":{"department":"Legal","name":"Rippin Inc","title":"Technical Support Engineer","address":{"address":"279 Madison Street","city":"San Antonio","state":"Louisiana","stateCode":"LA","postalCode":"25808","coordinates":{"lat":32.513584,"lng":-145.587193},"country":"United States"}},"ein":"965-469","ssn":"272-696-785","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":7,"firstName":"Alexander","lastName":"Jones","maidenName":"","age":39,"gender":"male","email":"alexander.jones@x.dummyjson.com","phone":"+61 260-824-4986","username":"alexanderj","password":"alexanderjpass","birthDate":"1986-10-20","image":"https://dummyjson.com/icon/alexanderj/128","bloodGroup":"AB-","height":153.89,"weight":77.42,"eyeColor":"Blue","hair":{"color":"White","type":"Straight"},"ip":"166.204.84.32","address":{"address":"664 Maple Street","city":"Indianapolis","state":"Delaware","stateCode":"DE","postalCode":"86684","coordinates":{"lat":35.289664,"lng":7.063255},"country":"United States"},"macAddress":"d2:64:58:2d:1c:46","university":"University of Illinois--Urbana-Champaign","bank":{"cardExpire":"12/29","cardNumber":"5189302549548693","cardType":"Mastercard","currency":"PKR","iban":"DE67517655968963441488"},"company":{"department":"Engineering","name":"Dickens - Beahan","title":"Web Developer","address":{"address":"996 Eighth Street","city":"Washington","state":"Kansas","stateCode":"KS","postalCode":"27858","coordinates":{"lat":-75.462366,"lng":-128.025697},"country":"United States"}},"ein":"638-127","ssn":"722-993-925","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"moderator"},{"id":112,"firstName":"Alexander","lastName":"Hernandez","maidenName":"","age":42,"gender":"male","email":"alexander.hernandez@x.dummyjson.com","phone":"+49 410-245-8608","username":"alexanderh","password":"alexanderhpass","birthDate":"1983-7-4","image":"https://dummyjson.com/icon/alexanderh/128","bloodGroup":"B-","height":172.2,"weight":82.3,"eyeColor":"Blue","hair":{"color":"Brown","type":"Kinky"},"ip":"145.104.53.16","address":{"address":"329 Second Street","city":"Dallas","state":"Idaho","stateCode":"ID","postalCode":"49314","coordinates":{"lat":14.101714,"lng":-148.130379},"country":"United States"},"macAddress":"4c:83:2a:82:f:c6","university":"University of Florida","bank":{"cardExpire":"11/30","cardNumber":"3511024200905426","cardType":"JCB","currency":"JPY","iban":"DE42863681794561041810"},"company":{"department":"Sales","name":"Gibson LLC","title":"Chief Technology Officer","address":{"address":"176 Main Street","city":"Seattle","state":"Pennsylvania","stateCode":"PA","postalCode":"61558","coordinates":{"lat":25.794587,"lng":101.693435},"country":"United States"}},"ein":"355-181","ssn":"583-406-155","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":101,"firstName":"Alice","lastName":"Smith","maidenName":"Johnson","age":29,"gender":"female","email":"alice.smith@x.dummyjson.com","phone":"+61 611-556-8989","username":"alicej","password":"alicejpass","birthDate":"1996-9-8","image":"https://dummyjson.com/icon/alicej/128","bloodGroup":"AB-","height":171.67,"weight":56.25,"eyeColor":"Red","hair":{"color":"Black","type":"Straight"},"ip":"223.157.14.11","address":{"address":"1631 Fourth Street","city":"Houston","state":"Arkansas","stateCode":"AR","postalCode":"81896","coordinates":{"lat":-16.873954,"lng":118.766256},"country":"United States"},"macAddress":"f3:c3:7b:69:2e:ab","university":"Wake Forest University","bank":{"cardExpire":"07/27","cardNumber":"5560162465503729","cardType":"Mastercard","currency":"CNY","iban":"DE11729875884000312491"},"company":{"department":"Marketing","name":"Jast - Nader","title":"Product Manager","address":{"address":"144 Eighth Street","city":"Austin","state":"Delaware","stateCode":"DE","postalCode":"55767","coordinates":{"lat":25.070859,"lng":15.203994},"country":"United States"}},"ein":"560-590","ssn":"479-900-352","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":117,"firstName":"Amelia","lastName":"Perez","maidenName":"Gonzalez","age":44,"gender":"female","email":"amelia.perez@x.dummyjson.com","phone":"+49 751-988-9521","username":"ameliag","password":"ameliagpass","birthDate":"1981-1-29","image":"https://dummyjson.com/icon/ameliag/128","bloodGroup":"B+","height":186.66,"weight":80.38,"eyeColor":"Brown","hair":{"color":"Brown","type":"Wavy"},"ip":"249.222.49.78","address":{"address":"25 Elm Street","city":"New York","state":"New Hampshire","stateCode":"NH","postalCode":"88314","coordinates":{"lat":-55.895738,"lng":-117.829232},"country":"United States"},"macAddress":"1:64:41:63:ca:9e","university":"University of Michigan--Ann Arbor","bank":{"cardExpire":"05/30","cardNumber":"349189566293370","cardType":"American Express","currency":"EUR","iban":"IT88GLSNDVETYALH79DUSDQWYBNMA"},"company":{"department":"Services","name":"Swift - Stamm","title":"Chief Executive Officer","address":{"address":"1390 Pine Street","city":"Philadelphia","state":"Maine","stateCode":"ME","postalCode":"21632","coordinates":{"lat":-19.615702,"lng":42.511462},"country":"United States"}},"ein":"836-867","ssn":"769-496-865","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":38,"firstName":"Aria","lastName":"Roberts","maidenName":"","age":27,"gender":"female","email":"aria.roberts@x.dummyjson.com","phone":"+61 411-514-5320","username":"ariar","password":"ariarpass","birthDate":"1998-3-25","image":"https://dummyjson.com/icon/ariar/128","bloodGroup":"A-","height":199.62,"weight":88.96,"eyeColor":"Gray","hair":{"color":"Blue","type":"Curly"},"ip":"208.86.10.37","address":{"address":"560 Fifth Street","city":"Seattle","state":"Rhode Island","stateCode":"RI","postalCode":"70664","coordinates":{"lat":36.157244,"lng":-29.219594},"country":"United States"},"macAddress":"7d:16:14:f8:d5:4","university":"Princeton University","bank":{"cardExpire":"10/28","cardNumber":"372071021242970","cardType":"American Express","currency":"CAD","iban":"DE33897381873184367321"},"company":{"department":"Legal","name":"Sanford and Sons","title":"Database Administrator","address":{"address":"69 Ninth Street","city":"Chicago","state":"Ohio","stateCode":"OH","postalCode":"77252","coordinates":{"lat":-1.902962,"lng":15.129767},"country":"United States"}},"ein":"329-619","ssn":"631-656-511","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":66,"firstName":"Aria","lastName":"Ferguson","maidenName":"","age":28,"gender":"female","email":"aria.ferguson@x.dummyjson.com","phone":"+44 434-406-8551","username":"ariaf","password":"ariafpass","birthDate":"1997-6-1","image":"https://dummyjson.com/icon/ariaf/128","bloodGroup":"B+","height":161.81,"weight":97.12,"eyeColor":"Blue","hair":{"color":"Blue","type":"Wavy"},"ip":"180.24.111.167","address":{"address":"1553 Sixth Street","city":"San Diego","state":"Wyoming","stateCode":"WY","postalCode":"59501","coordinates":{"lat":-66.092723,"lng":169.9952},"country":"United States"},"macAddress":"e2:71:6d:81:6:db","university":"Cornell University","bank":{"cardExpire":"02/28","cardNumber":"5222769696858258","cardType":"Mastercard","currency":"GBP","iban":"GB93YU9GTP9S3UJCULWWWL"},"company":{"department":"Legal","name":"Wisozk, Schamberger and Huels","title":"Project Manager","address":{"address":"807 Eighth Street","city":"Phoenix","state":"New Jersey","stateCode":"NJ","postalCode":"75765","coordinates":{"lat":46.824227,"lng":-51.392185},"country":"United States"}},"ein":"952-671","ssn":"705-592-753","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":142,"firstName":"Aria","lastName":"Parker","maidenName":"Miller","age":28,"gender":"female","email":"aria.parker@x.dummyjson.com","phone":"+91 762-847-6884","username":"ariam","password":"ariampass","birthDate":"1997-7-6","image":"https://dummyjson.com/icon/ariam/128","bloodGroup":"AB-","height":164.79,"weight":92.15,"eyeColor":"Blue","hair":{"color":"Green","type":"Curly"},"ip":"112.164.28.147","address":{"address":"1504 Tenth Street","city":"Phoenix","state":"Alabama","stateCode":"AL","postalCode":"16573","coordinates":{"lat":56.943768,"lng":41.212736},"country":"United States"},"macAddress":"c1:1:6a:d:86:c4","university":"Stanford University","bank":{"cardExpire":"09/27","cardNumber":"6011811630030256","cardType":"Discover","currency":"INR","iban":"DE52636264791885715598"},"company":{"department":"Human Resources","name":"Oberbrunner, Mosciski and Witting","title":"Software Architect","address":{"address":"1103 Maple Street","city":"Los Angeles","state":"Kentucky","stateCode":"KY","postalCode":"37560","coordinates":{"lat":-5.555558,"lng":-6.162671},"country":"United States"}},"ein":"385-819","ssn":"889-374-959","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":188,"firstName":"Aria","lastName":"Flores","maidenName":"Martin","age":26,"gender":"female","email":"aria.flores@x.dummyjson.com","phone":"+61 415-771-8232","username":"ariamx","password":"ariamxpass","birthDate":"1999-11-8","image":"https://dummyjson.com/icon/ariamx/128","bloodGroup":"O-","height":160.06,"weight":92.02,"eyeColor":"Amber","hair":{"color":"Brown","type":"Wavy"},"ip":"86.67.36.191","address":{"address":"492 Pine Street","city":"Indianapolis","state":"Tennessee","stateCode":"TN","postalCode":"71284","coordinates":{"lat":-88.3996,"lng":22.908268},"country":"United States"},"macAddress":"9d:d1:19:e7:45:26","university":"Columbia University","bank":{"cardExpire":"07/30","cardNumber":"3568996021436297","cardType":"JCB","currency":"AUD","iban":"DE53096479676200434539"},"company":{"department":"Sales","name":"Gibson LLC","title":"Sales Manager","address":{"address":"1728 Sixth Street","city":"Fort Worth","state":"Nebraska","stateCode":"NE","postalCode":"74809","coordinates":{"lat":51.558679,"lng":-85.819219},"country":"United States"}},"ein":"784-961","ssn":"132-677-684","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":172,"firstName":"Ariana","lastName":"Ross","maidenName":"Ward","age":37,"gender":"female","email":"ariana.ross@x.dummyjson.com","phone":"+61 393-553-7155","username":"arianaw","password":"arianawpass","birthDate":"1988-9-26","image":"https://dummyjson.com/icon/arianaw/128","bloodGroup":"O-","height":164.81,"weight":50.3,"eyeColor":"Red","hair":{"color":"White","type":"Kinky"},"ip":"47.190.165.179","address":{"address":"911 First Street","city":"Chicago","state":"West Virginia","stateCode":"WV","postalCode":"59220","coordinates":{"lat":-39.772203,"lng":-90.030002},"country":"United States"},"macAddress":"e5:32:fa:4f:da:f3","university":"University of Virginia","bank":{"cardExpire":"08/27","cardNumber":"5267990819173310","cardType":"Mastercard","currency":"JPY","iban":"DE05893634226384406776"},"company":{"department":"Accounting","name":"Stiedemann LLC","title":"Engineer","address":{"address":"429 Madison Street","city":"Denver","state":"New Mexico","stateCode":"NM","postalCode":"86999","coordinates":{"lat":33.005004,"lng":125.026624},"country":"United States"}},"ein":"873-983","ssn":"479-571-715","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":173,"firstName":"Asher","lastName":"Scott","maidenName":"","age":31,"gender":"male","email":"asher.scott@x.dummyjson.com","phone":"+81 469-421-7639","username":"ashers","password":"asherspass","birthDate":"1994-8-18","image":"https://dummyjson.com/icon/ashers/128","bloodGroup":"O+","height":169.56,"weight":54.08,"eyeColor":"Blue","hair":{"color":"Blue","type":"Curly"},"ip":"150.136.12.36","address":{"address":"666 Main Street","city":"Dallas","state":"Vermont","stateCode":"VT","postalCode":"82460","coordinates":{"lat":-80.129031,"lng":-63.515107},"country":"United States"},"macAddress":"7f:1d:2a:a2:c0:29","university":"Columbia University","bank":{"cardExpire":"01/30","cardNumber":"6011589163616085","cardType":"Discover","currency":"EUR","iban":"FR915U90IRZVO9NSF11TNJ90JOZ"},"company":{"department":"Human Resources","name":"Ullrich LLC","title":"Sales Manager","address":{"address":"1640 Oak Street","city":"Washington","state":"Oklahoma","stateCode":"OK","postalCode":"29026","coordinates":{"lat":-29.790789,"lng":-43.572763},"country":"United States"}},"ein":"172-363","ssn":"744-472-971","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.3 Safari/605.1.15","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":88,"firstName":"Aubrey","lastName":"Wagner","maidenName":"","age":31,"gender":"female","email":"aubrey.wagner@x.dummyjson.com","phone":"+81 285-568-5834","username":"aubreyw","password":"aubreywpass","birthDate":"1994-4-1","image":"https://dummyjson.com/icon/aubreyw/128","bloodGroup":"B+","height":168.73,"weight":79.86,"eyeColor":"Red","hair":{"color":"Blonde","type":"Wavy"},"ip":"203.204.53.60","address":{"address":"1147 Adams Street","city":"Phoenix","state":"North Carolina","stateCode":"NC","postalCode":"72711","coordinates":{"lat":-55.796433,"lng":-163.621876},"country":"United States"},"macAddress":"5a:18:55:d7:84:b9","university":"Vanderbilt University","bank":{"cardExpire":"10/29","cardNumber":"3692710040595549","cardType":"Diners Club International","currency":"CAD","iban":"DE48679614573470291447"},"company":{"department":"Sales","name":"Cassin Group","title":"Engineer","address":{"address":"1580 Tenth Street","city":"San Jose","state":"New Jersey","stateCode":"NJ","postalCode":"33398","coordinates":{"lat":35.508597,"lng":12.058887},"country":"United States"}},"ein":"990-866","ssn":"678-854-911","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":158,"firstName":"Aubrey","lastName":"Gutierrez","maidenName":"Baker","age":37,"gender":"female","email":"aubrey.gutierrez@x.dummyjson.com","phone":"+92 881-268-9845","username":"aubreyb","password":"aubreybpass","birthDate":"1988-2-19","image":"https://dummyjson.com/icon/aubreyb/128","bloodGroup":"AB-","height":186.45,"weight":69.83,"eyeColor":"Brown","hair":{"color":"Black","type":"Wavy"},"ip":"19.183.244.21","address":{"address":"1207 Oak Street","city":"Philadelphia","state":"Connecticut","stateCode":"CT","postalCode":"78892","coordinates":{"lat":-3.033666,"lng":-35.006014},"country":"United States"},"macAddress":"41:7:7b:23:29:e9","university":"University of Illinois--Urbana-Champaign","bank":{"cardExpire":"10/29","cardNumber":"6011134098408991","cardType":"Discover","currency":"AUD","iban":"DE95703770320430230584"},"company":{"department":"Human Resources","name":"Kreiger and Sons","title":"Developer","address":{"address":"1549 Second Street","city":"Columbus","state":"Arkansas","stateCode":"AR","postalCode":"62481","coordinates":{"lat":85.690418,"lng":-48.156251},"country":"United States"}},"ein":"821-613","ssn":"642-178-241","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":205,"firstName":"Aubrey","lastName":"Garcia","maidenName":"Gray","age":29,"gender":"female","email":"aubrey.garcia@x.dummyjson.com","phone":"+1 470-576-9130","username":"aubreyg","password":"aubreygpass","birthDate":"1996-11-5","image":"https://dummyjson.com/icon/aubreyg/128","bloodGroup":"AB+","height":192.28,"weight":85.89,"eyeColor":"Brown","hair":{"color":"Red","type":"Curly"},"ip":"0.163.108.147","address":{"address":"1221 Washington Street","city":"Los Angeles","state":"South Carolina","stateCode":"SC","postalCode":"78498","coordinates":{"lat":80.449539,"lng":-142.231527},"country":"United States"},"macAddress":"fb:ae:f9:15:24:90","university":"Pepperdine University","bank":{"cardExpire":"01/29","cardNumber":"4922036660101826","cardType":"Visa","currency":"NZD","iban":"DE91641615994664908034"},"company":{"department":"Legal","name":"Moore Inc","title":"Web Developer","address":{"address":"240 Third Street","city":"San Francisco","state":"Minnesota","stateCode":"MN","postalCode":"58649","coordinates":{"lat":3.609112,"lng":-35.397672},"country":"United States"}},"ein":"428-615","ssn":"344-154-808","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":96,"firstName":"Aurora","lastName":"Lawson","maidenName":"","age":27,"gender":"female","email":"aurora.lawson@x.dummyjson.com","phone":"+92 802-452-4192","username":"auroral","password":"auroralpass","birthDate":"1998-6-16","image":"https://dummyjson.com/icon/auroral/128","bloodGroup":"O+","height":174.28,"weight":88.18,"eyeColor":"Violet","hair":{"color":"Green","type":"Wavy"},"ip":"161.244.58.227","address":{"address":"1140 Adams Street","city":"Dallas","state":"Minnesota","stateCode":"MN","postalCode":"29004","coordinates":{"lat":83.417744,"lng":-7.933044},"country":"United States"},"macAddress":"34:95:bd:59:f4:39","university":"Boston University","bank":{"cardExpire":"07/29","cardNumber":"5480171454066942","cardType":"Mastercard","currency":"GBP","iban":"GB36C9TE2MIXX12X8IJMLG"},"company":{"department":"Product Management","name":"Hudson - Marquardt","title":"Chief Information Officer","address":{"address":"164 Fifth Street","city":"Indianapolis","state":"New York","stateCode":"NY","postalCode":"27958","coordinates":{"lat":89.270633,"lng":-72.618747},"country":"United States"}},"ein":"477-337","ssn":"191-532-292","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:97.0) Gecko/20100101 Firefox/97.0","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":148,"firstName":"Aurora","lastName":"Barnes","maidenName":"Gomez","age":30,"gender":"female","email":"aurora.barnes@x.dummyjson.com","phone":"+91 403-842-9683","username":"aurorag","password":"auroragpass","birthDate":"1995-12-15","image":"https://dummyjson.com/icon/aurorag/128","bloodGroup":"B+","height":185.79,"weight":53.66,"eyeColor":"Green","hair":{"color":"Red","type":"Curly"},"ip":"204.17.198.20","address":{"address":"1184 Adams Street","city":"New York","state":"Idaho","stateCode":"ID","postalCode":"19201","coordinates":{"lat":-20.67407,"lng":107.281052},"country":"United States"},"macAddress":"8c:49:78:e2:70:b2","university":"Georgetown University","bank":{"cardExpire":"04/28","cardNumber":"3623396287064565","cardType":"Diners Club International","currency":"GBP","iban":"GB87US86D82O10U5WQ3949"},"company":{"department":"Sales","name":"Cassin Group","title":"Chief Financial Officer","address":{"address":"478 Ninth Street","city":"Phoenix","state":"Connecticut","stateCode":"CT","postalCode":"39433","coordinates":{"lat":-19.046529,"lng":48.682257},"country":"United States"}},"ein":"470-547","ssn":"310-708-861","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Edge/97.0.1072.76 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":180,"firstName":"Aurora","lastName":"Rodriguez","maidenName":"Nelson","age":32,"gender":"female","email":"aurora.rodriguez@x.dummyjson.com","phone":"+61 393-225-2755","username":"auroran","password":"auroranpass","birthDate":"1993-11-23","image":"https://dummyjson.com/icon/auroran/128","bloodGroup":"AB+","height":164.92,"weight":65.48,"eyeColor":"Brown","hair":{"color":"Black","type":"Kinky"},"ip":"127.15.107.0","address":{"address":"1388 Madison Street","city":"Chicago","state":"Missouri","stateCode":"MO","postalCode":"60765","coordinates":{"lat":11.918088,"lng":-78.222936},"country":"United States"},"macAddress":"a0:81:60:92:50:e9","university":"University of Virginia","bank":{"cardExpire":"01/29","cardNumber":"5491854809080174","cardType":"Mastercard","currency":"NZD","iban":"DE91340258026412696778"},"company":{"department":"Research and Development","name":"Runolfsson, Kohler and Welch","title":"Software Engineer","address":{"address":"1277 Third Street","city":"Chicago","state":"North Dakota","stateCode":"ND","postalCode":"37621","coordinates":{"lat":35.160252,"lng":-141.580146},"country":"United States"}},"ein":"225-878","ssn":"879-917-944","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":81,"firstName":"Austin","lastName":"Hudson","maidenName":"","age":30,"gender":"male","email":"austin.hudson@x.dummyjson.com","phone":"+81 405-412-4250","username":"austinh","password":"austinhpass","birthDate":"1995-5-1","image":"https://dummyjson.com/icon/austinh/128","bloodGroup":"A-","height":189.77,"weight":66.83,"eyeColor":"Blue","hair":{"color":"Blue","type":"Straight"},"ip":"147.130.253.116","address":{"address":"1468 Eighth Street","city":"Los Angeles","state":"Maryland","stateCode":"MD","postalCode":"64305","coordinates":{"lat":-28.392471,"lng":-44.144328},"country":"United States"},"macAddress":"e:c0:3:62:e2:d0","university":"University of Michigan--Ann Arbor","bank":{"cardExpire":"02/30","cardNumber":"6011463292832932","cardType":"Discover","currency":"GBP","iban":"GB912RDPFF9YXGMYS7IO14"},"company":{"department":"Sales","name":"Okuneva Group","title":"Legal Counsel","address":{"address":"1323 Adams Street","city":"Jacksonville","state":"Mississippi","stateCode":"MS","postalCode":"18643","coordinates":{"lat":-47.033335,"lng":-68.205081},"country":"United States"}},"ein":"536-921","ssn":"731-202-997","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":92,"firstName":"Autumn","lastName":"Gomez","maidenName":"","age":27,"gender":"female","email":"autumn.gomez@x.dummyjson.com","phone":"+1 340-455-2897","username":"autumng","password":"autumngpass","birthDate":"1998-2-1","image":"https://dummyjson.com/icon/autumng/128","bloodGroup":"A-","height":182.61,"weight":92.77,"eyeColor":"Amber","hair":{"color":"Purple","type":"Wavy"},"ip":"104.233.56.225","address":{"address":"1585 Washington Street","city":"Dallas","state":"Illinois","stateCode":"IL","postalCode":"53203","coordinates":{"lat":27.443768,"lng":-176.861979},"country":"United States"},"macAddress":"75:e4:8e:ea:ce:9d","university":"University of Chicago","bank":{"cardExpire":"09/29","cardNumber":"3618727858757814","cardType":"Diners Club International","currency":"GBP","iban":"GB512IQ7OY0FUSMWYQ1ZY7"},"company":{"department":"Product Management","name":"Kuhlman LLC","title":"Business Analyst","address":{"address":"1818 Jefferson Street","city":"Philadelphia","state":"New York","stateCode":"NY","postalCode":"69388","coordinates":{"lat":-46.202815,"lng":163.840848},"country":"United States"}},"ein":"411-642","ssn":"165-661-612","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":8,"firstName":"Ava","lastName":"Taylor","maidenName":"","age":28,"gender":"female","email":"ava.taylor@x.dummyjson.com","phone":"+1 458-853-7877","username":"avat","password":"avatpass","birthDate":"1997-8-25","image":"https://dummyjson.com/icon/avat/128","bloodGroup":"AB-","height":168.47,"weight":57.08,"eyeColor":"Hazel","hair":{"color":"Red","type":"Kinky"},"ip":"150.73.197.233","address":{"address":"1197 First Street","city":"Fort Worth","state":"Rhode Island","stateCode":"RI","postalCode":"24771","coordinates":{"lat":-81.194833,"lng":-87.948158},"country":"United States"},"macAddress":"8d:2e:c2:d6:e7:a8","university":"University of Wisconsin--Madison","bank":{"cardExpire":"08/30","cardNumber":"5349974103330333","cardType":"Mastercard","currency":"EUR","iban":"FR94ZM2MMGL1EVYQE1ZLCVCFH83"},"company":{"department":"Marketing","name":"Nikolaus Inc","title":"Chief Executive Officer","address":{"address":"930 Lincoln Street","city":"Austin","state":"Colorado","stateCode":"CO","postalCode":"47592","coordinates":{"lat":87.970083,"lng":-42.769351},"country":"United States"}},"ein":"297-762","ssn":"257-419-109","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"moderator"},{"id":54,"firstName":"Ava","lastName":"Harrison","maidenName":"","age":29,"gender":"female","email":"ava.harrison@x.dummyjson.com","phone":"+44 926-778-4653","username":"avah","password":"avahpass","birthDate":"1996-4-22","image":"https://dummyjson.com/icon/avah/128","bloodGroup":"O-","height":155.72,"weight":93.47,"eyeColor":"Hazel","hair":{"color":"Brown","type":"Curly"},"ip":"225.40.138.177","address":{"address":"1094 Adams Street","city":"San Antonio","state":"Vermont","stateCode":"VT","postalCode":"14336","coordinates":{"lat":-84.032892,"lng":-46.255902},"country":"United States"},"macAddress":"4e:2b:e4:33:7a:f8","university":"Harvard University","bank":{"cardExpire":"01/27","cardNumber":"3694482369735209","cardType":"Diners Club International","currency":"AUD","iban":"DE64412118002973670494"},"company":{"department":"Engineering","name":"Blanda - Jacobson","title":"Legal Counsel","address":{"address":"1374 Cedar Street","city":"Philadelphia","state":"Delaware","stateCode":"DE","postalCode":"21641","coordinates":{"lat":-56.564069,"lng":-134.42879},"country":"United States"}},"ein":"145-780","ssn":"621-536-422","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":121,"firstName":"Ava","lastName":"Harris","maidenName":"","age":30,"gender":"female","email":"ava.harris@x.dummyjson.com","phone":"+44 422-227-6412","username":"avahx","password":"avahxpass","birthDate":"1995-8-26","image":"https://dummyjson.com/icon/avahx/128","bloodGroup":"A-","height":199.36,"weight":63.3,"eyeColor":"Blue","hair":{"color":"Brown","type":"Wavy"},"ip":"23.127.175.229","address":{"address":"518 Elm Street","city":"San Antonio","state":"Florida","stateCode":"FL","postalCode":"35171","coordinates":{"lat":74.817644,"lng":15.72801},"country":"United States"},"macAddress":"4:c3:e9:35:23:2a","university":"University of Florida","bank":{"cardExpire":"02/30","cardNumber":"3622583668551978","cardType":"Diners Club International","currency":"JPY","iban":"DE72545287965967528178"},"company":{"department":"Marketing","name":"Lebsack Inc","title":"Engineer","address":{"address":"1495 First Street","city":"Columbus","state":"Alaska","stateCode":"AK","postalCode":"64989","coordinates":{"lat":18.943383,"lng":-136.717336},"country":"United States"}},"ein":"715-161","ssn":"906-771-261","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":16,"firstName":"Avery","lastName":"Perez","maidenName":"","age":26,"gender":"female","email":"avery.perez@x.dummyjson.com","phone":"+61 731-431-3457","username":"averyp","password":"averyppass","birthDate":"1999-3-10","image":"https://dummyjson.com/icon/averyp/128","bloodGroup":"O-","height":172.68,"weight":93.9,"eyeColor":"Brown","hair":{"color":"Green","type":"Curly"},"ip":"131.217.4.214","address":{"address":"1125 First Street","city":"Columbus","state":"Iowa","stateCode":"IA","postalCode":"30973","coordinates":{"lat":12.789127,"lng":85.792598},"country":"United States"},"macAddress":"b3:ff:f3:c5:37:46","university":"Harvard University","bank":{"cardExpire":"08/29","cardNumber":"378024038311910","cardType":"American Express","currency":"USD","iban":"DE42403186906981858976"},"company":{"department":"Accounting","name":"Herzog Inc","title":"Database Administrator","address":{"address":"183 Maple Street","city":"New York","state":"Rhode Island","stateCode":"RI","postalCode":"45238","coordinates":{"lat":-53.318189,"lng":105.835271},"country":"United States"}},"ein":"348-493","ssn":"679-523-686","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":42,"firstName":"Avery","lastName":"Carter","maidenName":"","age":29,"gender":"female","email":"avery.carter@x.dummyjson.com","phone":"+44 254-655-6112","username":"averyc","password":"averycpass","birthDate":"1996-8-21","image":"https://dummyjson.com/icon/averyc/128","bloodGroup":"B-","height":179.92,"weight":59.37,"eyeColor":"Blue","hair":{"color":"Blue","type":"Straight"},"ip":"187.69.252.251","address":{"address":"1999 Seventh Street","city":"San Diego","state":"West Virginia","stateCode":"WV","postalCode":"13916","coordinates":{"lat":-59.303292,"lng":-87.318538},"country":"United States"},"macAddress":"f0:9a:ba:d9:48:d5","university":"Yale University","bank":{"cardExpire":"09/30","cardNumber":"3617114029166871","cardType":"Diners Club International","currency":"AUD","iban":"DE93605312121879910330"},"company":{"department":"Support","name":"Schmidt - Hyatt","title":"Sales Manager","address":{"address":"979 Tenth Street","city":"San Jose","state":"New York","stateCode":"NY","postalCode":"59824","coordinates":{"lat":-5.788002,"lng":88.846665},"country":"United States"}},"ein":"854-428","ssn":"902-510-406","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"}],"total":208,"skip":0,"limit":30}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Retrieves all shopping carts associated with a specific user by their user ID.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/users/4/carts`
## Authentication
- **Required**: No
- This is a public endpoint that doesn't require authentication
## Parameters
### Path Variables
- `userId` (required) - The unique identifier of the user whose carts to retrieve
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
{
"carts": [
{
"id": 1,
"products": [
{
"id": 1,
"title": "Product Name",
"price": 549,
"quantity": 2,
"total": 1098
}
],
"total": 1098,
"discountedTotal": 985,
"userId": 1,
"totalProducts": 1,
"totalQuantity": 2
}
],
"total": 3,
"skip": 0,
"limit": 30
}
```
## Tests Included
- Validates response status code is 200
- Verifies all carts belong to specified user
- Checks carts array structure
- Confirms cart totals and product details
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc2OTk2NDc5MX0.3W-gD3oxKuMoEVC_ZILbZsE2n66DWZhtJGckyUS699c |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 3a173c7f-62df-4697-bcce-86662d9c1cec |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:21 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 94 |
| x-ratelimit-reset | 1769961210 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"29-eepc+18O6U8zRJowEIQsenFBqoU" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=rQPVyL6p0NfYaKNf%2Bb3J%2B53nlPYwD1WGZex%2B9pg6ocOiXKgSzD0lg3x7zTd5ZbbOyf4KHmmb5IME8gSOL%2F8HO0ARXX1%2FJHgWtdmqxuY%3D"}]} |
| Content-Encoding | br |
| CF-RAY | 9c729f03db5e2891-AMM |
{"carts":[],"total":0,"skip":0,"limit":0}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Retrieves all posts created by a specific user by their user ID.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/users/4/posts`
## Authentication
- **Required**: No
- This is a public endpoint that doesn't require authentication
## Parameters
### Path Variables
- `userId` (required) - The unique identifier of the user whose posts to retrieve
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
{
"posts": [
{
"id": 1,
"title": "Post Title",
"body": "Post content...",
"tags": ["tag1", "tag2"],
"reactions": {
"likes": 10,
"dislikes": 2
},
"views": 150,
"userId": 1
}
],
"total": 5,
"skip": 0,
"limit": 30
}
```
## Tests Included
- Validates response status code is 200
- Verifies all posts belong to specified user
- Checks posts array structure
- Confirms post fields (title, body, tags, reactions)
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc2OTk2NDc5MX0.3W-gD3oxKuMoEVC_ZILbZsE2n66DWZhtJGckyUS699c |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 7ab42399-daa3-4449-b376-ea61790eda62 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:21 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 98 |
| x-ratelimit-reset | 1769961209 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"29-xwojxKfZ82dFWetrHAY/LBMOM7Y" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=Lk5%2BIXIVs5IMPYzZ2mmN20TjYlDzk2Lc2mBtdhtM36U2cbLNwje949i6nJwYEsWd6m8g09bwhQagy4lkA%2B%2B06EaMf%2B%2BgeLEKn9ZFrxQ%3D"}]} |
| Content-Encoding | br |
| CF-RAY | 9c729f056d312891-AMM |
{"posts":[],"total":0,"skip":0,"limit":0}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Creates a new user in the system with the provided user details.
## Method & Endpoint
- **Method**: `POST`
- **Endpoint**: `https://dummyjson.com/users/add`
## Authentication
- **Required**: No
- This is a public endpoint for demonstration purposes
## Parameters
### Request Body (JSON)
```json
{
"firstName": "John",
"lastName": "Doe",
"email": "john.doe@example.com",
"username": "johndoe",
"password": "password123",
"age": 30,
"gender": "male",
"phone": "+1-555-123-4567"
}
```
**Required Fields**:
- `firstName` - User's first name
- `lastName` - User's last name
- `email` - User's email address
- `username` - Unique username
- `password` - User's password
**Optional Fields**:
- `age`, `gender`, `phone`, `birthDate`, `address`, `company`
## Expected Response
- **Status Code**: `201 Created`
- **Response Structure**: Returns the created user with an assigned ID
```json
{
"id": 209,
"firstName": "John",
"lastName": "Doe",
"email": "john.doe@example.com",
"username": "johndoe",
...
}
```
## Tests Included
- Validates response status code is 201
- Verifies user ID is assigned
- Checks all submitted fields are returned
- Confirms user creation timestamp
| Header Name | Header Value |
|---|---|
| Content-Type | application/json |
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc2OTk2NDc5MX0.3W-gD3oxKuMoEVC_ZILbZsE2n66DWZhtJGckyUS699c |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 9c8ded06-cc51-4079-8c28-504e17fa2c6a |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 70 |
{
"firstName": "Muhammad",
"lastName": "Ovi",
"age": 250
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:21 GMT |
| Content-Type | application/json; charset=utf-8 |
| Content-Length | 769 |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 97 |
| x-ratelimit-reset | 1769961209 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"301-gKnmafr9l9B8nywhCgSqj6WVp/E" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=WxE4hfvYz7qIHxN46zRYEPgW%2BrijzFFjRVWajOCBJ7tTgWKsDfyV5Xz5IpMCDKzYf87NBCE2RgMgAD3gTGc6yitPP5GjcB71d3gb5I0%3D"}]} |
| CF-RAY | 9c729f071f1b2891-AMM |
{"id":209,"firstName":"Muhammad","lastName":"Ovi","maidenName":"","age":250,"gender":"","email":"","phone":"","username":"","password":"","birthDate":"","image":"","bloodGroup":"","height":null,"weight":null,"eyeColor":"","hair":{"color":"","type":""},"ip":"","address":{"address":"","city":"","state":"","stateCode":"","postalCode":"","coordinates":{"lat":null,"lng":null},"country":""},"macAddress":"","university":"","bank":{"cardExpire":"","cardNumber":"","cardType":"","currency":"","iban":""},"company":{"department":"","name":"","title":"","address":{"address":"","city":"","state":"","stateCode":"","postalCode":"","coordinates":{"lat":null,"lng":null},"country":""}},"ein":"","ssn":"","userAgent":"","crypto":{"coin":"","wallet":"","network":""},"role":"user"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 201 | 1 | 0 | 0 |
| firstName and lastName are correct | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 3 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Updates an existing user's information by their unique identifier.
## Method & Endpoint
- **Method**: `PUT`
- **Endpoint**: `https://dummyjson.com/users/4`
## Authentication
- **Required**: No
- This is a public endpoint for demonstration purposes
## Parameters
### Path Variables
- `userId` (required) - The unique identifier of the user to update
### Request Body (JSON)
```json
{
"firstName": "Jane",
"lastName": "Smith",
"email": "jane.smith@example.com",
"age": 32,
"phone": "+1-555-987-6543"
}
```
**Note**: Only include fields you want to update. Unspecified fields remain unchanged.
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**: Returns the updated user with all fields
```json
{
"id": 1,
"firstName": "Jane",
"lastName": "Smith",
"email": "jane.smith@example.com",
"age": 32,
"phone": "+1-555-987-6543",
...
}
```
## Tests Included
- Validates response status code is 200
- Verifies updated fields match request
- Checks user ID remains unchanged
- Confirms other fields are preserved
| Header Name | Header Value |
|---|---|
| Content-Type | application/json |
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc2OTk2NDc5MX0.3W-gD3oxKuMoEVC_ZILbZsE2n66DWZhtJGckyUS699c |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 5ebe3949-47fd-47b5-af0f-4de4e8fb163b |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 29 |
{
"lastName": "Owais"
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:22 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 96 |
| x-ratelimit-reset | 1769961207 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"577-AaYYXx8pEPShiBPHOWYz6WVHMB4" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=WKsbKW5C7EfBpnvCfWfOivImH%2FG0gOgjDZ709NsUz2qBr8q8q5n%2BJ49SFiDpmZtaRP7i0x1zVOSEQ6MPJaDb4OJ%2BkvfpFYWMk0en48k%3D"}]} |
| CF-RAY | 9c729f08d8a82891-AMM |
{"id":4,"firstName":"James","lastName":"Owais","maidenName":"","age":46,"gender":"male","email":"james.davis@x.dummyjson.com","phone":"+49 614-958-9364","username":"jamesd","password":"jamesdpass","birthDate":"1979-5-4","image":"https://dummyjson.com/icon/jamesd/128","bloodGroup":"AB+","height":193.31,"weight":62.1,"eyeColor":"Amber","hair":{"color":"Blonde","type":"Straight"},"ip":"101.118.131.66","address":{"address":"238 Jefferson Street","city":"Seattle","state":"Pennsylvania","stateCode":"PA","postalCode":"68354","coordinates":{"lat":16.782513,"lng":-139.34723},"country":"United States"},"macAddress":"10:7d:df:1f:97:58","university":"University of Southern California","bank":{"cardExpire":"07/30","cardNumber":"5303440212268149","cardType":"Mastercard","currency":"CAD","iban":"DE01300746880579852937"},"company":{"department":"Support","name":"Pagac and Sons","title":"Research Analyst","address":{"address":"1622 Lincoln Street","city":"Fort Worth","state":"Pennsylvania","stateCode":"PA","postalCode":"27768","coordinates":{"lat":54.91193,"lng":-79.498328},"country":"United States"}},"ein":"904-810","ssn":"116-951-314","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"admin"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Deletes a specific user from the system by their unique identifier.
## Method & Endpoint
- **Method**: `DELETE`
- **Endpoint**: `https://dummyjson.com/users/4`
## Authentication
- **Required**: No
- This is a public endpoint for demonstration purposes
## Parameters
### Path Variables
- `userId` (required) - The unique identifier of the user to delete
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**: Returns the deleted user information with deletion confirmation
```json
{
"id": 1,
"firstName": "Emily",
"lastName": "Johnson",
"email": "emily.johnson@x.dummyjson.com",
"username": "emilys",
"isDeleted": true,
"deletedOn": "2024-01-01T12:00:00.000Z",
...
}
```
## Tests Included
- Validates response status code is 200
- Verifies `isDeleted` flag is true
- Checks deletion timestamp is present
- Confirms deleted user details are returned
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc2OTk2NDc5MX0.3W-gD3oxKuMoEVC_ZILbZsE2n66DWZhtJGckyUS699c |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | ec1df4aa-b236-4c49-bf42-3ae23fb23b85 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:22 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 96 |
| x-ratelimit-reset | 1769961209 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"5af-lqI35lu4YpbbwosMaW1/RxXd320" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=t3yURUBZF3DQ5fDtPynl2VV6%2Fl%2B0J9gdBiYFe5rYEyrVQmoO96xDLkhOjUVIztEL2hyvHzZHMXUHbCoxTdAae88Bz0Q8a7tyyn0fjFA%3D"}]} |
| CF-RAY | 9c729f0a6a2b2891-AMM |
{"id":4,"firstName":"James","lastName":"Davis","maidenName":"","age":46,"gender":"male","email":"james.davis@x.dummyjson.com","phone":"+49 614-958-9364","username":"jamesd","password":"jamesdpass","birthDate":"1979-5-4","image":"https://dummyjson.com/icon/jamesd/128","bloodGroup":"AB+","height":193.31,"weight":62.1,"eyeColor":"Amber","hair":{"color":"Blonde","type":"Straight"},"ip":"101.118.131.66","address":{"address":"238 Jefferson Street","city":"Seattle","state":"Pennsylvania","stateCode":"PA","postalCode":"68354","coordinates":{"lat":16.782513,"lng":-139.34723},"country":"United States"},"macAddress":"10:7d:df:1f:97:58","university":"University of Southern California","bank":{"cardExpire":"07/30","cardNumber":"5303440212268149","cardType":"Mastercard","currency":"CAD","iban":"DE01300746880579852937"},"company":{"department":"Support","name":"Pagac and Sons","title":"Research Analyst","address":{"address":"1622 Lincoln Street","city":"Fort Worth","state":"Pennsylvania","stateCode":"PA","postalCode":"27768","coordinates":{"lat":54.91193,"lng":-79.498328},"country":"United States"}},"ein":"904-810","ssn":"116-951-314","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"admin","isDeleted":true,"deletedOn":"2026-02-01T15:53:22.381Z"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
# Login User and Get Tokens
## Overview
This endpoint authenticates users with the DummyJSON API and returns access tokens for subsequent authenticated requests. Upon successful authentication, the user receives both an access token and refresh token, along with their profile information.
---
## Request Details
### Endpoint
- **URL**: `https://dummyjson.com/auth/login`
- **Method**: `POST`
- **Content-Type**: `application/json`
### Required Body Parameters
| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `username` | string | Yes | The user's username for authentication |
| `password` | string | Yes | The user's password for authentication |
### Example Request Body
```json
{
"username": "emilys",
"password": "emilyspass"
}
```
---
## Response Structure
### Success Response (200 OK)
The API returns a JSON object containing authentication tokens and user profile information:
| Field | Type | Description |
|-------|------|-------------|
| `accessToken` | string | JWT token used for authenticating subsequent API requests |
| `refreshToken` | string | Token used to refresh the access token when it expires |
| `id` | number | Unique identifier for the authenticated user |
| `username` | string | The user's username |
| `email` | string | The user's email address |
| `firstName` | string | The user's first name |
| `lastName` | string | The user's last name |
| `gender` | string | The user's gender |
| `image` | string | URL to the user's profile image |
### Example Response
```json
{
"accessToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
"refreshToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
"id": 1,
"username": "emilys",
"email": "emily.johnson@x.dummyjson.com",
"firstName": "Emily",
"lastName": "Johnson",
"gender": "female",
"image": "https://dummyjson.com/icon/emilys/128"
}
```
---
## Authentication Flow
1. **Send Login Request**: Submit username and password to the `/auth/login` endpoint
2. **Receive Tokens**: Upon successful authentication, receive `accessToken` and `refreshToken`
3. **Automatic Storage**: The `accessToken` is automatically extracted from the response and stored in the `eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc2OTk2NDc5MX0.3W-gD3oxKuMoEVC_ZILbZsE2n66DWZhtJGckyUS699c` environment variable via the post-response script
4. **Use Token**: The stored token is then available for use in subsequent authenticated requests via the `eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc2OTk2NDc5MX0.3W-gD3oxKuMoEVC_ZILbZsE2n66DWZhtJGckyUS699c` variable
5. **Token Usage**: Include the access token in the `Authorization` header as `Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc2OTk2NDc5MX0.3W-gD3oxKuMoEVC_ZILbZsE2n66DWZhtJGckyUS699c` for protected endpoints
---
## Automated Tests
This request includes comprehensive automated tests that validate the response:
### Test Suite
1. **Status Code Validation**
- Verifies the response status code is `200 OK`
- Ensures successful authentication
2. **Access Token Validation**
- Checks that the `accessToken` field exists in the response
- Confirms the token is returned for authentication
3. **Required Fields Validation**
- Validates presence of essential fields: `id`, `username`, `accessToken`
- Ensures complete user data is returned
4. **Response Time Check**
- Verifies the API responds within 2000ms (2 seconds)
- Monitors performance and ensures acceptable response times
All tests run automatically after the request is sent, providing immediate feedback on the authentication process.
---
## Integration with Authentication Workflow
This endpoint is the **entry point** for the authentication workflow in this collection:
1. **First Step**: This is typically the first request to execute when working with authenticated endpoints
2. **Token Generation**: Generates the access token required for protected resources
3. **Environment Setup**: Automatically configures the environment with the necessary authentication credentials
4. **Subsequent Requests**: Other requests in the collection (like "Get Current auth User", "Refresh auth Session") depend on the token generated here
5. **Session Management**: The refresh token can be used with the "Refresh auth Session" endpoint to obtain a new access token without re-authenticating
---
## Notes
- **Test Credentials**: The example uses test credentials (`emilys` / `emilyspass`) from the DummyJSON demo API
- **Token Expiration**: Access tokens may expire after a certain period; use the refresh token to obtain a new one
- **Security**: In production environments, always use HTTPS and never hardcode credentials
- **Environment Variables**: Ensure the `https://dummyjson.com` variable is set to `https://dummyjson.com` in your active environment
| Header Name | Header Value |
|---|---|
| Content-Type | application/json |
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjExOTEsImV4cCI6MTc2OTk2NDc5MX0.3W-gD3oxKuMoEVC_ZILbZsE2n66DWZhtJGckyUS699c |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 975038d4-3c04-4b67-b7ae-14966981a4fe |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 69 |
{
"username": "emilys",
"password": "emilyspass"
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:22 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 95 |
| x-ratelimit-reset | 1769961209 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| Set-Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDIsImV4cCI6MTc2OTk2NDgwMn0.eOl4rlRcy1_4uC78oP3cgGELQZbvAxI6k8OJ-wFOSs0; Max-Age=3600; Path=/; Expires=Sun, 01 Feb 2026 16:53:22 GMT; HttpOnly; Secure |
| Set-Cookie | refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDIsImV4cCI6MTc3MjU1MzIwMn0.Cl9Al4BTcrk6sjkSNVytv6hul2Y1ScQeqpQcpja2le0; Max-Age=3600; Path=/; Expires=Sun, 01 Feb 2026 16:53:22 GMT; HttpOnly; Secure |
| etag | W/"3a2-Fm8SY814jRqfwanuoSE0QWzxYT0" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=HT9FQqzyXddLwHR5fkabEPgtwwcZ31yZRgdUSWWoY6zV%2FzDeW6ghdzC3r1aN3NB9kKnQk5vME%2FhJViBDldtCLrji2YX%2FiECFadJGMjw%3D"}]} |
| Content-Encoding | br |
| CF-RAY | 9c729f0c3c2b2891-AMM |
{"accessToken":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDIsImV4cCI6MTc2OTk2NDgwMn0.eOl4rlRcy1_4uC78oP3cgGELQZbvAxI6k8OJ-wFOSs0","refreshToken":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDIsImV4cCI6MTc3MjU1MzIwMn0.Cl9Al4BTcrk6sjkSNVytv6hul2Y1ScQeqpQcpja2le0","id":1,"username":"emilys","email":"emily.johnson@x.dummyjson.com","firstName":"Emily","lastName":"Johnson","gender":"female","image":"https://dummyjson.com/icon/emilys/128"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Access token exists | 1 | 0 | 0 |
| Required fields exist | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 4 | 0 | 0 |
| Test Name | Assertion Error |
|---|
# Get Authenticated User
## Description
This endpoint retrieves the complete profile information of the currently authenticated user. It returns detailed user data including personal information, contact details, address, company information, and account metadata.
## Authentication
**Required**: Bearer Token
This endpoint requires authentication via a Bearer token in the Authorization header. The token must be obtained first by logging in through the `/auth/login` endpoint.
```
Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDIsImV4cCI6MTc2OTk2NDgwMn0.eOl4rlRcy1_4uC78oP3cgGELQZbvAxI6k8OJ-wFOSs0
```
## Request
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/auth/me`
- **Headers**:
- `Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDIsImV4cCI6MTc2OTk2NDgwMn0.eOl4rlRcy1_4uC78oP3cgGELQZbvAxI6k8OJ-wFOSs0`
## Response
### Success Response (200 OK)
Returns a JSON object containing the authenticated user's complete profile:
```json
{
"id": 1,
"firstName": "Emily",
"lastName": "Johnson",
"maidenName": "Smith",
"age": 29,
"gender": "female",
"email": "emily.johnson@x.dummyjson.com",
"phone": "+81 965-431-3024",
"username": "emilys",
"birthDate": "1996-5-30",
"image": "https://dummyjson.com/icon/emilys/128",
"bloodGroup": "O-",
"height": 193.24,
"weight": 63.16,
"eyeColor": "Green",
"hair": {
"color": "Brown",
"type": "Curly"
},
"address": {
"address": "626 Main Street",
"city": "Phoenix",
"state": "Mississippi",
"stateCode": "MS",
"postalCode": "29112",
"coordinates": {
"lat": -77.16213,
"lng": -92.084824
},
"country": "United States"
},
"company": {
"department": "Engineering",
"name": "Dooley, Kozey and Cronin",
"title": "Sales Manager",
"address": { ... }
},
"bank": {
"cardExpire": "05/28",
"cardNumber": "3693233511855044",
"cardType": "Diners Club International",
"currency": "GBP",
"iban": "GB74MH2UZLR9TRPHYNU8F8"
},
"role": "admin"
}
```
### Response Fields
| Field | Type | Description |
|-------|------|-------------|
| `id` | integer | Unique user identifier |
| `username` | string | User's login username |
| `firstName` | string | User's first name |
| `lastName` | string | User's last name |
| `email` | string | User's email address |
| `phone` | string | User's phone number |
| `age` | integer | User's age |
| `gender` | string | User's gender |
| `birthDate` | string | User's date of birth |
| `image` | string | URL to user's profile image |
| `address` | object | User's address information including coordinates |
| `company` | object | User's company and employment details |
| `bank` | object | User's banking information |
| `role` | string | User's role/permission level |
## Use Cases
1. **Profile Display**: Fetch user data to display on a profile page or dashboard
2. **Session Validation**: Verify that the current authentication token is valid and retrieve associated user
3. **Personalization**: Get user preferences and information to customize the application experience
4. **Authorization Checks**: Retrieve user role and permissions for access control
5. **User Context**: Obtain user details for logging, analytics, or audit trails
## Example Usage
### JavaScript (Fetch API)
```javascript
const response = await fetch('https://dummyjson.com/auth/me', {
method: 'GET',
headers: {
'Authorization': `Bearer ${accessToken}`,
'Content-Type': 'application/json'
}
});
const userData = await response.json();
console.log(`Welcome, ${userData.firstName}!`);
```
### cURL
```bash
curl -X GET 'https://dummyjson.com/auth/me' \
-H 'Authorization: Bearer YOUR_ACCESS_TOKEN'
```
## Notes
- **Token Expiration**: If the Bearer token has expired, this endpoint will return an authentication error. Use the `/auth/refresh` endpoint to obtain a new token.
- **Sensitive Data**: The response includes sensitive information like banking details. Ensure proper security measures when handling this data.
- **Response Time**: Expected response time is under 2 seconds (validated by automated tests).
- **Required Fields**: The response always includes `id` and `username` fields (validated by automated tests).
- **No Parameters**: This endpoint does not accept any query parameters or request body.
## Error Responses
### 401 Unauthorized
Returned when the Bearer token is missing, invalid, or expired.
```json
{
"message": "Authentication required"
}
```
### 403 Forbidden
Returned when the token is valid but lacks necessary permissions.
## Related Endpoints
- `POST /auth/login` - Obtain access token
- `POST /auth/refresh` - Refresh expired token
- `PUT /users/{userId}` - Update user information
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDIsImV4cCI6MTc2OTk2NDgwMn0.eOl4rlRcy1_4uC78oP3cgGELQZbvAxI6k8OJ-wFOSs0 |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 392a4166-14a8-4ebb-ab08-f9dca1e1dac1 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDIsImV4cCI6MTc2OTk2NDgwMn0.eOl4rlRcy1_4uC78oP3cgGELQZbvAxI6k8OJ-wFOSs0; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDIsImV4cCI6MTc3MjU1MzIwMn0.Cl9Al4BTcrk6sjkSNVytv6hul2Y1ScQeqpQcpja2le0 |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:22 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 94 |
| x-ratelimit-reset | 1769961209 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"58f-CoL/KoXlW3x1PtqQr3wqPsXj6DE" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=slo000IvLETAlQ5aNyTQYu2hnTn9i%2FZJ8LWXNnd06bYNTdX01jSGQNnHMO%2BVLchZD63GtHrgQZeOA8SGj0t3WuNIgZjuJYX0LmWcUsw%3D"}]} |
| CF-RAY | 9c729f0dadaf2891-AMM |
{"id":1,"firstName":"Emily","lastName":"Johnson","maidenName":"Smith","age":29,"gender":"female","email":"emily.johnson@x.dummyjson.com","phone":"+81 965-431-3024","username":"emilys","password":"emilyspass","birthDate":"1996-5-30","image":"https://dummyjson.com/icon/emilys/128","bloodGroup":"O-","height":193.24,"weight":63.16,"eyeColor":"Green","hair":{"color":"Brown","type":"Curly"},"ip":"42.48.100.32","address":{"address":"626 Main Street","city":"Phoenix","state":"Mississippi","stateCode":"MS","postalCode":"29112","coordinates":{"lat":-77.16213,"lng":-92.084824},"country":"United States"},"macAddress":"47:fa:41:18:ec:eb","university":"University of Wisconsin--Madison","bank":{"cardExpire":"05/28","cardNumber":"3693233511855044","cardType":"Diners Club International","currency":"GBP","iban":"GB74MH2UZLR9TRPHYNU8F8"},"company":{"department":"Engineering","name":"Dooley, Kozey and Cronin","title":"Sales Manager","address":{"address":"263 Tenth Street","city":"San Francisco","state":"Wisconsin","stateCode":"WI","postalCode":"37657","coordinates":{"lat":71.814525,"lng":-161.150263},"country":"United States"}},"ein":"977-175","ssn":"900-590-289","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"admin"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| User content is correct | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 3 | 0 | 0 |
| Test Name | Assertion Error |
|---|
# Refresh Authentication Session
## Overview
This endpoint refreshes an existing authentication session by generating a new access token and refresh token pair. Use this endpoint when your current access token is about to expire or has expired, allowing you to maintain an authenticated session without requiring the user to log in again.
---
## Endpoint Details
**Method:** `POST`
**Path:** `https://dummyjson.com/auth/refresh`
---
## Request Body
The request requires a JSON payload with the following parameters:
| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `refreshToken` | string | Yes | The current valid refresh token (or access token) used to generate new tokens |
| `expiresInMins` | integer | Yes | The desired expiration time for the new access token in minutes (e.g., 30) |
### Example Request Body
```json
{
"refreshToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDIsImV4cCI6MTc2OTk2NDgwMn0.eOl4rlRcy1_4uC78oP3cgGELQZbvAxI6k8OJ-wFOSs0",
"expiresInMins": 30
}
```
---
## Response Format
### Success Response (200 OK)
Returns a JSON object containing new authentication tokens:
```json
{
"accessToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
"refreshToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."
}
```
| Field | Type | Description |
|-------|------|-------------|
| `accessToken` | string | New JWT access token for authenticated requests |
| `refreshToken` | string | New refresh token for future token refresh operations |
---
## Authentication Requirements
- Requires a valid refresh token (or access token) in the request body
- No additional authentication headers required for this endpoint
- The provided token must not be expired or invalid
---
## Use Cases
### When to Use This Endpoint
1. **Token Expiration Prevention**: Proactively refresh tokens before they expire to maintain uninterrupted access
2. **Expired Token Recovery**: Obtain new tokens when your access token has expired
3. **Session Extension**: Extend user sessions without requiring re-authentication
4. **Security Best Practices**: Regularly rotate tokens to minimize security risks
### Typical Workflow
```
1. User logs in → Receives accessToken and refreshToken
2. User makes authenticated requests using accessToken
3. Before accessToken expires → Call /auth/refresh
4. Receive new accessToken and refreshToken
5. Update stored tokens and continue making requests
```
---
## Important Notes
### Token Expiration
- Access tokens have a limited lifespan defined by `expiresInMins`
- The default expiration is typically 30 minutes
- Refresh tokens generally have a longer lifespan than access tokens
- Always store the new tokens returned from this endpoint
### Best Practices
- **Automatic Refresh**: Implement automatic token refresh logic in your application
- **Token Storage**: Securely store both access and refresh tokens (use environment variables in Postman)
- **Error Handling**: If refresh fails, redirect users to login again
- **Token Rotation**: Update both tokens after each refresh for enhanced security
### Error Scenarios
If the refresh token is invalid or expired, you will receive an error response and must authenticate again using the `/auth/login` endpoint.
---
## Related Endpoints
- **Login**: `POST https://dummyjson.com/auth/login` - Initial authentication to obtain tokens
- **Get Current User**: `GET https://dummyjson.com/auth/me` - Verify token validity and get user info
| Header Name | Header Value |
|---|---|
| Content-Type | application/json |
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDIsImV4cCI6MTc2OTk2NDgwMn0.eOl4rlRcy1_4uC78oP3cgGELQZbvAxI6k8OJ-wFOSs0 |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 2ece3538-f166-45c0-a244-6113c8ef426f |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 414 |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDIsImV4cCI6MTc2OTk2NDgwMn0.eOl4rlRcy1_4uC78oP3cgGELQZbvAxI6k8OJ-wFOSs0; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDIsImV4cCI6MTc3MjU1MzIwMn0.Cl9Al4BTcrk6sjkSNVytv6hul2Y1ScQeqpQcpja2le0 |
{
"refreshToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDIsImV4cCI6MTc2OTk2NDgwMn0.eOl4rlRcy1_4uC78oP3cgGELQZbvAxI6k8OJ-wFOSs0",
"expiresInMins": 30
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:23 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 99 |
| x-ratelimit-reset | 1769961213 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| Set-Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDMsImV4cCI6MTc2OTk2MzAwM30.7nOyE34qTDx7fNesdzhke5DQc-odNHa-SVbo_Oti1tg; Max-Age=1800; Path=/; Expires=Sun, 01 Feb 2026 16:23:23 GMT; HttpOnly; Secure |
| Set-Cookie | refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDMsImV4cCI6MTc3MjU1MzIwM30.c9aI7-WsCLjZJA8EJ76slNIBR-Ckm8dtgvhTOiYKohs; Max-Age=1800; Path=/; Expires=Sun, 01 Feb 2026 16:23:23 GMT; HttpOnly; Secure |
| etag | W/"2f4-GJPWwCshcfP0LJBg2pYUap1V/Fc" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=QMlZrcixN0mBIK0Ak%2BtyQKDaTRjoSqC0Yi4MBQLn67LGPwjjRNZDSPKeGVe2ifpWLS2MrtLzGGYmQhR7w%2BNZvkE1Q8kLhRsGl5q3huM%3D"}]} |
| Content-Encoding | br |
| CF-RAY | 9c729f0f6f962891-AMM |
{"accessToken":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDMsImV4cCI6MTc2OTk2MzAwM30.7nOyE34qTDx7fNesdzhke5DQc-odNHa-SVbo_Oti1tg","refreshToken":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDMsImV4cCI6MTc3MjU1MzIwM30.c9aI7-WsCLjZJA8EJ76slNIBR-Ckm8dtgvhTOiYKohs"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Access token is present | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 3 | 0 | 0 |
| Test Name | Assertion Error |
|---|
# Negative Test: Refresh Authentication Session with Invalid Token
## Overview
This is a **negative test case** designed to validate the API's error handling when attempting to refresh an authentication session using an invalid or expired refresh token.
## Purpose
Tests the authentication refresh endpoint's ability to properly reject and handle invalid refresh token requests, ensuring the API maintains security standards by not allowing unauthorized session refreshes.
## Expected Behavior
- **Status Code**: `401 Unauthorized` or `403 Forbidden`
- **Response Body**: Should contain an error message indicating the token is invalid
- **Security**: The API must reject the request and not generate a new access token
## Request Details
### Endpoint
`POST https://dummyjson.com/auth/refresh`
### Request Body Parameters
| Parameter | Type | Value | Description |
|-----------|------|-------|-------------|
| `refreshToken` | string | `"expired_invalid_token_xyz"` | An intentionally invalid/expired refresh token |
| `expiresInMins` | integer | `30` | Requested token expiration time in minutes |
### Test Scenario
This request deliberately sends an invalid refresh token (`expired_invalid_token_xyz`) to verify the API properly rejects unauthorized refresh attempts.
## Test Validations
The following automated tests are executed on the response:
1. **Status Code Validation**: Verifies the response status code is either `401` or `403`
2. **Error Message Validation**: Confirms the response contains an error message field that is a string
## Use Case & Importance
### Security Validation
This negative test is critical for API security because it:
- **Prevents Token Forgery**: Ensures attackers cannot use fabricated tokens to gain unauthorized access
- **Validates Token Expiration**: Confirms expired tokens are properly rejected
- **Error Handling**: Verifies appropriate error messages are returned to clients
- **Session Security**: Protects against session hijacking attempts
### Real-World Scenarios
This test simulates situations where:
- A user's refresh token has expired
- An attacker attempts to use a stolen or guessed token
- A client application has cached an old/invalid token
- Network issues caused token corruption
By validating proper rejection of invalid tokens, this test ensures the authentication system maintains its security integrity and provides clear feedback for troubleshooting legitimate authentication issues.
| Header Name | Header Value |
|---|---|
| Content-Type | application/json |
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDIsImV4cCI6MTc2OTk2NDgwMn0.eOl4rlRcy1_4uC78oP3cgGELQZbvAxI6k8OJ-wFOSs0 |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 2fc4f2cf-e760-4839-bc3e-0c2aa2693325 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 81 |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDMsImV4cCI6MTc2OTk2MzAwM30.7nOyE34qTDx7fNesdzhke5DQc-odNHa-SVbo_Oti1tg; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDMsImV4cCI6MTc3MjU1MzIwM30.c9aI7-WsCLjZJA8EJ76slNIBR-Ckm8dtgvhTOiYKohs |
{
"refreshToken": "expired_invalid_token_xyz",
"expiresInMins": 30
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:23 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 93 |
| x-ratelimit-reset | 1769961210 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"23-pPrdIf6OEYUEvqJKlUDSyBAT260" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=RmOtJA%2BszbIN%2FFlEcRVE8aDBI%2BLtLKQysVTf185e4Hm7og8fV1KA6T7g7d%2FWLeCukeznIKNbSIPWFmIrFmLiwzgkAqLTH5EzUS6SN5s%3D"}]} |
| Content-Encoding | br |
| CF-RAY | 9c729f1109532891-AMM |
{"message":"Invalid refresh token"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 401 or 403 | 1 | 0 | 0 |
| Response has error message | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
# Get All Products
## Overview
This endpoint retrieves a complete list of all products available in the e-commerce catalog. It returns comprehensive product information including pricing, inventory, specifications, and customer reviews.
## Request Details
**Method:** `GET`
**URL:** `https://dummyjson.com/products`
**Authentication:** Not required
**Query Parameters:** None (base endpoint)
### Optional Query Parameters
While the base endpoint returns all products, you can use the following query parameters to customize the response:
- `limit` - Limit the number of products returned (e.g., `?limit=10`)
- `skip` - Skip a number of products for pagination (e.g., `?skip=10`)
- `select` - Select specific fields to return (e.g., `?select=title,price`)
- `sortBy` - Sort products by a specific field (e.g., `?sortBy=price`)
- `order` - Sort order: `asc` or `desc` (e.g., `?order=asc`)
## Response Structure
The endpoint returns a JSON object with the following structure:
```json
{
"products": [
{
"id": 1,
"title": "Product Name",
"description": "Product description",
"category": "Category name",
"price": 99.99,
"discountPercentage": 10.5,
"rating": 4.5,
"stock": 100,
"tags": ["tag1", "tag2"],
"brand": "Brand Name",
"sku": "SKU-CODE",
"weight": 5,
"dimensions": {
"width": 10.5,
"height": 15.2,
"depth": 8.3
},
"warrantyInformation": "1 year warranty",
"shippingInformation": "Ships in 1-2 business days",
"availabilityStatus": "In Stock",
"reviews": [
{
"rating": 5,
"comment": "Great product!",
"date": "2025-04-30T09:41:02.053Z",
"reviewerName": "John Doe",
"reviewerEmail": "john.doe@example.com"
}
],
"returnPolicy": "30 days return policy",
"minimumOrderQuantity": 1,
"meta": {
"createdAt": "2025-04-30T09:41:02.053Z",
"updatedAt": "2025-04-30T09:41:02.053Z",
"barcode": "1234567890123",
"qrCode": "https://example.com/qr-code.png"
},
"images": ["https://example.com/image1.jpg"],
"thumbnail": "https://example.com/thumbnail.jpg"
}
],
"total": 100,
"skip": 0,
"limit": 30
}
```
### Response Fields
- **products** (array): Array of product objects
- **total** (number): Total number of products available
- **skip** (number): Number of products skipped (for pagination)
- **limit** (number): Maximum number of products returned
### Product Object Fields
- **id**: Unique product identifier
- **title**: Product name
- **description**: Detailed product description
- **category**: Product category
- **price**: Product price in USD
- **discountPercentage**: Current discount percentage
- **rating**: Average customer rating (0-5)
- **stock**: Available inventory quantity
- **tags**: Array of product tags for categorization
- **brand**: Product brand name
- **sku**: Stock Keeping Unit identifier
- **weight**: Product weight
- **dimensions**: Physical dimensions (width, height, depth)
- **warrantyInformation**: Warranty details
- **shippingInformation**: Shipping time and details
- **availabilityStatus**: Current availability status
- **reviews**: Array of customer reviews with ratings and comments
- **returnPolicy**: Return policy information
- **minimumOrderQuantity**: Minimum quantity required for purchase
- **meta**: Metadata including creation date, barcode, and QR code
- **images**: Array of product image URLs
- **thumbnail**: Main product thumbnail URL
## Example Use Cases
### 1. Display Product Catalog
Retrieve all products to display in a product listing page or catalog view.
### 2. Inventory Management
Fetch complete product list to check stock levels and availability across all items.
### 3. Data Analysis
Pull all product data for analytics, reporting, or business intelligence purposes.
### 4. Search Index Building
Retrieve all products to build or update a search index for the e-commerce platform.
### 5. Product Comparison
Get complete product information to enable comparison features across multiple products.
## Response Validation
This endpoint includes automated tests that verify:
- ✅ Status code is 200 (OK)
- ✅ Response contains a `products` property
- ✅ `products` is an array
- ✅ Response time is under 2000ms
## Notes
- **Performance**: This endpoint returns all products by default. For large catalogs, consider using pagination parameters (`limit` and `skip`) to improve performance.
- **No Authentication Required**: This is a public endpoint that doesn't require authentication.
- **Rate Limiting**: Be mindful of API rate limits when making frequent requests.
- **Caching**: Consider implementing client-side caching for product data to reduce API calls.
- **Related Endpoints**:
- Use `/products/{id}` to get a single product by ID
- Use `/products/search?q={query}` to search for specific products
- Use `/products/category/{category}` to filter by category
- Use `/products/categories` to get all available categories
## Status Codes
- **200 OK**: Successfully retrieved products
- **500 Internal Server Error**: Server error occurred
## Example Request
```bash
GET https://dummyjson.com/products
```
## Example Response (Truncated)
```json
{
"products": [
{
"id": 1,
"title": "Essence Mascara Lash Princess",
"category": "beauty",
"price": 9.99,
"rating": 2.56,
"stock": 99
},
{
"id": 2,
"title": "Eyeshadow Palette with Mirror",
"category": "beauty",
"price": 19.99,
"rating": 2.86,
"stock": 34
}
],
"total": 194,
"skip": 0,
"limit": 30
}
```
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDIsImV4cCI6MTc2OTk2NDgwMn0.eOl4rlRcy1_4uC78oP3cgGELQZbvAxI6k8OJ-wFOSs0 |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 7a5b5d7f-2f7b-4996-a4a6-5d8581b88ba3 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDMsImV4cCI6MTc2OTk2MzAwM30.7nOyE34qTDx7fNesdzhke5DQc-odNHa-SVbo_Oti1tg; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDMsImV4cCI6MTc3MjU1MzIwM30.c9aI7-WsCLjZJA8EJ76slNIBR-Ckm8dtgvhTOiYKohs |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:23 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 99 |
| x-ratelimit-reset | 1769448742 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"ac3a-uk0FDUI0X0lS5liyUbIxqA7L7F4" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| Age | 512471 |
| Cache-Control | no-store |
| cf-cache-status | HIT |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=i5i4uz9OWPkkQ%2Bjxqx7C2Ms010SGenpQdjQGpF3F5EhTBlQ2YxT5DdlaF6hg9P9y4I%2FZe8QPaoAItpxKKtzdAjZxistQKveuvz0hPzE%3D"}]} |
| CF-RAY | 9c729f12bb6b2891-AMM |
{"products":[{"id":1,"title":"Essence Mascara Lash Princess","description":"The Essence Mascara Lash Princess is a popular mascara known for its volumizing and lengthening effects. Achieve dramatic lashes with this long-lasting and cruelty-free formula.","category":"beauty","price":9.99,"discountPercentage":10.48,"rating":2.56,"stock":99,"tags":["beauty","mascara"],"brand":"Essence","sku":"BEA-ESS-ESS-001","weight":4,"dimensions":{"width":15.14,"height":13.08,"depth":22.99},"warrantyInformation":"1 week warranty","shippingInformation":"Ships in 3-5 business days","availabilityStatus":"In Stock","reviews":[{"rating":3,"comment":"Would not recommend!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Eleanor Collins","reviewerEmail":"eleanor.collins@x.dummyjson.com"},{"rating":4,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Lucas Gordon","reviewerEmail":"lucas.gordon@x.dummyjson.com"},{"rating":5,"comment":"Highly impressed!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Eleanor Collins","reviewerEmail":"eleanor.collins@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":48,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"5784719087687","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/beauty/essence-mascara-lash-princess/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/beauty/essence-mascara-lash-princess/thumbnail.webp"},{"id":2,"title":"Eyeshadow Palette with Mirror","description":"The Eyeshadow Palette with Mirror offers a versatile range of eyeshadow shades for creating stunning eye looks. With a built-in mirror, it's convenient for on-the-go makeup application.","category":"beauty","price":19.99,"discountPercentage":18.19,"rating":2.86,"stock":34,"tags":["beauty","eyeshadow"],"brand":"Glamour Beauty","sku":"BEA-GLA-EYE-002","weight":9,"dimensions":{"width":9.26,"height":22.47,"depth":27.67},"warrantyInformation":"1 year warranty","shippingInformation":"Ships in 2 weeks","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Great product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Savannah Gomez","reviewerEmail":"savannah.gomez@x.dummyjson.com"},{"rating":4,"comment":"Awesome product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Christian Perez","reviewerEmail":"christian.perez@x.dummyjson.com"},{"rating":1,"comment":"Poor quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Nicholas Bailey","reviewerEmail":"nicholas.bailey@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":20,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"9170275171413","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/beauty/eyeshadow-palette-with-mirror/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/beauty/eyeshadow-palette-with-mirror/thumbnail.webp"},{"id":3,"title":"Powder Canister","description":"The Powder Canister is a finely milled setting powder designed to set makeup and control shine. With a lightweight and translucent formula, it provides a smooth and matte finish.","category":"beauty","price":14.99,"discountPercentage":9.84,"rating":4.64,"stock":89,"tags":["beauty","face powder"],"brand":"Velvet Touch","sku":"BEA-VEL-POW-003","weight":8,"dimensions":{"width":29.27,"height":27.93,"depth":20.59},"warrantyInformation":"3 months warranty","shippingInformation":"Ships in 1-2 business days","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Would buy again!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Alexander Jones","reviewerEmail":"alexander.jones@x.dummyjson.com"},{"rating":5,"comment":"Highly impressed!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Elijah Cruz","reviewerEmail":"elijah.cruz@x.dummyjson.com"},{"rating":1,"comment":"Very dissatisfied!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Avery Perez","reviewerEmail":"avery.perez@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":22,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"8418883906837","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/beauty/powder-canister/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/beauty/powder-canister/thumbnail.webp"},{"id":4,"title":"Red Lipstick","description":"The Red Lipstick is a classic and bold choice for adding a pop of color to your lips. With a creamy and pigmented formula, it provides a vibrant and long-lasting finish.","category":"beauty","price":12.99,"discountPercentage":12.16,"rating":4.36,"stock":91,"tags":["beauty","lipstick"],"brand":"Chic Cosmetics","sku":"BEA-CHI-LIP-004","weight":1,"dimensions":{"width":18.11,"height":28.38,"depth":22.17},"warrantyInformation":"3 year warranty","shippingInformation":"Ships in 1 week","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Great product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Liam Garcia","reviewerEmail":"liam.garcia@x.dummyjson.com"},{"rating":5,"comment":"Great product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Ruby Andrews","reviewerEmail":"ruby.andrews@x.dummyjson.com"},{"rating":5,"comment":"Would buy again!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Clara Berry","reviewerEmail":"clara.berry@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":40,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"9467746727219","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/beauty/red-lipstick/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/beauty/red-lipstick/thumbnail.webp"},{"id":5,"title":"Red Nail Polish","description":"The Red Nail Polish offers a rich and glossy red hue for vibrant and polished nails. With a quick-drying formula, it provides a salon-quality finish at home.","category":"beauty","price":8.99,"discountPercentage":11.44,"rating":4.32,"stock":79,"tags":["beauty","nail polish"],"brand":"Nail Couture","sku":"BEA-NAI-NAI-005","weight":8,"dimensions":{"width":21.63,"height":16.48,"depth":29.84},"warrantyInformation":"1 month warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":2,"comment":"Poor quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Benjamin Wilson","reviewerEmail":"benjamin.wilson@x.dummyjson.com"},{"rating":5,"comment":"Great product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Liam Smith","reviewerEmail":"liam.smith@x.dummyjson.com"},{"rating":1,"comment":"Very unhappy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Clara Berry","reviewerEmail":"clara.berry@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":22,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"4063010628104","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/beauty/red-nail-polish/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/beauty/red-nail-polish/thumbnail.webp"},{"id":6,"title":"Calvin Klein CK One","description":"CK One by Calvin Klein is a classic unisex fragrance, known for its fresh and clean scent. It's a versatile fragrance suitable for everyday wear.","category":"fragrances","price":49.99,"discountPercentage":1.89,"rating":4.37,"stock":29,"tags":["fragrances","perfumes"],"brand":"Calvin Klein","sku":"FRA-CAL-CAL-006","weight":7,"dimensions":{"width":29.36,"height":27.76,"depth":20.72},"warrantyInformation":"1 week warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":2,"comment":"Very disappointed!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Layla Young","reviewerEmail":"layla.young@x.dummyjson.com"},{"rating":4,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Daniel Cook","reviewerEmail":"daniel.cook@x.dummyjson.com"},{"rating":3,"comment":"Not as described!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Jacob Cooper","reviewerEmail":"jacob.cooper@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":9,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"2451534060749","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/fragrances/calvin-klein-ck-one/1.webp","https://cdn.dummyjson.com/product-images/fragrances/calvin-klein-ck-one/2.webp","https://cdn.dummyjson.com/product-images/fragrances/calvin-klein-ck-one/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/fragrances/calvin-klein-ck-one/thumbnail.webp"},{"id":7,"title":"Chanel Coco Noir Eau De","description":"Coco Noir by Chanel is an elegant and mysterious fragrance, featuring notes of grapefruit, rose, and sandalwood. Perfect for evening occasions.","category":"fragrances","price":129.99,"discountPercentage":16.51,"rating":4.26,"stock":58,"tags":["fragrances","perfumes"],"brand":"Chanel","sku":"FRA-CHA-CHA-007","weight":7,"dimensions":{"width":24.5,"height":25.7,"depth":25.98},"warrantyInformation":"3 year warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Highly impressed!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Ruby Andrews","reviewerEmail":"ruby.andrews@x.dummyjson.com"},{"rating":5,"comment":"Awesome product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Leah Henderson","reviewerEmail":"leah.henderson@x.dummyjson.com"},{"rating":5,"comment":"Very happy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Xavier Wright","reviewerEmail":"xavier.wright@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"4091737746820","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/fragrances/chanel-coco-noir-eau-de/1.webp","https://cdn.dummyjson.com/product-images/fragrances/chanel-coco-noir-eau-de/2.webp","https://cdn.dummyjson.com/product-images/fragrances/chanel-coco-noir-eau-de/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/fragrances/chanel-coco-noir-eau-de/thumbnail.webp"},{"id":8,"title":"Dior J'adore","description":"J'adore by Dior is a luxurious and floral fragrance, known for its blend of ylang-ylang, rose, and jasmine. It embodies femininity and sophistication.","category":"fragrances","price":89.99,"discountPercentage":14.72,"rating":3.8,"stock":98,"tags":["fragrances","perfumes"],"brand":"Dior","sku":"FRA-DIO-DIO-008","weight":4,"dimensions":{"width":27.67,"height":28.28,"depth":11.83},"warrantyInformation":"1 week warranty","shippingInformation":"Ships in 2 weeks","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Great value for money!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Nicholas Bailey","reviewerEmail":"nicholas.bailey@x.dummyjson.com"},{"rating":4,"comment":"Great value for money!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Penelope Harper","reviewerEmail":"penelope.harper@x.dummyjson.com"},{"rating":4,"comment":"Great product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Emma Miller","reviewerEmail":"emma.miller@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":10,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"1445086097250","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/fragrances/dior-j'adore/1.webp","https://cdn.dummyjson.com/product-images/fragrances/dior-j'adore/2.webp","https://cdn.dummyjson.com/product-images/fragrances/dior-j'adore/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/fragrances/dior-j'adore/thumbnail.webp"},{"id":9,"title":"Dolce Shine Eau de","description":"Dolce Shine by Dolce & Gabbana is a vibrant and fruity fragrance, featuring notes of mango, jasmine, and blonde woods. It's a joyful and youthful scent.","category":"fragrances","price":69.99,"discountPercentage":0.62,"rating":3.96,"stock":4,"tags":["fragrances","perfumes"],"brand":"Dolce & Gabbana","sku":"FRA-DOL-DOL-009","weight":6,"dimensions":{"width":27.28,"height":29.88,"depth":18.3},"warrantyInformation":"3 year warranty","shippingInformation":"Ships in 1 month","availabilityStatus":"Low Stock","reviews":[{"rating":4,"comment":"Would buy again!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Mateo Bennett","reviewerEmail":"mateo.bennett@x.dummyjson.com"},{"rating":4,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Nolan Gonzalez","reviewerEmail":"nolan.gonzalez@x.dummyjson.com"},{"rating":5,"comment":"Very happy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Aurora Lawson","reviewerEmail":"aurora.lawson@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":2,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"3023868210708","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/fragrances/dolce-shine-eau-de/1.webp","https://cdn.dummyjson.com/product-images/fragrances/dolce-shine-eau-de/2.webp","https://cdn.dummyjson.com/product-images/fragrances/dolce-shine-eau-de/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/fragrances/dolce-shine-eau-de/thumbnail.webp"},{"id":10,"title":"Gucci Bloom Eau de","description":"Gucci Bloom by Gucci is a floral and captivating fragrance, with notes of tuberose, jasmine, and Rangoon creeper. It's a modern and romantic scent.","category":"fragrances","price":79.99,"discountPercentage":14.39,"rating":2.74,"stock":91,"tags":["fragrances","perfumes"],"brand":"Gucci","sku":"FRA-GUC-GUC-010","weight":7,"dimensions":{"width":20.92,"height":21.68,"depth":11.2},"warrantyInformation":"6 months warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":1,"comment":"Very dissatisfied!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Cameron Perez","reviewerEmail":"cameron.perez@x.dummyjson.com"},{"rating":5,"comment":"Very happy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Daniel Cook","reviewerEmail":"daniel.cook@x.dummyjson.com"},{"rating":4,"comment":"Highly impressed!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Addison Wright","reviewerEmail":"addison.wright@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":2,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"3170832177880","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/fragrances/gucci-bloom-eau-de/1.webp","https://cdn.dummyjson.com/product-images/fragrances/gucci-bloom-eau-de/2.webp","https://cdn.dummyjson.com/product-images/fragrances/gucci-bloom-eau-de/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/fragrances/gucci-bloom-eau-de/thumbnail.webp"},{"id":11,"title":"Annibale Colombo Bed","description":"The Annibale Colombo Bed is a luxurious and elegant bed frame, crafted with high-quality materials for a comfortable and stylish bedroom.","category":"furniture","price":1899.99,"discountPercentage":8.57,"rating":4.77,"stock":88,"tags":["furniture","beds"],"brand":"Annibale Colombo","sku":"FUR-ANN-ANN-011","weight":10,"dimensions":{"width":28.16,"height":25.36,"depth":17.28},"warrantyInformation":"1 year warranty","shippingInformation":"Ships in 1 month","availabilityStatus":"In Stock","reviews":[{"rating":2,"comment":"Would not recommend!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Christopher West","reviewerEmail":"christopher.west@x.dummyjson.com"},{"rating":4,"comment":"Highly impressed!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Vivian Carter","reviewerEmail":"vivian.carter@x.dummyjson.com"},{"rating":1,"comment":"Poor quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Mason Wright","reviewerEmail":"mason.wright@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"3610757456581","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/furniture/annibale-colombo-bed/1.webp","https://cdn.dummyjson.com/product-images/furniture/annibale-colombo-bed/2.webp","https://cdn.dummyjson.com/product-images/furniture/annibale-colombo-bed/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/furniture/annibale-colombo-bed/thumbnail.webp"},{"id":12,"title":"Annibale Colombo Sofa","description":"The Annibale Colombo Sofa is a sophisticated and comfortable seating option, featuring exquisite design and premium upholstery for your living room.","category":"furniture","price":2499.99,"discountPercentage":14.4,"rating":3.92,"stock":60,"tags":["furniture","sofas"],"brand":"Annibale Colombo","sku":"FUR-ANN-ANN-012","weight":6,"dimensions":{"width":12.75,"height":20.55,"depth":19.06},"warrantyInformation":"Lifetime warranty","shippingInformation":"Ships in 1 week","availabilityStatus":"In Stock","reviews":[{"rating":3,"comment":"Very unhappy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Christian Perez","reviewerEmail":"christian.perez@x.dummyjson.com"},{"rating":5,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Lillian Bishop","reviewerEmail":"lillian.bishop@x.dummyjson.com"},{"rating":1,"comment":"Poor quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Lillian Simmons","reviewerEmail":"lillian.simmons@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"1777662847736","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/furniture/annibale-colombo-sofa/1.webp","https://cdn.dummyjson.com/product-images/furniture/annibale-colombo-sofa/2.webp","https://cdn.dummyjson.com/product-images/furniture/annibale-colombo-sofa/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/furniture/annibale-colombo-sofa/thumbnail.webp"},{"id":13,"title":"Bedside Table African Cherry","description":"The Bedside Table in African Cherry is a stylish and functional addition to your bedroom, providing convenient storage space and a touch of elegance.","category":"furniture","price":299.99,"discountPercentage":19.09,"rating":2.87,"stock":64,"tags":["furniture","bedside tables"],"brand":"Furniture Co.","sku":"FUR-FUR-BED-013","weight":2,"dimensions":{"width":13.47,"height":24.99,"depth":27.35},"warrantyInformation":"5 year warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Aaliyah Hanson","reviewerEmail":"aaliyah.hanson@x.dummyjson.com"},{"rating":4,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Liam Smith","reviewerEmail":"liam.smith@x.dummyjson.com"},{"rating":4,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Avery Barnes","reviewerEmail":"avery.barnes@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":3,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"6441287925979","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/furniture/bedside-table-african-cherry/1.webp","https://cdn.dummyjson.com/product-images/furniture/bedside-table-african-cherry/2.webp","https://cdn.dummyjson.com/product-images/furniture/bedside-table-african-cherry/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/furniture/bedside-table-african-cherry/thumbnail.webp"},{"id":14,"title":"Knoll Saarinen Executive Conference Chair","description":"The Knoll Saarinen Executive Conference Chair is a modern and ergonomic chair, perfect for your office or conference room with its timeless design.","category":"furniture","price":499.99,"discountPercentage":2.01,"rating":4.88,"stock":26,"tags":["furniture","office chairs"],"brand":"Knoll","sku":"FUR-KNO-KNO-014","weight":10,"dimensions":{"width":13.81,"height":7.5,"depth":5.62},"warrantyInformation":"2 year warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":2,"comment":"Waste of money!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Ella Cook","reviewerEmail":"ella.cook@x.dummyjson.com"},{"rating":2,"comment":"Very dissatisfied!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Clara Berry","reviewerEmail":"clara.berry@x.dummyjson.com"},{"rating":5,"comment":"Would buy again!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Elena Long","reviewerEmail":"elena.long@x.dummyjson.com"}],"returnPolicy":"60 days return policy","minimumOrderQuantity":5,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"8919386859966","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/furniture/knoll-saarinen-executive-conference-chair/1.webp","https://cdn.dummyjson.com/product-images/furniture/knoll-saarinen-executive-conference-chair/2.webp","https://cdn.dummyjson.com/product-images/furniture/knoll-saarinen-executive-conference-chair/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/furniture/knoll-saarinen-executive-conference-chair/thumbnail.webp"},{"id":15,"title":"Wooden Bathroom Sink With Mirror","description":"The Wooden Bathroom Sink with Mirror is a unique and stylish addition to your bathroom, featuring a wooden sink countertop and a matching mirror.","category":"furniture","price":799.99,"discountPercentage":8.8,"rating":3.59,"stock":7,"tags":["furniture","bathroom"],"brand":"Bath Trends","sku":"FUR-BAT-WOO-015","weight":10,"dimensions":{"width":7.98,"height":8.88,"depth":28.46},"warrantyInformation":"3 year warranty","shippingInformation":"Ships in 3-5 business days","availabilityStatus":"Low Stock","reviews":[{"rating":4,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Logan Torres","reviewerEmail":"logan.torres@x.dummyjson.com"},{"rating":5,"comment":"Very pleased!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Aria Parker","reviewerEmail":"aria.parker@x.dummyjson.com"},{"rating":3,"comment":"Poor quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Dylan Wells","reviewerEmail":"dylan.wells@x.dummyjson.com"}],"returnPolicy":"60 days return policy","minimumOrderQuantity":2,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"1958104402873","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/furniture/wooden-bathroom-sink-with-mirror/1.webp","https://cdn.dummyjson.com/product-images/furniture/wooden-bathroom-sink-with-mirror/2.webp","https://cdn.dummyjson.com/product-images/furniture/wooden-bathroom-sink-with-mirror/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/furniture/wooden-bathroom-sink-with-mirror/thumbnail.webp"},{"id":16,"title":"Apple","description":"Fresh and crisp apples, perfect for snacking or incorporating into various recipes.","category":"groceries","price":1.99,"discountPercentage":12.62,"rating":4.19,"stock":8,"tags":["fruits"],"sku":"GRO-BRD-APP-016","weight":9,"dimensions":{"width":13.66,"height":11.01,"depth":9.73},"warrantyInformation":"3 year warranty","shippingInformation":"Ships in 2 weeks","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Sophia Brown","reviewerEmail":"sophia.brown@x.dummyjson.com"},{"rating":1,"comment":"Very dissatisfied!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Scarlett Bowman","reviewerEmail":"scarlett.bowman@x.dummyjson.com"},{"rating":3,"comment":"Very unhappy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"William Gonzalez","reviewerEmail":"william.gonzalez@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":7,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"7962803553314","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/apple/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/apple/thumbnail.webp"},{"id":17,"title":"Beef Steak","description":"High-quality beef steak, great for grilling or cooking to your preferred level of doneness.","category":"groceries","price":12.99,"discountPercentage":9.61,"rating":4.47,"stock":86,"tags":["meat"],"sku":"GRO-BRD-BEE-017","weight":10,"dimensions":{"width":18.9,"height":5.77,"depth":18.57},"warrantyInformation":"3 year warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":3,"comment":"Would not recommend!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Eleanor Tyler","reviewerEmail":"eleanor.tyler@x.dummyjson.com"},{"rating":4,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Alexander Jones","reviewerEmail":"alexander.jones@x.dummyjson.com"},{"rating":5,"comment":"Great value for money!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Natalie Harris","reviewerEmail":"natalie.harris@x.dummyjson.com"}],"returnPolicy":"60 days return policy","minimumOrderQuantity":43,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"5640063409695","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/beef-steak/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/beef-steak/thumbnail.webp"},{"id":18,"title":"Cat Food","description":"Nutritious cat food formulated to meet the dietary needs of your feline friend.","category":"groceries","price":8.99,"discountPercentage":9.58,"rating":3.13,"stock":46,"tags":["pet supplies","cat food"],"sku":"GRO-BRD-FOO-018","weight":10,"dimensions":{"width":18.08,"height":9.26,"depth":21.86},"warrantyInformation":"1 year warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":3,"comment":"Would not recommend!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Noah Lewis","reviewerEmail":"noah.lewis@x.dummyjson.com"},{"rating":3,"comment":"Very unhappy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Ruby Andrews","reviewerEmail":"ruby.andrews@x.dummyjson.com"},{"rating":2,"comment":"Very disappointed!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Ethan Thompson","reviewerEmail":"ethan.thompson@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":18,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"1483991328610","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/cat-food/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/cat-food/thumbnail.webp"},{"id":19,"title":"Chicken Meat","description":"Fresh and tender chicken meat, suitable for various culinary preparations.","category":"groceries","price":9.99,"discountPercentage":13.7,"rating":3.19,"stock":97,"tags":["meat"],"sku":"GRO-BRD-CHI-019","weight":1,"dimensions":{"width":11.03,"height":22.11,"depth":16.01},"warrantyInformation":"1 year warranty","shippingInformation":"Ships in 1 month","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Great product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Mateo Bennett","reviewerEmail":"mateo.bennett@x.dummyjson.com"},{"rating":4,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Jackson Evans","reviewerEmail":"jackson.evans@x.dummyjson.com"},{"rating":3,"comment":"Not worth the price!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Sadie Morales","reviewerEmail":"sadie.morales@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":22,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"8829514594521","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/chicken-meat/1.webp","https://cdn.dummyjson.com/product-images/groceries/chicken-meat/2.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/chicken-meat/thumbnail.webp"},{"id":20,"title":"Cooking Oil","description":"Versatile cooking oil suitable for frying, sautéing, and various culinary applications.","category":"groceries","price":4.99,"discountPercentage":9.33,"rating":4.8,"stock":10,"tags":["cooking essentials"],"sku":"GRO-BRD-COO-020","weight":5,"dimensions":{"width":19.95,"height":27.54,"depth":24.86},"warrantyInformation":"Lifetime warranty","shippingInformation":"Ships in 1-2 business days","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Very happy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Victoria McDonald","reviewerEmail":"victoria.mcdonald@x.dummyjson.com"},{"rating":2,"comment":"Would not recommend!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Hazel Evans","reviewerEmail":"hazel.evans@x.dummyjson.com"},{"rating":5,"comment":"Would buy again!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Zoe Bennett","reviewerEmail":"zoe.bennett@x.dummyjson.com"}],"returnPolicy":"30 days return policy","minimumOrderQuantity":46,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"4874727824518","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/cooking-oil/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/cooking-oil/thumbnail.webp"},{"id":21,"title":"Cucumber","description":"Crisp and hydrating cucumbers, ideal for salads, snacks, or as a refreshing side.","category":"groceries","price":1.49,"discountPercentage":0.16,"rating":4.07,"stock":84,"tags":["vegetables"],"sku":"GRO-BRD-CUC-021","weight":4,"dimensions":{"width":12.8,"height":28.38,"depth":21.34},"warrantyInformation":"2 year warranty","shippingInformation":"Ships in 1-2 business days","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Great product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Lincoln Kelly","reviewerEmail":"lincoln.kelly@x.dummyjson.com"},{"rating":4,"comment":"Great value for money!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Savannah Gomez","reviewerEmail":"savannah.gomez@x.dummyjson.com"},{"rating":2,"comment":"Poor quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"James Davis","reviewerEmail":"james.davis@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":2,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"5300066378225","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/cucumber/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/cucumber/thumbnail.webp"},{"id":22,"title":"Dog Food","description":"Specially formulated dog food designed to provide essential nutrients for your canine companion.","category":"groceries","price":10.99,"discountPercentage":10.27,"rating":4.55,"stock":71,"tags":["pet supplies","dog food"],"sku":"GRO-BRD-FOO-022","weight":10,"dimensions":{"width":16.93,"height":27.15,"depth":9.29},"warrantyInformation":"No warranty","shippingInformation":"Ships in 1-2 business days","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Nicholas Edwards","reviewerEmail":"nicholas.edwards@x.dummyjson.com"},{"rating":5,"comment":"Awesome product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Zachary Lee","reviewerEmail":"zachary.lee@x.dummyjson.com"},{"rating":4,"comment":"Great product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Nova Cooper","reviewerEmail":"nova.cooper@x.dummyjson.com"}],"returnPolicy":"60 days return policy","minimumOrderQuantity":43,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"5906686116469","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/dog-food/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/dog-food/thumbnail.webp"},{"id":23,"title":"Eggs","description":"Fresh eggs, a versatile ingredient for baking, cooking, or breakfast.","category":"groceries","price":2.99,"discountPercentage":11.05,"rating":2.53,"stock":9,"tags":["dairy"],"sku":"GRO-BRD-EGG-023","weight":2,"dimensions":{"width":11.42,"height":7.44,"depth":16.95},"warrantyInformation":"1 week warranty","shippingInformation":"Ships in 1 week","availabilityStatus":"In Stock","reviews":[{"rating":3,"comment":"Disappointing product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Penelope King","reviewerEmail":"penelope.king@x.dummyjson.com"},{"rating":3,"comment":"Poor quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Eleanor Tyler","reviewerEmail":"eleanor.tyler@x.dummyjson.com"},{"rating":4,"comment":"Very pleased!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Benjamin Foster","reviewerEmail":"benjamin.foster@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":32,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"3478638588469","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/eggs/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/eggs/thumbnail.webp"},{"id":24,"title":"Fish Steak","description":"Quality fish steak, suitable for grilling, baking, or pan-searing.","category":"groceries","price":14.99,"discountPercentage":4.23,"rating":3.78,"stock":74,"tags":["seafood"],"sku":"GRO-BRD-FIS-024","weight":6,"dimensions":{"width":14.95,"height":26.31,"depth":11.27},"warrantyInformation":"1 month warranty","shippingInformation":"Ships in 3-5 business days","availabilityStatus":"In Stock","reviews":[{"rating":2,"comment":"Would not buy again!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Caleb Perkins","reviewerEmail":"caleb.perkins@x.dummyjson.com"},{"rating":5,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Isabella Jackson","reviewerEmail":"isabella.jackson@x.dummyjson.com"},{"rating":4,"comment":"Great value for money!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Nathan Dixon","reviewerEmail":"nathan.dixon@x.dummyjson.com"}],"returnPolicy":"60 days return policy","minimumOrderQuantity":50,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"9595036192098","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/fish-steak/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/fish-steak/thumbnail.webp"},{"id":25,"title":"Green Bell Pepper","description":"Fresh and vibrant green bell pepper, perfect for adding color and flavor to your dishes.","category":"groceries","price":1.29,"discountPercentage":0.16,"rating":3.25,"stock":33,"tags":["vegetables"],"sku":"GRO-BRD-GRE-025","weight":2,"dimensions":{"width":15.33,"height":26.65,"depth":14.44},"warrantyInformation":"1 month warranty","shippingInformation":"Ships in 1 week","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Avery Carter","reviewerEmail":"avery.carter@x.dummyjson.com"},{"rating":3,"comment":"Would not recommend!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Henry Hill","reviewerEmail":"henry.hill@x.dummyjson.com"},{"rating":5,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Addison Wright","reviewerEmail":"addison.wright@x.dummyjson.com"}],"returnPolicy":"30 days return policy","minimumOrderQuantity":12,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"2365227493323","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/green-bell-pepper/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/green-bell-pepper/thumbnail.webp"},{"id":26,"title":"Green Chili Pepper","description":"Spicy green chili pepper, ideal for adding heat to your favorite recipes.","category":"groceries","price":0.99,"discountPercentage":1,"rating":3.66,"stock":3,"tags":["vegetables"],"sku":"GRO-BRD-GRE-026","weight":7,"dimensions":{"width":15.38,"height":18.12,"depth":19.92},"warrantyInformation":"2 year warranty","shippingInformation":"Ships in 1 week","availabilityStatus":"Low Stock","reviews":[{"rating":4,"comment":"Great product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Luna Russell","reviewerEmail":"luna.russell@x.dummyjson.com"},{"rating":1,"comment":"Waste of money!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Noah Lewis","reviewerEmail":"noah.lewis@x.dummyjson.com"},{"rating":3,"comment":"Very disappointed!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Clara Berry","reviewerEmail":"clara.berry@x.dummyjson.com"}],"returnPolicy":"30 days return policy","minimumOrderQuantity":39,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"9335000538563","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/green-chili-pepper/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/green-chili-pepper/thumbnail.webp"},{"id":27,"title":"Honey Jar","description":"Pure and natural honey in a convenient jar, perfect for sweetening beverages or drizzling over food.","category":"groceries","price":6.99,"discountPercentage":14.4,"rating":3.97,"stock":34,"tags":["condiments"],"sku":"GRO-BRD-HON-027","weight":2,"dimensions":{"width":9.28,"height":21.72,"depth":17.74},"warrantyInformation":"1 month warranty","shippingInformation":"Ships in 1-2 business days","availabilityStatus":"In Stock","reviews":[{"rating":1,"comment":"Very disappointed!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Autumn Gomez","reviewerEmail":"autumn.gomez@x.dummyjson.com"},{"rating":4,"comment":"Highly impressed!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Benjamin Wilson","reviewerEmail":"benjamin.wilson@x.dummyjson.com"},{"rating":2,"comment":"Very disappointed!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Nicholas Edwards","reviewerEmail":"nicholas.edwards@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":47,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"6354306346329","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/honey-jar/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/honey-jar/thumbnail.webp"},{"id":28,"title":"Ice Cream","description":"Creamy and delicious ice cream, available in various flavors for a delightful treat.","category":"groceries","price":5.49,"discountPercentage":8.69,"rating":3.39,"stock":27,"tags":["desserts"],"sku":"GRO-BRD-CRE-028","weight":1,"dimensions":{"width":14.83,"height":15.07,"depth":24.2},"warrantyInformation":"1 month warranty","shippingInformation":"Ships in 2 weeks","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Very pleased!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Elijah Cruz","reviewerEmail":"elijah.cruz@x.dummyjson.com"},{"rating":4,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Jace Smith","reviewerEmail":"jace.smith@x.dummyjson.com"},{"rating":5,"comment":"Highly impressed!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Sadie Morales","reviewerEmail":"sadie.morales@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":42,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"0788954559076","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/ice-cream/1.webp","https://cdn.dummyjson.com/product-images/groceries/ice-cream/2.webp","https://cdn.dummyjson.com/product-images/groceries/ice-cream/3.webp","https://cdn.dummyjson.com/product-images/groceries/ice-cream/4.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/ice-cream/thumbnail.webp"},{"id":29,"title":"Juice","description":"Refreshing fruit juice, packed with vitamins and great for staying hydrated.","category":"groceries","price":3.99,"discountPercentage":12.06,"rating":3.94,"stock":50,"tags":["beverages"],"sku":"GRO-BRD-JUI-029","weight":1,"dimensions":{"width":18.56,"height":21.46,"depth":28.02},"warrantyInformation":"6 months warranty","shippingInformation":"Ships in 1 week","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Nolan Gonzalez","reviewerEmail":"nolan.gonzalez@x.dummyjson.com"},{"rating":4,"comment":"Would buy again!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Bella Grant","reviewerEmail":"bella.grant@x.dummyjson.com"},{"rating":5,"comment":"Awesome product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Aria Flores","reviewerEmail":"aria.flores@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":25,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"6936112580956","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/juice/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/juice/thumbnail.webp"},{"id":30,"title":"Kiwi","description":"Nutrient-rich kiwi, perfect for snacking or adding a tropical twist to your dishes.","category":"groceries","price":2.49,"discountPercentage":15.22,"rating":4.93,"stock":99,"tags":["fruits"],"sku":"GRO-BRD-KIW-030","weight":5,"dimensions":{"width":19.4,"height":18.67,"depth":17.13},"warrantyInformation":"6 months warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Emily Brown","reviewerEmail":"emily.brown@x.dummyjson.com"},{"rating":2,"comment":"Would not buy again!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Jackson Morales","reviewerEmail":"jackson.morales@x.dummyjson.com"},{"rating":4,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Nora Russell","reviewerEmail":"nora.russell@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":30,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"2530169917252","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/kiwi/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/kiwi/thumbnail.webp"}],"total":194,"skip":0,"limit":30}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Products content is correct | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 3 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Retrieves detailed information about a specific product by its unique identifier.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/products/20`
## Authentication
- **Required**: No
- This is a public endpoint that doesn't require authentication
## Parameters
### Path Variables
- `productId` (required) - The unique identifier of the product to retrieve
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
{
"id": 1,
"title": "Product Name",
"description": "Product description",
"price": 549,
"discountPercentage": 12.96,
"rating": 4.69,
"stock": 94,
"brand": "Brand Name",
"category": "Category Name",
"thumbnail": "image_url",
"images": ["image1_url", "image2_url"]
}
```
## Tests Included
- Validates response status code is 200
- Verifies product object structure and required fields
- Checks data types for numeric and string fields
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDIsImV4cCI6MTc2OTk2NDgwMn0.eOl4rlRcy1_4uC78oP3cgGELQZbvAxI6k8OJ-wFOSs0 |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | b4412d22-3025-470c-bb7b-80a9fa4b2641 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDMsImV4cCI6MTc2OTk2MzAwM30.7nOyE34qTDx7fNesdzhke5DQc-odNHa-SVbo_Oti1tg; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDMsImV4cCI6MTc3MjU1MzIwM30.c9aI7-WsCLjZJA8EJ76slNIBR-Ckm8dtgvhTOiYKohs |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:23 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 95 |
| x-ratelimit-reset | 1769961207 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"55c-epT06uXY62/BP4rliBoJwBxhmRc" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=pJfvgzVMwummKcArGzdHaWM4DCgMIOHlgSlc63SPD3%2Ff%2BpnRnHXobjDaxketw26l9EEM%2Bi%2BIOhUpwZEtdNOdv2GA%2FHHj0W4JR9i7TXY%3D"}]} |
| CF-RAY | 9c729f136c202891-AMM |
{"id":20,"title":"Cooking Oil","description":"Versatile cooking oil suitable for frying, sautéing, and various culinary applications.","category":"groceries","price":4.99,"discountPercentage":9.33,"rating":4.8,"stock":10,"tags":["cooking essentials"],"sku":"GRO-BRD-COO-020","weight":5,"dimensions":{"width":19.95,"height":27.54,"depth":24.86},"warrantyInformation":"Lifetime warranty","shippingInformation":"Ships in 1-2 business days","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Very happy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Victoria McDonald","reviewerEmail":"victoria.mcdonald@x.dummyjson.com"},{"rating":2,"comment":"Would not recommend!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Hazel Evans","reviewerEmail":"hazel.evans@x.dummyjson.com"},{"rating":5,"comment":"Would buy again!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Zoe Bennett","reviewerEmail":"zoe.bennett@x.dummyjson.com"}],"returnPolicy":"30 days return policy","minimumOrderQuantity":46,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"4874727824518","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/cooking-oil/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/cooking-oil/thumbnail.webp"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Searches for products based on a query string, returning all products that match the search criteria.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/products/search?q=phone`
## Authentication
- **Required**: No
- This is a public endpoint that doesn't require authentication
## Parameters
### Query Parameters
- `q` (required) - The search query string to find matching products
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
{
"products": [
{
"id": 1,
"title": "Product Name",
"description": "Product description",
"price": 549,
"category": "Category Name",
...
}
],
"total": 4,
"skip": 0,
"limit": 30
}
```
## Tests Included
- Validates response status code is 200
- Verifies products array exists
- Checks pagination metadata (total, skip, limit)
- Confirms search results match query criteria
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDIsImV4cCI6MTc2OTk2NDgwMn0.eOl4rlRcy1_4uC78oP3cgGELQZbvAxI6k8OJ-wFOSs0 |
| Content-Type | text/plain |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 6bbb9b1c-0450-41b0-a621-840bda6dc7a1 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 61 |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDMsImV4cCI6MTc2OTk2MzAwM30.7nOyE34qTDx7fNesdzhke5DQc-odNHa-SVbo_Oti1tg; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDMsImV4cCI6MTc3MjU1MzIwM30.c9aI7-WsCLjZJA8EJ76slNIBR-Ckm8dtgvhTOiYKohs |
{
"username": "emilys",
"password": "emilyspass"
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:24 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 92 |
| x-ratelimit-reset | 1769961210 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"91a2-RFRCC1oz+o2Uvyk0nOQo9Pf5Q2g" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=N08U%2FrsxaF%2BRIF4TEvzUWnIsz8nGM878L9ZY%2F3taoZh2Vq7OGqXGe%2FM3JH2Lr%2FTXii%2FLUwLcBKiR0EAk0jzMgJUmtXkd4o3t2uvpOTk%3D"}]} |
| CF-RAY | 9c729f150e742891-AMM |
{"products":[{"id":101,"title":"Apple AirPods Max Silver","description":"The Apple AirPods Max in Silver are premium over-ear headphones with high-fidelity audio, adaptive EQ, and active noise cancellation. Experience immersive sound in style.","category":"mobile-accessories","price":549.99,"discountPercentage":13.67,"rating":3.47,"stock":59,"tags":["electronics","over-ear headphones"],"brand":"Apple","sku":"MOB-APP-APP-101","weight":2,"dimensions":{"width":24.88,"height":14.9,"depth":27.54},"warrantyInformation":"No warranty","shippingInformation":"Ships in 2 weeks","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Henry Adams","reviewerEmail":"henry.adams@x.dummyjson.com"},{"rating":4,"comment":"Very happy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Elijah Cruz","reviewerEmail":"elijah.cruz@x.dummyjson.com"},{"rating":4,"comment":"Would buy again!","date":"2025-04-30T09:41:02.053Z","reviewerName":"William Lopez","reviewerEmail":"william.lopez@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"4062176053732","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/mobile-accessories/apple-airpods-max-silver/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/mobile-accessories/apple-airpods-max-silver/thumbnail.webp"},{"id":104,"title":"Apple iPhone Charger","description":"The Apple iPhone Charger is a high-quality charger designed for fast and efficient charging of your iPhone. Ensure your device stays powered up and ready to go.","category":"mobile-accessories","price":19.99,"discountPercentage":18.52,"rating":4.15,"stock":31,"tags":["electronics","chargers"],"brand":"Apple","sku":"MOB-APP-APP-104","weight":1,"dimensions":{"width":13.63,"height":26.25,"depth":5.95},"warrantyInformation":"1 year warranty","shippingInformation":"Ships in 2 weeks","availabilityStatus":"In Stock","reviews":[{"rating":1,"comment":"Very disappointed!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Sadie Morales","reviewerEmail":"sadie.morales@x.dummyjson.com"},{"rating":5,"comment":"Great product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Lily Torres","reviewerEmail":"lily.torres@x.dummyjson.com"},{"rating":2,"comment":"Waste of money!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Luke Cooper","reviewerEmail":"luke.cooper@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":14,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"0879776541417","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/mobile-accessories/apple-iphone-charger/1.webp","https://cdn.dummyjson.com/product-images/mobile-accessories/apple-iphone-charger/2.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/mobile-accessories/apple-iphone-charger/thumbnail.webp"},{"id":105,"title":"Apple MagSafe Battery Pack","description":"The Apple MagSafe Battery Pack is a portable and convenient way to add extra battery life to your MagSafe-compatible iPhone. Attach it magnetically for a secure connection.","category":"mobile-accessories","price":99.99,"discountPercentage":17.17,"rating":3.62,"stock":1,"tags":["electronics","power banks"],"brand":"Apple","sku":"MOB-APP-APP-105","weight":6,"dimensions":{"width":15.4,"height":11.89,"depth":19.67},"warrantyInformation":"2 year warranty","shippingInformation":"Ships overnight","availabilityStatus":"Low Stock","reviews":[{"rating":2,"comment":"Would not recommend!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Stella Morris","reviewerEmail":"stella.morris@x.dummyjson.com"},{"rating":2,"comment":"Not as described!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Henry Adams","reviewerEmail":"henry.adams@x.dummyjson.com"},{"rating":5,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Cameron Burke","reviewerEmail":"cameron.burke@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":4,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"5157424897794","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/mobile-accessories/apple-magsafe-battery-pack/1.webp","https://cdn.dummyjson.com/product-images/mobile-accessories/apple-magsafe-battery-pack/2.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/mobile-accessories/apple-magsafe-battery-pack/thumbnail.webp"},{"id":107,"title":"Beats Flex Wireless Earphones","description":"The Beats Flex Wireless Earphones offer a comfortable and versatile audio experience. With magnetic earbuds and up to 12 hours of battery life, they are ideal for everyday use.","category":"mobile-accessories","price":49.99,"discountPercentage":5.73,"rating":4.24,"stock":50,"tags":["electronics","wireless earphones"],"brand":"Beats","sku":"MOB-BEA-BEA-107","weight":8,"dimensions":{"width":17.86,"height":25.74,"depth":23.09},"warrantyInformation":"1 year warranty","shippingInformation":"Ships in 1-2 business days","availabilityStatus":"In Stock","reviews":[{"rating":2,"comment":"Disappointing product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"William Gonzalez","reviewerEmail":"william.gonzalez@x.dummyjson.com"},{"rating":5,"comment":"Very pleased!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Gabriel Mitchell","reviewerEmail":"gabriel.mitchell@x.dummyjson.com"},{"rating":2,"comment":"Not worth the price!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Gabriel Adams","reviewerEmail":"gabriel.adams@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":17,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"1741271692174","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/mobile-accessories/beats-flex-wireless-earphones/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/mobile-accessories/beats-flex-wireless-earphones/thumbnail.webp"},{"id":108,"title":"iPhone 12 Silicone Case with MagSafe Plum","description":"The iPhone 12 Silicone Case with MagSafe in Plum is a stylish and protective case designed for the iPhone 12. It features MagSafe technology for easy attachment of accessories.","category":"mobile-accessories","price":29.99,"discountPercentage":13.85,"rating":3.62,"stock":69,"tags":["electronics","phone accessories"],"brand":"Apple","sku":"MOB-APP-IPH-108","weight":7,"dimensions":{"width":12.49,"height":11.29,"depth":23.52},"warrantyInformation":"3 months warranty","shippingInformation":"Ships in 3-5 business days","availabilityStatus":"In Stock","reviews":[{"rating":2,"comment":"Would not buy again!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Penelope King","reviewerEmail":"penelope.king@x.dummyjson.com"},{"rating":5,"comment":"Great value for money!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Isabella Anderson","reviewerEmail":"isabella.anderson@x.dummyjson.com"},{"rating":5,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Claire Foster","reviewerEmail":"claire.foster@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":4,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"8156838251449","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/mobile-accessories/iphone-12-silicone-case-with-magsafe-plum/1.webp","https://cdn.dummyjson.com/product-images/mobile-accessories/iphone-12-silicone-case-with-magsafe-plum/2.webp","https://cdn.dummyjson.com/product-images/mobile-accessories/iphone-12-silicone-case-with-magsafe-plum/3.webp","https://cdn.dummyjson.com/product-images/mobile-accessories/iphone-12-silicone-case-with-magsafe-plum/4.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/mobile-accessories/iphone-12-silicone-case-with-magsafe-plum/thumbnail.webp"},{"id":110,"title":"Selfie Lamp with iPhone","description":"The Selfie Lamp with iPhone is a portable and adjustable LED light designed to enhance your selfies and video calls. Attach it to your iPhone for well-lit photos.","category":"mobile-accessories","price":14.99,"discountPercentage":19.4,"rating":3.55,"stock":58,"tags":["electronics","selfie accessories"],"brand":"GadgetMaster","sku":"MOB-GAD-SEL-110","weight":10,"dimensions":{"width":5.26,"height":13.84,"depth":22.83},"warrantyInformation":"Lifetime warranty","shippingInformation":"Ships in 2 weeks","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Luke Cooper","reviewerEmail":"luke.cooper@x.dummyjson.com"},{"rating":3,"comment":"Poor quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Caleb Perkins","reviewerEmail":"caleb.perkins@x.dummyjson.com"},{"rating":4,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Benjamin Wilson","reviewerEmail":"benjamin.wilson@x.dummyjson.com"}],"returnPolicy":"60 days return policy","minimumOrderQuantity":22,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"4372781189895","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/mobile-accessories/selfie-lamp-with-iphone/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/mobile-accessories/selfie-lamp-with-iphone/thumbnail.webp"},{"id":111,"title":"Selfie Stick Monopod","description":"The Selfie Stick Monopod is a extendable and foldable device for capturing the perfect selfie or group photo. Compatible with smartphones and cameras.","category":"mobile-accessories","price":12.99,"discountPercentage":19.12,"rating":3.88,"stock":11,"tags":["electronics","selfie accessories"],"brand":"SnapTech","sku":"MOB-SNA-SEL-111","weight":2,"dimensions":{"width":24.76,"height":26.38,"depth":21.39},"warrantyInformation":"3 year warranty","shippingInformation":"Ships in 1-2 business days","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Great product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Ryan Graham","reviewerEmail":"ryan.graham@x.dummyjson.com"},{"rating":4,"comment":"Great product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Nora Russell","reviewerEmail":"nora.russell@x.dummyjson.com"},{"rating":1,"comment":"Very dissatisfied!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Luna Perez","reviewerEmail":"luna.perez@x.dummyjson.com"}],"returnPolicy":"30 days return policy","minimumOrderQuantity":8,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"7063982050226","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/mobile-accessories/selfie-stick-monopod/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/mobile-accessories/selfie-stick-monopod/thumbnail.webp"},{"id":121,"title":"iPhone 5s","description":"The iPhone 5s is a classic smartphone known for its compact design and advanced features during its release. While it's an older model, it still provides a reliable user experience.","category":"smartphones","price":199.99,"discountPercentage":12.91,"rating":2.83,"stock":25,"tags":["smartphones","apple"],"brand":"Apple","sku":"SMA-APP-IPH-121","weight":2,"dimensions":{"width":5.29,"height":18.38,"depth":17.72},"warrantyInformation":"Lifetime warranty","shippingInformation":"Ships in 1 month","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Jace Smith","reviewerEmail":"jace.smith@x.dummyjson.com"},{"rating":1,"comment":"Not as described!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Logan Torres","reviewerEmail":"logan.torres@x.dummyjson.com"},{"rating":5,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Harper Kelly","reviewerEmail":"harper.kelly@x.dummyjson.com"}],"returnPolicy":"60 days return policy","minimumOrderQuantity":3,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"8814683940853","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/iphone-5s/1.webp","https://cdn.dummyjson.com/product-images/smartphones/iphone-5s/2.webp","https://cdn.dummyjson.com/product-images/smartphones/iphone-5s/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/iphone-5s/thumbnail.webp"},{"id":122,"title":"iPhone 6","description":"The iPhone 6 is a stylish and capable smartphone with a larger display and improved performance. It introduced new features and design elements, making it a popular choice in its time.","category":"smartphones","price":299.99,"discountPercentage":6.69,"rating":3.41,"stock":60,"tags":["smartphones","apple"],"brand":"Apple","sku":"SMA-APP-IPH-122","weight":7,"dimensions":{"width":11,"height":9.1,"depth":9.67},"warrantyInformation":"1 month warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":3,"comment":"Disappointing product!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Stella Morris","reviewerEmail":"stella.morris@x.dummyjson.com"},{"rating":4,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Nolan Gonzalez","reviewerEmail":"nolan.gonzalez@x.dummyjson.com"},{"rating":5,"comment":"Great value for money!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Benjamin Foster","reviewerEmail":"benjamin.foster@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":5,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"9922357685013","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/iphone-6/1.webp","https://cdn.dummyjson.com/product-images/smartphones/iphone-6/2.webp","https://cdn.dummyjson.com/product-images/smartphones/iphone-6/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/iphone-6/thumbnail.webp"},{"id":123,"title":"iPhone 13 Pro","description":"The iPhone 13 Pro is a cutting-edge smartphone with a powerful camera system, high-performance chip, and stunning display. It offers advanced features for users who demand top-notch technology.","category":"smartphones","price":1099.99,"discountPercentage":9.37,"rating":4.12,"stock":56,"tags":["smartphones","apple"],"brand":"Apple","sku":"SMA-APP-IPH-123","weight":8,"dimensions":{"width":12.63,"height":5.28,"depth":14.29},"warrantyInformation":"3 year warranty","shippingInformation":"Ships in 2 weeks","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Would buy again!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Christian Perez","reviewerEmail":"christian.perez@x.dummyjson.com"},{"rating":3,"comment":"Not worth the price!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Liam Gonzalez","reviewerEmail":"liam.gonzalez@x.dummyjson.com"},{"rating":5,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Tristan Scott","reviewerEmail":"tristan.scott@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"4998438802308","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/iphone-13-pro/1.webp","https://cdn.dummyjson.com/product-images/smartphones/iphone-13-pro/2.webp","https://cdn.dummyjson.com/product-images/smartphones/iphone-13-pro/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/iphone-13-pro/thumbnail.webp"},{"id":124,"title":"iPhone X","description":"The iPhone X is a flagship smartphone featuring a bezel-less OLED display, facial recognition technology (Face ID), and impressive performance. It represents a milestone in iPhone design and innovation.","category":"smartphones","price":899.99,"discountPercentage":19.59,"rating":2.51,"stock":37,"tags":["smartphones","apple"],"brand":"Apple","sku":"SMA-APP-IPH-124","weight":1,"dimensions":{"width":21.88,"height":24.19,"depth":14.19},"warrantyInformation":"3 months warranty","shippingInformation":"Ships in 3-5 business days","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Tyler Davis","reviewerEmail":"tyler.davis@x.dummyjson.com"},{"rating":5,"comment":"Great product!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Aria Parker","reviewerEmail":"aria.parker@x.dummyjson.com"},{"rating":2,"comment":"Not as described!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Lily Torres","reviewerEmail":"lily.torres@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":2,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"3034949322264","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/iphone-x/1.webp","https://cdn.dummyjson.com/product-images/smartphones/iphone-x/2.webp","https://cdn.dummyjson.com/product-images/smartphones/iphone-x/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/iphone-x/thumbnail.webp"},{"id":125,"title":"Oppo A57","description":"The Oppo A57 is a mid-range smartphone known for its sleek design and capable features. It offers a balance of performance and affordability, making it a popular choice.","category":"smartphones","price":249.99,"discountPercentage":2.43,"rating":3.94,"stock":19,"tags":["smartphones","oppo"],"brand":"Oppo","sku":"SMA-OPP-OPP-125","weight":5,"dimensions":{"width":7.2,"height":10.74,"depth":23.68},"warrantyInformation":"Lifetime warranty","shippingInformation":"Ships in 3-5 business days","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Scarlett Wright","reviewerEmail":"scarlett.wright@x.dummyjson.com"},{"rating":5,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Jacob Cooper","reviewerEmail":"jacob.cooper@x.dummyjson.com"},{"rating":2,"comment":"Poor quality!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Zoe Nicholson","reviewerEmail":"zoe.nicholson@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":3,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"0651223722522","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/oppo-a57/1.webp","https://cdn.dummyjson.com/product-images/smartphones/oppo-a57/2.webp","https://cdn.dummyjson.com/product-images/smartphones/oppo-a57/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/oppo-a57/thumbnail.webp"},{"id":126,"title":"Oppo F19 Pro Plus","description":"The Oppo F19 Pro Plus is a feature-rich smartphone with a focus on camera capabilities. It boasts advanced photography features and a powerful performance for a premium user experience.","category":"smartphones","price":399.99,"discountPercentage":18.64,"rating":3.51,"stock":78,"tags":["smartphones","oppo"],"brand":"Oppo","sku":"SMA-OPP-OPP-126","weight":6,"dimensions":{"width":6.78,"height":25.17,"depth":8.4},"warrantyInformation":"3 year warranty","shippingInformation":"Ships in 1 week","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Very happy with my purchase!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Emily Johnson","reviewerEmail":"emily.johnson@x.dummyjson.com"},{"rating":5,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Jaxon Barnes","reviewerEmail":"jaxon.barnes@x.dummyjson.com"},{"rating":4,"comment":"Would buy again!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Nova Cooper","reviewerEmail":"nova.cooper@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"8576893968169","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/oppo-f19-pro-plus/1.webp","https://cdn.dummyjson.com/product-images/smartphones/oppo-f19-pro-plus/2.webp","https://cdn.dummyjson.com/product-images/smartphones/oppo-f19-pro-plus/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/oppo-f19-pro-plus/thumbnail.webp"},{"id":127,"title":"Oppo K1","description":"The Oppo K1 series offers a range of smartphones with various features and specifications. Known for their stylish design and reliable performance, the Oppo K1 series caters to diverse user preferences.","category":"smartphones","price":299.99,"discountPercentage":18.29,"rating":4.25,"stock":55,"tags":["smartphones","oppo"],"brand":"Oppo","sku":"SMA-OPP-OPP-127","weight":5,"dimensions":{"width":13.89,"height":10.63,"depth":16.6},"warrantyInformation":"1 month warranty","shippingInformation":"Ships in 1-2 business days","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Very pleased!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Christopher West","reviewerEmail":"christopher.west@x.dummyjson.com"},{"rating":4,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Mia Miller","reviewerEmail":"mia.miller@x.dummyjson.com"},{"rating":2,"comment":"Very dissatisfied!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Ella Adams","reviewerEmail":"ella.adams@x.dummyjson.com"}],"returnPolicy":"30 days return policy","minimumOrderQuantity":5,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"3106827888743","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/oppo-k1/1.webp","https://cdn.dummyjson.com/product-images/smartphones/oppo-k1/2.webp","https://cdn.dummyjson.com/product-images/smartphones/oppo-k1/3.webp","https://cdn.dummyjson.com/product-images/smartphones/oppo-k1/4.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/oppo-k1/thumbnail.webp"},{"id":128,"title":"Realme C35","description":"The Realme C35 is a budget-friendly smartphone with a focus on providing essential features for everyday use. It offers a reliable performance and user-friendly experience.","category":"smartphones","price":149.99,"discountPercentage":15.3,"rating":4.2,"stock":48,"tags":["smartphones","realme"],"brand":"Realme","sku":"SMA-REA-REA-128","weight":2,"dimensions":{"width":25.28,"height":8.14,"depth":29.53},"warrantyInformation":"3 year warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Great product!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Penelope King","reviewerEmail":"penelope.king@x.dummyjson.com"},{"rating":2,"comment":"Very unhappy with my purchase!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Asher Scott","reviewerEmail":"asher.scott@x.dummyjson.com"},{"rating":4,"comment":"Highly impressed!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Henry Adams","reviewerEmail":"henry.adams@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":3,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"7825844344364","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/realme-c35/1.webp","https://cdn.dummyjson.com/product-images/smartphones/realme-c35/2.webp","https://cdn.dummyjson.com/product-images/smartphones/realme-c35/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/realme-c35/thumbnail.webp"},{"id":129,"title":"Realme X","description":"The Realme X is a mid-range smartphone known for its sleek design and impressive display. It offers a good balance of performance and camera capabilities for users seeking a quality device.","category":"smartphones","price":299.99,"discountPercentage":6.95,"rating":3.7,"stock":12,"tags":["smartphones","realme"],"brand":"Realme","sku":"SMA-REA-REA-129","weight":4,"dimensions":{"width":25.59,"height":21.42,"depth":12.75},"warrantyInformation":"1 month warranty","shippingInformation":"Ships in 3-5 business days","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Would buy again!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Hazel Evans","reviewerEmail":"hazel.evans@x.dummyjson.com"},{"rating":5,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Brayden Fleming","reviewerEmail":"brayden.fleming@x.dummyjson.com"},{"rating":5,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Madison Stewart","reviewerEmail":"madison.stewart@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":3,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"4948452391831","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/realme-x/1.webp","https://cdn.dummyjson.com/product-images/smartphones/realme-x/2.webp","https://cdn.dummyjson.com/product-images/smartphones/realme-x/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/realme-x/thumbnail.webp"},{"id":130,"title":"Realme XT","description":"The Realme XT is a feature-rich smartphone with a focus on camera technology. It comes equipped with advanced camera sensors, delivering high-quality photos and videos for photography enthusiasts.","category":"smartphones","price":349.99,"discountPercentage":11.51,"rating":4.58,"stock":80,"tags":["smartphones","realme"],"brand":"Realme","sku":"SMA-REA-REA-130","weight":3,"dimensions":{"width":24.98,"height":26.73,"depth":6.5},"warrantyInformation":"3 year warranty","shippingInformation":"Ships in 1 month","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Emily Brown","reviewerEmail":"emily.brown@x.dummyjson.com"},{"rating":3,"comment":"Not as described!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Ella Cook","reviewerEmail":"ella.cook@x.dummyjson.com"},{"rating":5,"comment":"Would buy again!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Layla Sullivan","reviewerEmail":"layla.sullivan@x.dummyjson.com"}],"returnPolicy":"60 days return policy","minimumOrderQuantity":3,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"6151817227632","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/realme-xt/1.webp","https://cdn.dummyjson.com/product-images/smartphones/realme-xt/2.webp","https://cdn.dummyjson.com/product-images/smartphones/realme-xt/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/realme-xt/thumbnail.webp"},{"id":131,"title":"Samsung Galaxy S7","description":"The Samsung Galaxy S7 is a flagship smartphone known for its sleek design and advanced features. It features a high-resolution display, powerful camera, and robust performance.","category":"smartphones","price":299.99,"discountPercentage":19.55,"rating":3.3,"stock":67,"tags":["smartphones","samsung galaxy"],"brand":"Samsung","sku":"SMA-SAM-SAM-131","weight":10,"dimensions":{"width":13.55,"height":24.24,"depth":5.63},"warrantyInformation":"3 months warranty","shippingInformation":"Ships in 3-5 business days","availabilityStatus":"In Stock","reviews":[{"rating":1,"comment":"Not as described!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Julian James","reviewerEmail":"julian.james@x.dummyjson.com"},{"rating":4,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Lucas Gordon","reviewerEmail":"lucas.gordon@x.dummyjson.com"},{"rating":4,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Ava Taylor","reviewerEmail":"ava.taylor@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"7557912146622","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s7/1.webp","https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s7/2.webp","https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s7/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s7/thumbnail.webp"},{"id":132,"title":"Samsung Galaxy S8","description":"The Samsung Galaxy S8 is a premium smartphone with an Infinity Display, offering a stunning visual experience. It boasts advanced camera capabilities and cutting-edge technology.","category":"smartphones","price":499.99,"discountPercentage":19.45,"rating":4.4,"stock":0,"tags":["smartphones","samsung galaxy"],"brand":"Samsung","sku":"SMA-SAM-SAM-132","weight":6,"dimensions":{"width":23.05,"height":26.88,"depth":15.73},"warrantyInformation":"2 year warranty","shippingInformation":"Ships in 1 week","availabilityStatus":"Out of Stock","reviews":[{"rating":4,"comment":"Highly impressed!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Owen Fisher","reviewerEmail":"owen.fisher@x.dummyjson.com"},{"rating":4,"comment":"Highly impressed!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Clara Berry","reviewerEmail":"clara.berry@x.dummyjson.com"},{"rating":4,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Tyler Davis","reviewerEmail":"tyler.davis@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":4,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"5995499013336","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s8/1.webp","https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s8/2.webp","https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s8/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s8/thumbnail.webp"},{"id":133,"title":"Samsung Galaxy S10","description":"The Samsung Galaxy S10 is a flagship device featuring a dynamic AMOLED display, versatile camera system, and powerful performance. It represents innovation and excellence in smartphone technology.","category":"smartphones","price":699.99,"discountPercentage":5.59,"rating":3.06,"stock":19,"tags":["smartphones","samsung galaxy"],"brand":"Samsung","sku":"SMA-SAM-SAM-133","weight":9,"dimensions":{"width":27.41,"height":15.26,"depth":27.02},"warrantyInformation":"No warranty","shippingInformation":"Ships in 2 weeks","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Tristan Scott","reviewerEmail":"tristan.scott@x.dummyjson.com"},{"rating":5,"comment":"Would buy again!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Christopher West","reviewerEmail":"christopher.west@x.dummyjson.com"},{"rating":2,"comment":"Would not recommend!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Amelia Perez","reviewerEmail":"amelia.perez@x.dummyjson.com"}],"returnPolicy":"30 days return policy","minimumOrderQuantity":2,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"4676898229465","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s10/1.webp","https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s10/2.webp","https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s10/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s10/thumbnail.webp"},{"id":134,"title":"Vivo S1","description":"The Vivo S1 is a stylish and mid-range smartphone offering a blend of design and performance. It features a vibrant display, capable camera system, and reliable functionality.","category":"smartphones","price":249.99,"discountPercentage":10.17,"rating":3.5,"stock":50,"tags":["smartphones","vivo"],"brand":"Vivo","sku":"SMA-VIV-VIV-134","weight":4,"dimensions":{"width":14.06,"height":11.79,"depth":6.78},"warrantyInformation":"6 months warranty","shippingInformation":"Ships in 3-5 business days","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Samantha Martinez","reviewerEmail":"samantha.martinez@x.dummyjson.com"},{"rating":3,"comment":"Very disappointed!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Logan Lee","reviewerEmail":"logan.lee@x.dummyjson.com"},{"rating":4,"comment":"Would buy again!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Sophia Jones","reviewerEmail":"sophia.jones@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"8575699153333","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/vivo-s1/1.webp","https://cdn.dummyjson.com/product-images/smartphones/vivo-s1/2.webp","https://cdn.dummyjson.com/product-images/smartphones/vivo-s1/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/vivo-s1/thumbnail.webp"},{"id":135,"title":"Vivo V9","description":"The Vivo V9 is a smartphone known for its sleek design and emphasis on capturing high-quality selfies. It features a notch display, dual-camera setup, and a modern design.","category":"smartphones","price":299.99,"discountPercentage":17.67,"rating":3.6,"stock":82,"tags":["smartphones","vivo"],"brand":"Vivo","sku":"SMA-VIV-VIV-135","weight":4,"dimensions":{"width":19.85,"height":21.83,"depth":13.04},"warrantyInformation":"2 year warranty","shippingInformation":"Ships in 1 month","availabilityStatus":"In Stock","reviews":[{"rating":2,"comment":"Very unhappy with my purchase!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Logan Lawson","reviewerEmail":"logan.lawson@x.dummyjson.com"},{"rating":5,"comment":"Awesome product!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Layla Young","reviewerEmail":"layla.young@x.dummyjson.com"},{"rating":4,"comment":"Great value for money!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Asher Scott","reviewerEmail":"asher.scott@x.dummyjson.com"}],"returnPolicy":"60 days return policy","minimumOrderQuantity":2,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"4295398764784","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/vivo-v9/1.webp","https://cdn.dummyjson.com/product-images/smartphones/vivo-v9/2.webp","https://cdn.dummyjson.com/product-images/smartphones/vivo-v9/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/vivo-v9/thumbnail.webp"},{"id":136,"title":"Vivo X21","description":"The Vivo X21 is a premium smartphone with a focus on cutting-edge technology. It features an in-display fingerprint sensor, a high-resolution display, and advanced camera capabilities.","category":"smartphones","price":499.99,"discountPercentage":17.41,"rating":4.26,"stock":7,"tags":["smartphones","vivo"],"brand":"Vivo","sku":"SMA-VIV-VIV-136","weight":10,"dimensions":{"width":22.49,"height":21.62,"depth":27.88},"warrantyInformation":"1 year warranty","shippingInformation":"Ships in 1-2 business days","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Very pleased!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Liam Gonzalez","reviewerEmail":"liam.gonzalez@x.dummyjson.com"},{"rating":4,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Aurora Barnes","reviewerEmail":"aurora.barnes@x.dummyjson.com"},{"rating":2,"comment":"Not as described!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Evelyn Walker","reviewerEmail":"evelyn.walker@x.dummyjson.com"}],"returnPolicy":"60 days return policy","minimumOrderQuantity":3,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"9944308291810","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/vivo-x21/1.webp","https://cdn.dummyjson.com/product-images/smartphones/vivo-x21/2.webp","https://cdn.dummyjson.com/product-images/smartphones/vivo-x21/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/vivo-x21/thumbnail.webp"}],"total":23,"skip":0,"limit":23}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response has products array | 1 | 0 | 0 |
| Search result is not empty | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 4 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Retrieves a paginated list of products with specific fields selected, demonstrating pagination and field filtering capabilities.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/products?limit=10&skip=10&select=title,price`
## Authentication
- **Required**: No
- This is a public endpoint that doesn't require authentication
## Parameters
### Query Parameters
- `limit` (optional) - Number of products to return (default: 30)
- `skip` (optional) - Number of products to skip for pagination (default: 0)
- `select` (optional) - Comma-separated list of fields to include in response
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
{
"products": [
{
"id": 11,
"title": "Product Name",
"price": 549
}
],
"total": 194,
"skip": 10,
"limit": 10
}
```
## Tests Included
- Validates response status code is 200
- Verifies correct number of products returned (limit)
- Checks pagination offset (skip)
- Confirms only selected fields are present in response
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDIsImV4cCI6MTc2OTk2NDgwMn0.eOl4rlRcy1_4uC78oP3cgGELQZbvAxI6k8OJ-wFOSs0 |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 0ca81972-c254-45ab-a621-890abe10325d |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDMsImV4cCI6MTc2OTk2MzAwM30.7nOyE34qTDx7fNesdzhke5DQc-odNHa-SVbo_Oti1tg; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDMsImV4cCI6MTc3MjU1MzIwM30.c9aI7-WsCLjZJA8EJ76slNIBR-Ckm8dtgvhTOiYKohs |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:24 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 93 |
| x-ratelimit-reset | 1769961209 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"24c-Ixzqnac0wdL7dYxmEYVxYgj0DEw" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=ewG2pqnYQTo9jyx%2BAyFSQpGgtiXERrHQjRTfQuOl6Ae4hgRmuxmnTxxhk2AwwhucJecjH4Es5BsMg%2Fqa8dQ5CtypOM9DBGzIYDZGjkY%3D"}]} |
| Content-Encoding | br |
| CF-RAY | 9c729f16b9432891-AMM |
{"products":[{"id":11,"title":"Annibale Colombo Bed","price":1899.99},{"id":12,"title":"Annibale Colombo Sofa","price":2499.99},{"id":13,"title":"Bedside Table African Cherry","price":299.99},{"id":14,"title":"Knoll Saarinen Executive Conference Chair","price":499.99},{"id":15,"title":"Wooden Bathroom Sink With Mirror","price":799.99},{"id":16,"title":"Apple","price":1.99},{"id":17,"title":"Beef Steak","price":12.99},{"id":18,"title":"Cat Food","price":8.99},{"id":19,"title":"Chicken Meat","price":9.99},{"id":20,"title":"Cooking Oil","price":4.99}],"total":194,"skip":10,"limit":10}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDIsImV4cCI6MTc2OTk2NDgwMn0.eOl4rlRcy1_4uC78oP3cgGELQZbvAxI6k8OJ-wFOSs0 |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 517f6630-af79-40a4-84e5-6ecc2d9da82a |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDMsImV4cCI6MTc2OTk2MzAwM30.7nOyE34qTDx7fNesdzhke5DQc-odNHa-SVbo_Oti1tg; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDMsImV4cCI6MTc3MjU1MzIwM30.c9aI7-WsCLjZJA8EJ76slNIBR-Ckm8dtgvhTOiYKohs |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:24 GMT |
| Content-Type | application/json; charset=utf-8 |
| Content-Length | 47 |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 94 |
| x-ratelimit-reset | 1769961207 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"2f-Dm0cDEBeWcz70gE8IkcQnAojjLY" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=YcQxp2f%2FMM2ivbwaLQ3WdymR6zdfFLhFPvAqllylRQQwZBVFisTwmorgg0wxGMv5tIUQmAM%2FmiI1eSg2w89GjYkY0sRAmPblFItS%2FIY%3D"}]} |
| CF-RAY | 9c729f181b072891-AMM |
{"message":"Invalid 'skip' - must be a number"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 400 for invalid limit or skip | 1 | 0 | 0 |
| Error message is returned | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Retrieves all products sorted by a specific field in ascending or descending order.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/products?sortBy=title&order=asc`
## Authentication
- **Required**: No
- This is a public endpoint that doesn't require authentication
## Parameters
### Query Parameters
- `sortBy` (optional) - Field name to sort by (e.g., title, price, rating)
- `order` (optional) - Sort order: `asc` (ascending) or `desc` (descending)
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
{
"products": [
{
"id": 1,
"title": "A Product Name",
"price": 549,
...
}
],
"total": 194,
"skip": 0,
"limit": 30
}
```
## Tests Included
- Validates response status code is 200
- Verifies products array is sorted correctly
- Checks sort order matches requested order (asc/desc)
- Confirms all product fields are present
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDIsImV4cCI6MTc2OTk2NDgwMn0.eOl4rlRcy1_4uC78oP3cgGELQZbvAxI6k8OJ-wFOSs0 |
| Content-Type | text/plain |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 4ac0a20c-a540-4a47-a118-be8e21d4b404 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 61 |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDMsImV4cCI6MTc2OTk2MzAwM30.7nOyE34qTDx7fNesdzhke5DQc-odNHa-SVbo_Oti1tg; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDMsImV4cCI6MTc3MjU1MzIwM30.c9aI7-WsCLjZJA8EJ76slNIBR-Ckm8dtgvhTOiYKohs |
{
"username": "emilys",
"password": "emilyspass"
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:24 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 91 |
| x-ratelimit-reset | 1769961210 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"bb19-WvfGDU1qnETYvaDH9O+xwBDBd50" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=tMZUc8d5aSi0UJSXmcL2whE5jXGpVTxYL2IK5I2PmvEYx9ej9kwwaYQQ8ehX%2FhEyOh02RXhFJn1hYzoAAmw8uuEFLQooEs02ZwzQqRM%3D"}]} |
| CF-RAY | 9c729f198cf32891-AMM |
{"products":[{"id":167,"title":"300 Touring","description":"The 300 Touring is a stylish and comfortable sedan, known for its luxurious features and smooth performance.","category":"vehicle","price":28999.99,"discountPercentage":3.98,"rating":4.05,"stock":54,"tags":["sedans","vehicles"],"brand":"Chrysler","sku":"VEH-CHR-TOU-167","weight":9,"dimensions":{"width":19.2,"height":26.17,"depth":17.28},"warrantyInformation":"3 year warranty","shippingInformation":"Ships in 2 weeks","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Very pleased!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Luna Russell","reviewerEmail":"luna.russell@x.dummyjson.com"},{"rating":5,"comment":"Great product!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Harper Garcia","reviewerEmail":"harper.garcia@x.dummyjson.com"},{"rating":2,"comment":"Not as described!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Harper Turner","reviewerEmail":"harper.turner@x.dummyjson.com"}],"returnPolicy":"30 days return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"6337799339397","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/vehicle/300-touring/1.webp","https://cdn.dummyjson.com/product-images/vehicle/300-touring/2.webp","https://cdn.dummyjson.com/product-images/vehicle/300-touring/3.webp","https://cdn.dummyjson.com/product-images/vehicle/300-touring/4.webp","https://cdn.dummyjson.com/product-images/vehicle/300-touring/5.webp","https://cdn.dummyjson.com/product-images/vehicle/300-touring/6.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/vehicle/300-touring/thumbnail.webp"},{"id":99,"title":"Amazon Echo Plus","description":"The Amazon Echo Plus is a smart speaker with built-in Alexa voice control. It features premium sound quality and serves as a hub for controlling smart home devices.","category":"mobile-accessories","price":99.99,"discountPercentage":12.07,"rating":4.99,"stock":61,"tags":["electronics","smart speakers"],"brand":"Amazon","sku":"MOB-AMA-AMA-099","weight":5,"dimensions":{"width":12.68,"height":15.24,"depth":27.46},"warrantyInformation":"6 months warranty","shippingInformation":"Ships in 1 week","availabilityStatus":"In Stock","reviews":[{"rating":2,"comment":"Would not recommend!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Chloe Morales","reviewerEmail":"chloe.morales@x.dummyjson.com"},{"rating":3,"comment":"Very disappointed!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Mateo Perez","reviewerEmail":"mateo.perez@x.dummyjson.com"},{"rating":4,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Evelyn Walker","reviewerEmail":"evelyn.walker@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":9,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"2256117192038","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/mobile-accessories/amazon-echo-plus/1.webp","https://cdn.dummyjson.com/product-images/mobile-accessories/amazon-echo-plus/2.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/mobile-accessories/amazon-echo-plus/thumbnail.webp"},{"id":137,"title":"American Football","description":"The American Football is a classic ball used in American football games. It is designed for throwing and catching, making it an essential piece of equipment for the sport.","category":"sports-accessories","price":19.99,"discountPercentage":4.93,"rating":4.91,"stock":53,"tags":["sports equipment","american football"],"sku":"SPO-BRD-AME-137","weight":2,"dimensions":{"width":6.88,"height":5.82,"depth":21.96},"warrantyInformation":"6 months warranty","shippingInformation":"Ships in 1 month","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Awesome product!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Scarlett Bowman","reviewerEmail":"scarlett.bowman@x.dummyjson.com"},{"rating":4,"comment":"Would buy again!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Tristan Scott","reviewerEmail":"tristan.scott@x.dummyjson.com"},{"rating":4,"comment":"Very pleased!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Eleanor Tyler","reviewerEmail":"eleanor.tyler@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"0984311727547","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/sports-accessories/american-football/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/sports-accessories/american-football/thumbnail.webp"},{"id":11,"title":"Annibale Colombo Bed","description":"The Annibale Colombo Bed is a luxurious and elegant bed frame, crafted with high-quality materials for a comfortable and stylish bedroom.","category":"furniture","price":1899.99,"discountPercentage":8.57,"rating":4.77,"stock":88,"tags":["furniture","beds"],"brand":"Annibale Colombo","sku":"FUR-ANN-ANN-011","weight":10,"dimensions":{"width":28.16,"height":25.36,"depth":17.28},"warrantyInformation":"1 year warranty","shippingInformation":"Ships in 1 month","availabilityStatus":"In Stock","reviews":[{"rating":2,"comment":"Would not recommend!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Christopher West","reviewerEmail":"christopher.west@x.dummyjson.com"},{"rating":4,"comment":"Highly impressed!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Vivian Carter","reviewerEmail":"vivian.carter@x.dummyjson.com"},{"rating":1,"comment":"Poor quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Mason Wright","reviewerEmail":"mason.wright@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"3610757456581","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/furniture/annibale-colombo-bed/1.webp","https://cdn.dummyjson.com/product-images/furniture/annibale-colombo-bed/2.webp","https://cdn.dummyjson.com/product-images/furniture/annibale-colombo-bed/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/furniture/annibale-colombo-bed/thumbnail.webp"},{"id":12,"title":"Annibale Colombo Sofa","description":"The Annibale Colombo Sofa is a sophisticated and comfortable seating option, featuring exquisite design and premium upholstery for your living room.","category":"furniture","price":2499.99,"discountPercentage":14.4,"rating":3.92,"stock":60,"tags":["furniture","sofas"],"brand":"Annibale Colombo","sku":"FUR-ANN-ANN-012","weight":6,"dimensions":{"width":12.75,"height":20.55,"depth":19.06},"warrantyInformation":"Lifetime warranty","shippingInformation":"Ships in 1 week","availabilityStatus":"In Stock","reviews":[{"rating":3,"comment":"Very unhappy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Christian Perez","reviewerEmail":"christian.perez@x.dummyjson.com"},{"rating":5,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Lillian Bishop","reviewerEmail":"lillian.bishop@x.dummyjson.com"},{"rating":1,"comment":"Poor quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Lillian Simmons","reviewerEmail":"lillian.simmons@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"1777662847736","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/furniture/annibale-colombo-sofa/1.webp","https://cdn.dummyjson.com/product-images/furniture/annibale-colombo-sofa/2.webp","https://cdn.dummyjson.com/product-images/furniture/annibale-colombo-sofa/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/furniture/annibale-colombo-sofa/thumbnail.webp"},{"id":16,"title":"Apple","description":"Fresh and crisp apples, perfect for snacking or incorporating into various recipes.","category":"groceries","price":1.99,"discountPercentage":12.62,"rating":4.19,"stock":8,"tags":["fruits"],"sku":"GRO-BRD-APP-016","weight":9,"dimensions":{"width":13.66,"height":11.01,"depth":9.73},"warrantyInformation":"3 year warranty","shippingInformation":"Ships in 2 weeks","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Sophia Brown","reviewerEmail":"sophia.brown@x.dummyjson.com"},{"rating":1,"comment":"Very dissatisfied!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Scarlett Bowman","reviewerEmail":"scarlett.bowman@x.dummyjson.com"},{"rating":3,"comment":"Very unhappy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"William Gonzalez","reviewerEmail":"william.gonzalez@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":7,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"7962803553314","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/apple/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/apple/thumbnail.webp"},{"id":101,"title":"Apple AirPods Max Silver","description":"The Apple AirPods Max in Silver are premium over-ear headphones with high-fidelity audio, adaptive EQ, and active noise cancellation. Experience immersive sound in style.","category":"mobile-accessories","price":549.99,"discountPercentage":13.67,"rating":3.47,"stock":59,"tags":["electronics","over-ear headphones"],"brand":"Apple","sku":"MOB-APP-APP-101","weight":2,"dimensions":{"width":24.88,"height":14.9,"depth":27.54},"warrantyInformation":"No warranty","shippingInformation":"Ships in 2 weeks","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Henry Adams","reviewerEmail":"henry.adams@x.dummyjson.com"},{"rating":4,"comment":"Very happy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Elijah Cruz","reviewerEmail":"elijah.cruz@x.dummyjson.com"},{"rating":4,"comment":"Would buy again!","date":"2025-04-30T09:41:02.053Z","reviewerName":"William Lopez","reviewerEmail":"william.lopez@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"4062176053732","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/mobile-accessories/apple-airpods-max-silver/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/mobile-accessories/apple-airpods-max-silver/thumbnail.webp"},{"id":100,"title":"Apple Airpods","description":"The Apple Airpods offer a seamless wireless audio experience. With easy pairing, high-quality sound, and Siri integration, they are perfect for on-the-go listening.","category":"mobile-accessories","price":129.99,"discountPercentage":15.54,"rating":4.15,"stock":67,"tags":["electronics","wireless earphones"],"brand":"Apple","sku":"MOB-APP-APP-100","weight":4,"dimensions":{"width":25.79,"height":18.38,"depth":11.53},"warrantyInformation":"3 year warranty","shippingInformation":"Ships in 3-5 business days","availabilityStatus":"In Stock","reviews":[{"rating":3,"comment":"Would not buy again!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Christopher West","reviewerEmail":"christopher.west@x.dummyjson.com"},{"rating":5,"comment":"Great product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Emma Wilson","reviewerEmail":"emma.wilson@x.dummyjson.com"},{"rating":4,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Xavier Wright","reviewerEmail":"xavier.wright@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":4,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"1104115683955","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/mobile-accessories/apple-airpods/1.webp","https://cdn.dummyjson.com/product-images/mobile-accessories/apple-airpods/2.webp","https://cdn.dummyjson.com/product-images/mobile-accessories/apple-airpods/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/mobile-accessories/apple-airpods/thumbnail.webp"},{"id":102,"title":"Apple Airpower Wireless Charger","description":"The Apple AirPower Wireless Charger provides a convenient way to charge your compatible Apple devices wirelessly. Simply place your devices on the charging mat for effortless charging.","category":"mobile-accessories","price":79.99,"discountPercentage":4.48,"rating":3.68,"stock":1,"tags":["electronics","wireless chargers"],"brand":"Apple","sku":"MOB-APP-APP-102","weight":5,"dimensions":{"width":25.25,"height":25.44,"depth":10.98},"warrantyInformation":"2 year warranty","shippingInformation":"Ships in 1 week","availabilityStatus":"Low Stock","reviews":[{"rating":5,"comment":"Would buy again!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Christian Perez","reviewerEmail":"christian.perez@x.dummyjson.com"},{"rating":4,"comment":"Awesome product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Ruby Andrews","reviewerEmail":"ruby.andrews@x.dummyjson.com"},{"rating":3,"comment":"Not worth the price!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Harper Turner","reviewerEmail":"harper.turner@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":7,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"3323662242939","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/mobile-accessories/apple-airpower-wireless-charger/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/mobile-accessories/apple-airpower-wireless-charger/thumbnail.webp"},{"id":103,"title":"Apple HomePod Mini Cosmic Grey","description":"The Apple HomePod Mini in Cosmic Grey is a compact smart speaker that delivers impressive audio and integrates seamlessly with the Apple ecosystem for a smart home experience.","category":"mobile-accessories","price":99.99,"discountPercentage":18.1,"rating":4.62,"stock":27,"tags":["electronics","smart speakers"],"brand":"Apple","sku":"MOB-APP-APP-103","weight":10,"dimensions":{"width":16.02,"height":29.2,"depth":19.81},"warrantyInformation":"3 months warranty","shippingInformation":"Ships in 1 month","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Great product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Max Russell","reviewerEmail":"max.russell@x.dummyjson.com"},{"rating":3,"comment":"Would not buy again!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Isaac Lawrence","reviewerEmail":"isaac.lawrence@x.dummyjson.com"},{"rating":4,"comment":"Very pleased!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Avery Carter","reviewerEmail":"avery.carter@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":8,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"6135642608024","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/mobile-accessories/apple-homepod-mini-cosmic-grey/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/mobile-accessories/apple-homepod-mini-cosmic-grey/thumbnail.webp"},{"id":78,"title":"Apple MacBook Pro 14 Inch Space Grey","description":"The MacBook Pro 14 Inch in Space Grey is a powerful and sleek laptop, featuring Apple's M1 Pro chip for exceptional performance and a stunning Retina display.","category":"laptops","price":1999.99,"discountPercentage":4.69,"rating":3.65,"stock":24,"tags":["laptops","apple"],"brand":"Apple","sku":"LAP-APP-APP-078","weight":9,"dimensions":{"width":20.03,"height":9.54,"depth":14.82},"warrantyInformation":"3 year warranty","shippingInformation":"Ships in 2 weeks","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Very happy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Hazel Evans","reviewerEmail":"hazel.evans@x.dummyjson.com"},{"rating":5,"comment":"Very happy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Christopher West","reviewerEmail":"christopher.west@x.dummyjson.com"},{"rating":4,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Aubrey Garcia","reviewerEmail":"aubrey.garcia@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"5275211560367","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/laptops/apple-macbook-pro-14-inch-space-grey/1.webp","https://cdn.dummyjson.com/product-images/laptops/apple-macbook-pro-14-inch-space-grey/2.webp","https://cdn.dummyjson.com/product-images/laptops/apple-macbook-pro-14-inch-space-grey/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/laptops/apple-macbook-pro-14-inch-space-grey/thumbnail.webp"},{"id":105,"title":"Apple MagSafe Battery Pack","description":"The Apple MagSafe Battery Pack is a portable and convenient way to add extra battery life to your MagSafe-compatible iPhone. Attach it magnetically for a secure connection.","category":"mobile-accessories","price":99.99,"discountPercentage":17.17,"rating":3.62,"stock":1,"tags":["electronics","power banks"],"brand":"Apple","sku":"MOB-APP-APP-105","weight":6,"dimensions":{"width":15.4,"height":11.89,"depth":19.67},"warrantyInformation":"2 year warranty","shippingInformation":"Ships overnight","availabilityStatus":"Low Stock","reviews":[{"rating":2,"comment":"Would not recommend!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Stella Morris","reviewerEmail":"stella.morris@x.dummyjson.com"},{"rating":2,"comment":"Not as described!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Henry Adams","reviewerEmail":"henry.adams@x.dummyjson.com"},{"rating":5,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Cameron Burke","reviewerEmail":"cameron.burke@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":4,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"5157424897794","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/mobile-accessories/apple-magsafe-battery-pack/1.webp","https://cdn.dummyjson.com/product-images/mobile-accessories/apple-magsafe-battery-pack/2.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/mobile-accessories/apple-magsafe-battery-pack/thumbnail.webp"},{"id":106,"title":"Apple Watch Series 4 Gold","description":"The Apple Watch Series 4 in Gold is a stylish and advanced smartwatch with features like heart rate monitoring, fitness tracking, and a beautiful Retina display.","category":"mobile-accessories","price":349.99,"discountPercentage":12.02,"rating":2.74,"stock":33,"tags":["electronics","smartwatches"],"brand":"Apple","sku":"MOB-APP-APP-106","weight":6,"dimensions":{"width":27.69,"height":28.03,"depth":7.11},"warrantyInformation":"6 months warranty","shippingInformation":"Ships in 1 month","availabilityStatus":"In Stock","reviews":[{"rating":3,"comment":"Very unhappy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Chloe Morales","reviewerEmail":"chloe.morales@x.dummyjson.com"},{"rating":4,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Ava Harrison","reviewerEmail":"ava.harrison@x.dummyjson.com"},{"rating":4,"comment":"Would buy again!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Nicholas Bailey","reviewerEmail":"nicholas.bailey@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":3,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"3921248718888","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/mobile-accessories/apple-watch-series-4-gold/1.webp","https://cdn.dummyjson.com/product-images/mobile-accessories/apple-watch-series-4-gold/2.webp","https://cdn.dummyjson.com/product-images/mobile-accessories/apple-watch-series-4-gold/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/mobile-accessories/apple-watch-series-4-gold/thumbnail.webp"},{"id":104,"title":"Apple iPhone Charger","description":"The Apple iPhone Charger is a high-quality charger designed for fast and efficient charging of your iPhone. Ensure your device stays powered up and ready to go.","category":"mobile-accessories","price":19.99,"discountPercentage":18.52,"rating":4.15,"stock":31,"tags":["electronics","chargers"],"brand":"Apple","sku":"MOB-APP-APP-104","weight":1,"dimensions":{"width":13.63,"height":26.25,"depth":5.95},"warrantyInformation":"1 year warranty","shippingInformation":"Ships in 2 weeks","availabilityStatus":"In Stock","reviews":[{"rating":1,"comment":"Very disappointed!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Sadie Morales","reviewerEmail":"sadie.morales@x.dummyjson.com"},{"rating":5,"comment":"Great product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Lily Torres","reviewerEmail":"lily.torres@x.dummyjson.com"},{"rating":2,"comment":"Waste of money!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Luke Cooper","reviewerEmail":"luke.cooper@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":14,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"0879776541417","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/mobile-accessories/apple-iphone-charger/1.webp","https://cdn.dummyjson.com/product-images/mobile-accessories/apple-iphone-charger/2.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/mobile-accessories/apple-iphone-charger/thumbnail.webp"},{"id":79,"title":"Asus Zenbook Pro Dual Screen Laptop","description":"The Asus Zenbook Pro Dual Screen Laptop is a high-performance device with dual screens, providing productivity and versatility for creative professionals.","category":"laptops","price":1799.99,"discountPercentage":11.14,"rating":3.95,"stock":45,"tags":["laptops"],"brand":"Asus","sku":"LAP-ASU-ASU-079","weight":9,"dimensions":{"width":16.6,"height":11.49,"depth":10.89},"warrantyInformation":"3 year warranty","shippingInformation":"Ships in 1 month","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Very happy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Michael Johnson","reviewerEmail":"michael.johnson@x.dummyjson.com"},{"rating":5,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Zoe Bennett","reviewerEmail":"zoe.bennett@x.dummyjson.com"},{"rating":4,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Mila Hernandez","reviewerEmail":"mila.hernandez@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"7392988535158","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/laptops/asus-zenbook-pro-dual-screen-laptop/1.webp","https://cdn.dummyjson.com/product-images/laptops/asus-zenbook-pro-dual-screen-laptop/2.webp","https://cdn.dummyjson.com/product-images/laptops/asus-zenbook-pro-dual-screen-laptop/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/laptops/asus-zenbook-pro-dual-screen-laptop/thumbnail.webp"},{"id":118,"title":"Attitude Super Leaves Hand Soap","description":"Attitude Super Leaves Hand Soap is a natural and nourishing hand soap enriched with the goodness of super leaves. It cleanses and moisturizes your hands, leaving them feeling fresh and soft.","category":"skin-care","price":8.99,"discountPercentage":18.49,"rating":3.19,"stock":94,"tags":["personal care","hand soap"],"brand":"Attitude","sku":"SKI-ATT-ATT-118","weight":1,"dimensions":{"width":14.05,"height":8.3,"depth":16.62},"warrantyInformation":"6 months warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Liam Garcia","reviewerEmail":"liam.garcia@x.dummyjson.com"},{"rating":4,"comment":"Great product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Victoria McDonald","reviewerEmail":"victoria.mcdonald@x.dummyjson.com"},{"rating":5,"comment":"Very happy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Hannah Robinson","reviewerEmail":"hannah.robinson@x.dummyjson.com"}],"returnPolicy":"60 days return policy","minimumOrderQuantity":41,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"3566048905322","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/skin-care/attitude-super-leaves-hand-soap/1.webp","https://cdn.dummyjson.com/product-images/skin-care/attitude-super-leaves-hand-soap/2.webp","https://cdn.dummyjson.com/product-images/skin-care/attitude-super-leaves-hand-soap/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/skin-care/attitude-super-leaves-hand-soap/thumbnail.webp"},{"id":48,"title":"Bamboo Spatula","description":"The Bamboo Spatula is a versatile kitchen tool made from eco-friendly bamboo. Ideal for flipping, stirring, and serving various dishes.","category":"kitchen-accessories","price":7.99,"discountPercentage":2.84,"rating":3.27,"stock":37,"tags":["kitchen tools","utensils"],"sku":"KIT-BRD-BAM-048","weight":3,"dimensions":{"width":21.32,"height":23.03,"depth":25.94},"warrantyInformation":"1 month warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Awesome product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Lucas Ramirez","reviewerEmail":"lucas.ramirez@x.dummyjson.com"},{"rating":5,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Caleb Perkins","reviewerEmail":"caleb.perkins@x.dummyjson.com"},{"rating":4,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Nolan Gonzalez","reviewerEmail":"nolan.gonzalez@x.dummyjson.com"}],"returnPolicy":"60 days return policy","minimumOrderQuantity":29,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"3988181417733","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/kitchen-accessories/bamboo-spatula/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/kitchen-accessories/bamboo-spatula/thumbnail.webp"},{"id":138,"title":"Baseball Ball","description":"The Baseball Ball is a standard baseball used in baseball games. It features a durable leather cover and is designed for pitching, hitting, and fielding in the game of baseball.","category":"sports-accessories","price":8.99,"discountPercentage":1.71,"rating":2.57,"stock":100,"tags":["sports equipment","baseball"],"sku":"SPO-BRD-BAS-138","weight":5,"dimensions":{"width":14.42,"height":22.65,"depth":15.89},"warrantyInformation":"6 months warranty","shippingInformation":"Ships in 1 week","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Scarlett Wright","reviewerEmail":"scarlett.wright@x.dummyjson.com"},{"rating":4,"comment":"Great value for money!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Carter Baker","reviewerEmail":"carter.baker@x.dummyjson.com"},{"rating":1,"comment":"Poor quality!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Aria Flores","reviewerEmail":"aria.flores@x.dummyjson.com"}],"returnPolicy":"30 days return policy","minimumOrderQuantity":11,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"8981184448425","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/sports-accessories/baseball-ball/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/sports-accessories/baseball-ball/thumbnail.webp"},{"id":139,"title":"Baseball Glove","description":"The Baseball Glove is a protective glove worn by baseball players. It is designed to catch and field the baseball, providing players with comfort and control during the game.","category":"sports-accessories","price":24.99,"discountPercentage":2.9,"rating":3.96,"stock":22,"tags":["sports equipment","baseball"],"sku":"SPO-BRD-BAS-139","weight":1,"dimensions":{"width":23.84,"height":11.12,"depth":5.85},"warrantyInformation":"Lifetime warranty","shippingInformation":"Ships in 2 weeks","availabilityStatus":"In Stock","reviews":[{"rating":1,"comment":"Very unhappy with my purchase!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Hazel Gardner","reviewerEmail":"hazel.gardner@x.dummyjson.com"},{"rating":4,"comment":"Great value for money!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Scarlett Wright","reviewerEmail":"scarlett.wright@x.dummyjson.com"},{"rating":3,"comment":"Would not recommend!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Nathan Reed","reviewerEmail":"nathan.reed@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":8,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"1607433635330","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/sports-accessories/baseball-glove/1.webp","https://cdn.dummyjson.com/product-images/sports-accessories/baseball-glove/2.webp","https://cdn.dummyjson.com/product-images/sports-accessories/baseball-glove/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/sports-accessories/baseball-glove/thumbnail.webp"},{"id":140,"title":"Basketball","description":"The Basketball is a standard ball used in basketball games. It is designed for dribbling, shooting, and passing in the game of basketball, suitable for both indoor and outdoor play.","category":"sports-accessories","price":14.99,"discountPercentage":7.44,"rating":4.66,"stock":75,"tags":["sports equipment","basketball"],"sku":"SPO-BRD-BAS-140","weight":7,"dimensions":{"width":27.86,"height":10.64,"depth":18.75},"warrantyInformation":"1 year warranty","shippingInformation":"Ships in 1 week","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Mia Rodriguez","reviewerEmail":"mia.rodriguez@x.dummyjson.com"},{"rating":2,"comment":"Would not buy again!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Ella Adams","reviewerEmail":"ella.adams@x.dummyjson.com"},{"rating":4,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Aubrey Garcia","reviewerEmail":"aubrey.garcia@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":11,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"3219724919696","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/sports-accessories/basketball/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/sports-accessories/basketball/thumbnail.webp"},{"id":141,"title":"Basketball Rim","description":"The Basketball Rim is a sturdy hoop and net assembly mounted on a basketball backboard. It provides a target for shooting and scoring in the game of basketball.","category":"sports-accessories","price":39.99,"discountPercentage":7.74,"rating":4.6,"stock":43,"tags":["sports equipment","basketball"],"sku":"SPO-BRD-BAS-141","weight":1,"dimensions":{"width":15.83,"height":20.87,"depth":7.27},"warrantyInformation":"3 months warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Mason Wright","reviewerEmail":"mason.wright@x.dummyjson.com"},{"rating":5,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Tristan Scott","reviewerEmail":"tristan.scott@x.dummyjson.com"},{"rating":1,"comment":"Would not buy again!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Max Parker","reviewerEmail":"max.parker@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":9,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"6916173283925","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/sports-accessories/basketball-rim/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/sports-accessories/basketball-rim/thumbnail.webp"},{"id":107,"title":"Beats Flex Wireless Earphones","description":"The Beats Flex Wireless Earphones offer a comfortable and versatile audio experience. With magnetic earbuds and up to 12 hours of battery life, they are ideal for everyday use.","category":"mobile-accessories","price":49.99,"discountPercentage":5.73,"rating":4.24,"stock":50,"tags":["electronics","wireless earphones"],"brand":"Beats","sku":"MOB-BEA-BEA-107","weight":8,"dimensions":{"width":17.86,"height":25.74,"depth":23.09},"warrantyInformation":"1 year warranty","shippingInformation":"Ships in 1-2 business days","availabilityStatus":"In Stock","reviews":[{"rating":2,"comment":"Disappointing product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"William Gonzalez","reviewerEmail":"william.gonzalez@x.dummyjson.com"},{"rating":5,"comment":"Very pleased!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Gabriel Mitchell","reviewerEmail":"gabriel.mitchell@x.dummyjson.com"},{"rating":2,"comment":"Not worth the price!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Gabriel Adams","reviewerEmail":"gabriel.adams@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":17,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"1741271692174","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/mobile-accessories/beats-flex-wireless-earphones/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/mobile-accessories/beats-flex-wireless-earphones/thumbnail.webp"},{"id":13,"title":"Bedside Table African Cherry","description":"The Bedside Table in African Cherry is a stylish and functional addition to your bedroom, providing convenient storage space and a touch of elegance.","category":"furniture","price":299.99,"discountPercentage":19.09,"rating":2.87,"stock":64,"tags":["furniture","bedside tables"],"brand":"Furniture Co.","sku":"FUR-FUR-BED-013","weight":2,"dimensions":{"width":13.47,"height":24.99,"depth":27.35},"warrantyInformation":"5 year warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Aaliyah Hanson","reviewerEmail":"aaliyah.hanson@x.dummyjson.com"},{"rating":4,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Liam Smith","reviewerEmail":"liam.smith@x.dummyjson.com"},{"rating":4,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Avery Barnes","reviewerEmail":"avery.barnes@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":3,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"6441287925979","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/furniture/bedside-table-african-cherry/1.webp","https://cdn.dummyjson.com/product-images/furniture/bedside-table-african-cherry/2.webp","https://cdn.dummyjson.com/product-images/furniture/bedside-table-african-cherry/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/furniture/bedside-table-african-cherry/thumbnail.webp"},{"id":17,"title":"Beef Steak","description":"High-quality beef steak, great for grilling or cooking to your preferred level of doneness.","category":"groceries","price":12.99,"discountPercentage":9.61,"rating":4.47,"stock":86,"tags":["meat"],"sku":"GRO-BRD-BEE-017","weight":10,"dimensions":{"width":18.9,"height":5.77,"depth":18.57},"warrantyInformation":"3 year warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":3,"comment":"Would not recommend!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Eleanor Tyler","reviewerEmail":"eleanor.tyler@x.dummyjson.com"},{"rating":4,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Alexander Jones","reviewerEmail":"alexander.jones@x.dummyjson.com"},{"rating":5,"comment":"Great value for money!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Natalie Harris","reviewerEmail":"natalie.harris@x.dummyjson.com"}],"returnPolicy":"60 days return policy","minimumOrderQuantity":43,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"5640063409695","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/beef-steak/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/beef-steak/thumbnail.webp"},{"id":185,"title":"Black & Brown Slipper","description":"The Black & Brown Slipper is a comfortable and stylish choice for casual wear. Featuring a blend of black and brown colors, it adds a touch of sophistication to your relaxation.","category":"womens-shoes","price":19.99,"discountPercentage":3.33,"rating":2.53,"stock":3,"tags":["footwear","slippers"],"brand":"Comfort Trends","sku":"WOM-COM-BLA-185","weight":5,"dimensions":{"width":21.35,"height":26.21,"depth":17},"warrantyInformation":"Lifetime warranty","shippingInformation":"Ships in 1 month","availabilityStatus":"Low Stock","reviews":[{"rating":5,"comment":"Highly impressed!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Isaac Lawrence","reviewerEmail":"isaac.lawrence@x.dummyjson.com"},{"rating":2,"comment":"Not worth the price!","date":"2025-04-30T09:41:02.054Z","reviewerName":"William Gonzalez","reviewerEmail":"william.gonzalez@x.dummyjson.com"},{"rating":4,"comment":"Very happy with my purchase!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Sophia Jones","reviewerEmail":"sophia.jones@x.dummyjson.com"}],"returnPolicy":"60 days return policy","minimumOrderQuantity":47,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"5732146194724","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/womens-shoes/black-&-brown-slipper/1.webp","https://cdn.dummyjson.com/product-images/womens-shoes/black-&-brown-slipper/2.webp","https://cdn.dummyjson.com/product-images/womens-shoes/black-&-brown-slipper/3.webp","https://cdn.dummyjson.com/product-images/womens-shoes/black-&-brown-slipper/4.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/womens-shoes/black-&-brown-slipper/thumbnail.webp"},{"id":49,"title":"Black Aluminium Cup","description":"The Black Aluminium Cup is a stylish and durable cup suitable for both hot and cold beverages. Its sleek black design adds a modern touch to your drinkware collection.","category":"kitchen-accessories","price":5.99,"discountPercentage":15.65,"rating":4.46,"stock":75,"tags":["drinkware","cups"],"sku":"KIT-BRD-BLA-049","weight":7,"dimensions":{"width":5.88,"height":5.11,"depth":10.03},"warrantyInformation":"1 year warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":3,"comment":"Very disappointed!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Alexander Hernandez","reviewerEmail":"alexander.hernandez@x.dummyjson.com"},{"rating":5,"comment":"Great value for money!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Aurora Rodriguez","reviewerEmail":"aurora.rodriguez@x.dummyjson.com"},{"rating":1,"comment":"Not worth the price!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Benjamin Foster","reviewerEmail":"benjamin.foster@x.dummyjson.com"}],"returnPolicy":"30 days return policy","minimumOrderQuantity":48,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"5606164195748","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/kitchen-accessories/black-aluminium-cup/1.webp","https://cdn.dummyjson.com/product-images/kitchen-accessories/black-aluminium-cup/2.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/kitchen-accessories/black-aluminium-cup/thumbnail.webp"},{"id":154,"title":"Black Sun Glasses","description":"The Black Sun Glasses are a classic and stylish choice, featuring a sleek black frame and tinted lenses. They provide both UV protection and a fashionable look.","category":"sunglasses","price":29.99,"discountPercentage":4.94,"rating":4.41,"stock":60,"tags":["eyewear","sunglasses"],"brand":"Fashion Shades","sku":"SUN-FAS-BLA-154","weight":1,"dimensions":{"width":18.51,"height":15.69,"depth":10.11},"warrantyInformation":"No warranty","shippingInformation":"Ships in 1-2 business days","availabilityStatus":"In Stock","reviews":[{"rating":3,"comment":"Would not recommend!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Jonathan Pierce","reviewerEmail":"jonathan.pierce@x.dummyjson.com"},{"rating":2,"comment":"Disappointing product!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Owen Fisher","reviewerEmail":"owen.fisher@x.dummyjson.com"},{"rating":4,"comment":"Very happy with my purchase!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Samantha Martinez","reviewerEmail":"samantha.martinez@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":17,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"1045032983803","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/sunglasses/black-sun-glasses/1.webp","https://cdn.dummyjson.com/product-images/sunglasses/black-sun-glasses/2.webp","https://cdn.dummyjson.com/product-images/sunglasses/black-sun-glasses/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/sunglasses/black-sun-glasses/thumbnail.webp"},{"id":50,"title":"Black Whisk","description":"The Black Whisk is a kitchen essential for whisking and beating ingredients. Its ergonomic handle and sleek design make it a practical and stylish tool.","category":"kitchen-accessories","price":9.99,"discountPercentage":10.24,"rating":3.9,"stock":73,"tags":["kitchen tools","utensils"],"sku":"KIT-BRD-BLA-050","weight":1,"dimensions":{"width":13.03,"height":5.99,"depth":20.64},"warrantyInformation":"3 months warranty","shippingInformation":"Ships in 1 month","availabilityStatus":"In Stock","reviews":[{"rating":3,"comment":"Not worth the price!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Cameron Perez","reviewerEmail":"cameron.perez@x.dummyjson.com"},{"rating":1,"comment":"Waste of money!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Benjamin Foster","reviewerEmail":"benjamin.foster@x.dummyjson.com"},{"rating":5,"comment":"Very pleased!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Paisley Bell","reviewerEmail":"paisley.bell@x.dummyjson.com"}],"returnPolicy":"30 days return policy","minimumOrderQuantity":40,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"3112495795209","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/kitchen-accessories/black-whisk/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/kitchen-accessories/black-whisk/thumbnail.webp"},{"id":177,"title":"Black Women's Gown","description":"The Black Women's Gown is an elegant and timeless evening gown. With a sleek black design, it's perfect for formal events and special occasions, exuding sophistication and style.","category":"womens-dresses","price":129.99,"discountPercentage":10.48,"rating":3.64,"stock":25,"tags":["clothing","gowns"],"sku":"WOM-BRD-BLA-177","weight":2,"dimensions":{"width":7.86,"height":9.02,"depth":25.82},"warrantyInformation":"Lifetime warranty","shippingInformation":"Ships in 1 week","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Great value for money!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Ethan Fletcher","reviewerEmail":"ethan.fletcher@x.dummyjson.com"},{"rating":3,"comment":"Very dissatisfied!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Julian Newton","reviewerEmail":"julian.newton@x.dummyjson.com"},{"rating":5,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Savannah Gomez","reviewerEmail":"savannah.gomez@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":5,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"0630346013554","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/womens-dresses/black-women's-gown/1.webp","https://cdn.dummyjson.com/product-images/womens-dresses/black-women's-gown/2.webp","https://cdn.dummyjson.com/product-images/womens-dresses/black-women's-gown/3.webp","https://cdn.dummyjson.com/product-images/womens-dresses/black-women's-gown/4.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/womens-dresses/black-women's-gown/thumbnail.webp"},{"id":83,"title":"Blue & Black Check Shirt","description":"The Blue & Black Check Shirt is a stylish and comfortable men's shirt featuring a classic check pattern. Made from high-quality fabric, it's suitable for both casual and semi-formal occasions.","category":"mens-shirts","price":29.99,"discountPercentage":15.35,"rating":3.64,"stock":38,"tags":["clothing","men's shirts"],"brand":"Fashion Trends","sku":"MEN-FAS-BLU-083","weight":4,"dimensions":{"width":27.49,"height":23.73,"depth":28.61},"warrantyInformation":"3 year warranty","shippingInformation":"Ships in 3-5 business days","availabilityStatus":"In Stock","reviews":[{"rating":1,"comment":"Waste of money!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Logan Lee","reviewerEmail":"logan.lee@x.dummyjson.com"},{"rating":5,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Zachary Lee","reviewerEmail":"zachary.lee@x.dummyjson.com"},{"rating":4,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Aurora Rodriguez","reviewerEmail":"aurora.rodriguez@x.dummyjson.com"}],"returnPolicy":"30 days return policy","minimumOrderQuantity":18,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"7148674604957","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/mens-shirts/blue-&-black-check-shirt/1.webp","https://cdn.dummyjson.com/product-images/mens-shirts/blue-&-black-check-shirt/2.webp","https://cdn.dummyjson.com/product-images/mens-shirts/blue-&-black-check-shirt/3.webp","https://cdn.dummyjson.com/product-images/mens-shirts/blue-&-black-check-shirt/4.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/mens-shirts/blue-&-black-check-shirt/thumbnail.webp"}],"total":194,"skip":0,"limit":30}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| undefined | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 3 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Retrieves a complete list of all available product categories in the system.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/products/categories`
## Authentication
- **Required**: No
- This is a public endpoint that doesn't require authentication
## Parameters
- No parameters required
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
[
{
"slug": "beauty",
"name": "Beauty",
"url": "https://dummyjson.com/products/category/beauty"
},
{
"slug": "fragrances",
"name": "Fragrances",
"url": "https://dummyjson.com/products/category/fragrances"
}
]
```
## Tests Included
- Validates response status code is 200
- Verifies response is an array
- Checks each category has required fields (slug, name, url)
- Confirms categories are not empty
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDIsImV4cCI6MTc2OTk2NDgwMn0.eOl4rlRcy1_4uC78oP3cgGELQZbvAxI6k8OJ-wFOSs0 |
| Content-Type | text/plain |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 33696b4c-4811-44a7-8847-305be7ef828b |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 61 |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDMsImV4cCI6MTc2OTk2MzAwM30.7nOyE34qTDx7fNesdzhke5DQc-odNHa-SVbo_Oti1tg; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDMsImV4cCI6MTc3MjU1MzIwM30.c9aI7-WsCLjZJA8EJ76slNIBR-Ckm8dtgvhTOiYKohs |
{
"username": "emilys",
"password": "emilyspass"
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:25 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 93 |
| x-ratelimit-reset | 1769961207 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"9d0-QmRzWSDU7v9xEumlsVypMgUm22A" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=pKVS5HOtanZwkHFsKh4OO0WEDOj3qPqB1NUAQdxTxo8XvEf6sB%2Fy2rDbK%2Brsr4YJXpnnl0%2BTjlTer2QNYXBGDB7IMdbAwIw1G5mKbVU%3D"}]} |
| CF-RAY | 9c729f1b4f1d2891-AMM |
[{"slug":"beauty","name":"Beauty","url":"https://dummyjson.com/products/category/beauty"},{"slug":"fragrances","name":"Fragrances","url":"https://dummyjson.com/products/category/fragrances"},{"slug":"furniture","name":"Furniture","url":"https://dummyjson.com/products/category/furniture"},{"slug":"groceries","name":"Groceries","url":"https://dummyjson.com/products/category/groceries"},{"slug":"home-decoration","name":"Home Decoration","url":"https://dummyjson.com/products/category/home-decoration"},{"slug":"kitchen-accessories","name":"Kitchen Accessories","url":"https://dummyjson.com/products/category/kitchen-accessories"},{"slug":"laptops","name":"Laptops","url":"https://dummyjson.com/products/category/laptops"},{"slug":"mens-shirts","name":"Mens Shirts","url":"https://dummyjson.com/products/category/mens-shirts"},{"slug":"mens-shoes","name":"Mens Shoes","url":"https://dummyjson.com/products/category/mens-shoes"},{"slug":"mens-watches","name":"Mens Watches","url":"https://dummyjson.com/products/category/mens-watches"},{"slug":"mobile-accessories","name":"Mobile Accessories","url":"https://dummyjson.com/products/category/mobile-accessories"},{"slug":"motorcycle","name":"Motorcycle","url":"https://dummyjson.com/products/category/motorcycle"},{"slug":"skin-care","name":"Skin Care","url":"https://dummyjson.com/products/category/skin-care"},{"slug":"smartphones","name":"Smartphones","url":"https://dummyjson.com/products/category/smartphones"},{"slug":"sports-accessories","name":"Sports Accessories","url":"https://dummyjson.com/products/category/sports-accessories"},{"slug":"sunglasses","name":"Sunglasses","url":"https://dummyjson.com/products/category/sunglasses"},{"slug":"tablets","name":"Tablets","url":"https://dummyjson.com/products/category/tablets"},{"slug":"tops","name":"Tops","url":"https://dummyjson.com/products/category/tops"},{"slug":"vehicle","name":"Vehicle","url":"https://dummyjson.com/products/category/vehicle"},{"slug":"womens-bags","name":"Womens Bags","url":"https://dummyjson.com/products/category/womens-bags"},{"slug":"womens-dresses","name":"Womens Dresses","url":"https://dummyjson.com/products/category/womens-dresses"},{"slug":"womens-jewellery","name":"Womens Jewellery","url":"https://dummyjson.com/products/category/womens-jewellery"},{"slug":"womens-shoes","name":"Womens Shoes","url":"https://dummyjson.com/products/category/womens-shoes"},{"slug":"womens-watches","name":"Womens Watches","url":"https://dummyjson.com/products/category/womens-watches"}]
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Retrieves a simplified list of product category names/slugs without additional metadata.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/products/category-list`
## Authentication
- **Required**: No
- This is a public endpoint that doesn't require authentication
## Parameters
- No parameters required
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
[
"beauty",
"fragrances",
"furniture",
"groceries",
"home-decoration",
"kitchen-accessories"
]
```
## Tests Included
- Validates response status code is 200
- Verifies response is an array of strings
- Checks array contains category names
- Confirms list is not empty
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDIsImV4cCI6MTc2OTk2NDgwMn0.eOl4rlRcy1_4uC78oP3cgGELQZbvAxI6k8OJ-wFOSs0 |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 23962089-0de0-4e33-ab5c-1ebcfaa5b882 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDMsImV4cCI6MTc2OTk2MzAwM30.7nOyE34qTDx7fNesdzhke5DQc-odNHa-SVbo_Oti1tg; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDMsImV4cCI6MTc3MjU1MzIwM30.c9aI7-WsCLjZJA8EJ76slNIBR-Ckm8dtgvhTOiYKohs |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:25 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 92 |
| x-ratelimit-reset | 1769961207 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"156-8GSmapwnkZIOOiVZRKE52oLajsg" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=0u%2FFGAVvf%2FgCy5AtJoWX4s62QUkWZIo73pTjlsVQ0BSbw4mzlTVRLIITKsoQhykT1Np9xiNDmiwBJewarFN8HdU%2F752vBbWprIG3NtI%3D"}]} |
| Content-Encoding | br |
| CF-RAY | 9c729f1cc93c2891-AMM |
["beauty","fragrances","furniture","groceries","home-decoration","kitchen-accessories","laptops","mens-shirts","mens-shoes","mens-watches","mobile-accessories","motorcycle","skin-care","smartphones","sports-accessories","sunglasses","tablets","tops","vehicle","womens-bags","womens-dresses","womens-jewellery","womens-shoes","womens-watches"]
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDIsImV4cCI6MTc2OTk2NDgwMn0.eOl4rlRcy1_4uC78oP3cgGELQZbvAxI6k8OJ-wFOSs0 |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | ee98ec01-35ab-4956-b294-9b49792316b9 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDMsImV4cCI6MTc2OTk2MzAwM30.7nOyE34qTDx7fNesdzhke5DQc-odNHa-SVbo_Oti1tg; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDMsImV4cCI6MTc3MjU1MzIwM30.c9aI7-WsCLjZJA8EJ76slNIBR-Ckm8dtgvhTOiYKohs |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:25 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 92 |
| x-ratelimit-reset | 1769961209 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"38-zuKX0Tdz5jj2uKVDzDwMn/UTK0c" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=MsyE6HVXSKf5u6DJ0zT6Ngf7r4QurijtWvSzyDU5d7ibwwT%2FVRM17u4yOok%2FOvac8OJS%2BTALg31dfUyLq7Ta9lAlugctTvC0oVrnIqg%3D"}]} |
| Content-Encoding | br |
| CF-RAY | 9c729f1e5b3a2891-AMM |
{"message":"Product with id 'category-array' not found"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 404 | 1 | 0 | 0 |
| Response has error or empty products array | 1 | 0 | 0 |
| Error message exists | 1 | 0 | 0 |
| Total | 3 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Retrieves all products that belong to a specific category.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/products/category/smartphones`
## Authentication
- **Required**: No
- This is a public endpoint that doesn't require authentication
## Parameters
### Path Variables
- `category` (required) - The category slug to filter products by (e.g., smartphones, laptops, beauty)
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
{
"products": [
{
"id": 1,
"title": "Product Name",
"category": "smartphones",
"price": 549,
...
}
],
"total": 5,
"skip": 0,
"limit": 30
}
```
## Tests Included
- Validates response status code is 200
- Verifies all products belong to requested category
- Checks products array structure
- Confirms pagination metadata is present
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDIsImV4cCI6MTc2OTk2NDgwMn0.eOl4rlRcy1_4uC78oP3cgGELQZbvAxI6k8OJ-wFOSs0 |
| Content-Type | text/plain |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 290f98f3-9b67-4ba6-bc33-6d2e8e202b24 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 61 |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDMsImV4cCI6MTc2OTk2MzAwM30.7nOyE34qTDx7fNesdzhke5DQc-odNHa-SVbo_Oti1tg; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDMsImV4cCI6MTc3MjU1MzIwM30.c9aI7-WsCLjZJA8EJ76slNIBR-Ckm8dtgvhTOiYKohs |
{
"username": "emilys",
"password": "emilyspass"
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:25 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 91 |
| x-ratelimit-reset | 1769961207 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"65a9-15t+98sxzVSOrDMD753lm6EmGiw" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=hMpY1Zez4dEr4jnQXg6hGTmS9cksxannGJ19xIa5R63JtkrsB9D0Bvx10v6F2pbYf3nsLM9yg3tcbbUriBFC6S4KiZr1JhSuD8Q5D8M%3D"}]} |
| CF-RAY | 9c729f1ffe172891-AMM |
{"products":[{"id":121,"title":"iPhone 5s","description":"The iPhone 5s is a classic smartphone known for its compact design and advanced features during its release. While it's an older model, it still provides a reliable user experience.","category":"smartphones","price":199.99,"discountPercentage":12.91,"rating":2.83,"stock":25,"tags":["smartphones","apple"],"brand":"Apple","sku":"SMA-APP-IPH-121","weight":2,"dimensions":{"width":5.29,"height":18.38,"depth":17.72},"warrantyInformation":"Lifetime warranty","shippingInformation":"Ships in 1 month","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Jace Smith","reviewerEmail":"jace.smith@x.dummyjson.com"},{"rating":1,"comment":"Not as described!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Logan Torres","reviewerEmail":"logan.torres@x.dummyjson.com"},{"rating":5,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Harper Kelly","reviewerEmail":"harper.kelly@x.dummyjson.com"}],"returnPolicy":"60 days return policy","minimumOrderQuantity":3,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"8814683940853","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/iphone-5s/1.webp","https://cdn.dummyjson.com/product-images/smartphones/iphone-5s/2.webp","https://cdn.dummyjson.com/product-images/smartphones/iphone-5s/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/iphone-5s/thumbnail.webp"},{"id":122,"title":"iPhone 6","description":"The iPhone 6 is a stylish and capable smartphone with a larger display and improved performance. It introduced new features and design elements, making it a popular choice in its time.","category":"smartphones","price":299.99,"discountPercentage":6.69,"rating":3.41,"stock":60,"tags":["smartphones","apple"],"brand":"Apple","sku":"SMA-APP-IPH-122","weight":7,"dimensions":{"width":11,"height":9.1,"depth":9.67},"warrantyInformation":"1 month warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":3,"comment":"Disappointing product!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Stella Morris","reviewerEmail":"stella.morris@x.dummyjson.com"},{"rating":4,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Nolan Gonzalez","reviewerEmail":"nolan.gonzalez@x.dummyjson.com"},{"rating":5,"comment":"Great value for money!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Benjamin Foster","reviewerEmail":"benjamin.foster@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":5,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"9922357685013","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/iphone-6/1.webp","https://cdn.dummyjson.com/product-images/smartphones/iphone-6/2.webp","https://cdn.dummyjson.com/product-images/smartphones/iphone-6/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/iphone-6/thumbnail.webp"},{"id":123,"title":"iPhone 13 Pro","description":"The iPhone 13 Pro is a cutting-edge smartphone with a powerful camera system, high-performance chip, and stunning display. It offers advanced features for users who demand top-notch technology.","category":"smartphones","price":1099.99,"discountPercentage":9.37,"rating":4.12,"stock":56,"tags":["smartphones","apple"],"brand":"Apple","sku":"SMA-APP-IPH-123","weight":8,"dimensions":{"width":12.63,"height":5.28,"depth":14.29},"warrantyInformation":"3 year warranty","shippingInformation":"Ships in 2 weeks","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Would buy again!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Christian Perez","reviewerEmail":"christian.perez@x.dummyjson.com"},{"rating":3,"comment":"Not worth the price!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Liam Gonzalez","reviewerEmail":"liam.gonzalez@x.dummyjson.com"},{"rating":5,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Tristan Scott","reviewerEmail":"tristan.scott@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"4998438802308","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/iphone-13-pro/1.webp","https://cdn.dummyjson.com/product-images/smartphones/iphone-13-pro/2.webp","https://cdn.dummyjson.com/product-images/smartphones/iphone-13-pro/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/iphone-13-pro/thumbnail.webp"},{"id":124,"title":"iPhone X","description":"The iPhone X is a flagship smartphone featuring a bezel-less OLED display, facial recognition technology (Face ID), and impressive performance. It represents a milestone in iPhone design and innovation.","category":"smartphones","price":899.99,"discountPercentage":19.59,"rating":2.51,"stock":37,"tags":["smartphones","apple"],"brand":"Apple","sku":"SMA-APP-IPH-124","weight":1,"dimensions":{"width":21.88,"height":24.19,"depth":14.19},"warrantyInformation":"3 months warranty","shippingInformation":"Ships in 3-5 business days","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Tyler Davis","reviewerEmail":"tyler.davis@x.dummyjson.com"},{"rating":5,"comment":"Great product!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Aria Parker","reviewerEmail":"aria.parker@x.dummyjson.com"},{"rating":2,"comment":"Not as described!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Lily Torres","reviewerEmail":"lily.torres@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":2,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"3034949322264","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/iphone-x/1.webp","https://cdn.dummyjson.com/product-images/smartphones/iphone-x/2.webp","https://cdn.dummyjson.com/product-images/smartphones/iphone-x/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/iphone-x/thumbnail.webp"},{"id":125,"title":"Oppo A57","description":"The Oppo A57 is a mid-range smartphone known for its sleek design and capable features. It offers a balance of performance and affordability, making it a popular choice.","category":"smartphones","price":249.99,"discountPercentage":2.43,"rating":3.94,"stock":19,"tags":["smartphones","oppo"],"brand":"Oppo","sku":"SMA-OPP-OPP-125","weight":5,"dimensions":{"width":7.2,"height":10.74,"depth":23.68},"warrantyInformation":"Lifetime warranty","shippingInformation":"Ships in 3-5 business days","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Scarlett Wright","reviewerEmail":"scarlett.wright@x.dummyjson.com"},{"rating":5,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Jacob Cooper","reviewerEmail":"jacob.cooper@x.dummyjson.com"},{"rating":2,"comment":"Poor quality!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Zoe Nicholson","reviewerEmail":"zoe.nicholson@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":3,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"0651223722522","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/oppo-a57/1.webp","https://cdn.dummyjson.com/product-images/smartphones/oppo-a57/2.webp","https://cdn.dummyjson.com/product-images/smartphones/oppo-a57/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/oppo-a57/thumbnail.webp"},{"id":126,"title":"Oppo F19 Pro Plus","description":"The Oppo F19 Pro Plus is a feature-rich smartphone with a focus on camera capabilities. It boasts advanced photography features and a powerful performance for a premium user experience.","category":"smartphones","price":399.99,"discountPercentage":18.64,"rating":3.51,"stock":78,"tags":["smartphones","oppo"],"brand":"Oppo","sku":"SMA-OPP-OPP-126","weight":6,"dimensions":{"width":6.78,"height":25.17,"depth":8.4},"warrantyInformation":"3 year warranty","shippingInformation":"Ships in 1 week","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Very happy with my purchase!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Emily Johnson","reviewerEmail":"emily.johnson@x.dummyjson.com"},{"rating":5,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Jaxon Barnes","reviewerEmail":"jaxon.barnes@x.dummyjson.com"},{"rating":4,"comment":"Would buy again!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Nova Cooper","reviewerEmail":"nova.cooper@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"8576893968169","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/oppo-f19-pro-plus/1.webp","https://cdn.dummyjson.com/product-images/smartphones/oppo-f19-pro-plus/2.webp","https://cdn.dummyjson.com/product-images/smartphones/oppo-f19-pro-plus/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/oppo-f19-pro-plus/thumbnail.webp"},{"id":127,"title":"Oppo K1","description":"The Oppo K1 series offers a range of smartphones with various features and specifications. Known for their stylish design and reliable performance, the Oppo K1 series caters to diverse user preferences.","category":"smartphones","price":299.99,"discountPercentage":18.29,"rating":4.25,"stock":55,"tags":["smartphones","oppo"],"brand":"Oppo","sku":"SMA-OPP-OPP-127","weight":5,"dimensions":{"width":13.89,"height":10.63,"depth":16.6},"warrantyInformation":"1 month warranty","shippingInformation":"Ships in 1-2 business days","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Very pleased!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Christopher West","reviewerEmail":"christopher.west@x.dummyjson.com"},{"rating":4,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Mia Miller","reviewerEmail":"mia.miller@x.dummyjson.com"},{"rating":2,"comment":"Very dissatisfied!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Ella Adams","reviewerEmail":"ella.adams@x.dummyjson.com"}],"returnPolicy":"30 days return policy","minimumOrderQuantity":5,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"3106827888743","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/oppo-k1/1.webp","https://cdn.dummyjson.com/product-images/smartphones/oppo-k1/2.webp","https://cdn.dummyjson.com/product-images/smartphones/oppo-k1/3.webp","https://cdn.dummyjson.com/product-images/smartphones/oppo-k1/4.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/oppo-k1/thumbnail.webp"},{"id":128,"title":"Realme C35","description":"The Realme C35 is a budget-friendly smartphone with a focus on providing essential features for everyday use. It offers a reliable performance and user-friendly experience.","category":"smartphones","price":149.99,"discountPercentage":15.3,"rating":4.2,"stock":48,"tags":["smartphones","realme"],"brand":"Realme","sku":"SMA-REA-REA-128","weight":2,"dimensions":{"width":25.28,"height":8.14,"depth":29.53},"warrantyInformation":"3 year warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Great product!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Penelope King","reviewerEmail":"penelope.king@x.dummyjson.com"},{"rating":2,"comment":"Very unhappy with my purchase!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Asher Scott","reviewerEmail":"asher.scott@x.dummyjson.com"},{"rating":4,"comment":"Highly impressed!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Henry Adams","reviewerEmail":"henry.adams@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":3,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"7825844344364","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/realme-c35/1.webp","https://cdn.dummyjson.com/product-images/smartphones/realme-c35/2.webp","https://cdn.dummyjson.com/product-images/smartphones/realme-c35/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/realme-c35/thumbnail.webp"},{"id":129,"title":"Realme X","description":"The Realme X is a mid-range smartphone known for its sleek design and impressive display. It offers a good balance of performance and camera capabilities for users seeking a quality device.","category":"smartphones","price":299.99,"discountPercentage":6.95,"rating":3.7,"stock":12,"tags":["smartphones","realme"],"brand":"Realme","sku":"SMA-REA-REA-129","weight":4,"dimensions":{"width":25.59,"height":21.42,"depth":12.75},"warrantyInformation":"1 month warranty","shippingInformation":"Ships in 3-5 business days","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Would buy again!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Hazel Evans","reviewerEmail":"hazel.evans@x.dummyjson.com"},{"rating":5,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Brayden Fleming","reviewerEmail":"brayden.fleming@x.dummyjson.com"},{"rating":5,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Madison Stewart","reviewerEmail":"madison.stewart@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":3,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"4948452391831","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/realme-x/1.webp","https://cdn.dummyjson.com/product-images/smartphones/realme-x/2.webp","https://cdn.dummyjson.com/product-images/smartphones/realme-x/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/realme-x/thumbnail.webp"},{"id":130,"title":"Realme XT","description":"The Realme XT is a feature-rich smartphone with a focus on camera technology. It comes equipped with advanced camera sensors, delivering high-quality photos and videos for photography enthusiasts.","category":"smartphones","price":349.99,"discountPercentage":11.51,"rating":4.58,"stock":80,"tags":["smartphones","realme"],"brand":"Realme","sku":"SMA-REA-REA-130","weight":3,"dimensions":{"width":24.98,"height":26.73,"depth":6.5},"warrantyInformation":"3 year warranty","shippingInformation":"Ships in 1 month","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Emily Brown","reviewerEmail":"emily.brown@x.dummyjson.com"},{"rating":3,"comment":"Not as described!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Ella Cook","reviewerEmail":"ella.cook@x.dummyjson.com"},{"rating":5,"comment":"Would buy again!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Layla Sullivan","reviewerEmail":"layla.sullivan@x.dummyjson.com"}],"returnPolicy":"60 days return policy","minimumOrderQuantity":3,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"6151817227632","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/realme-xt/1.webp","https://cdn.dummyjson.com/product-images/smartphones/realme-xt/2.webp","https://cdn.dummyjson.com/product-images/smartphones/realme-xt/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/realme-xt/thumbnail.webp"},{"id":131,"title":"Samsung Galaxy S7","description":"The Samsung Galaxy S7 is a flagship smartphone known for its sleek design and advanced features. It features a high-resolution display, powerful camera, and robust performance.","category":"smartphones","price":299.99,"discountPercentage":19.55,"rating":3.3,"stock":67,"tags":["smartphones","samsung galaxy"],"brand":"Samsung","sku":"SMA-SAM-SAM-131","weight":10,"dimensions":{"width":13.55,"height":24.24,"depth":5.63},"warrantyInformation":"3 months warranty","shippingInformation":"Ships in 3-5 business days","availabilityStatus":"In Stock","reviews":[{"rating":1,"comment":"Not as described!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Julian James","reviewerEmail":"julian.james@x.dummyjson.com"},{"rating":4,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Lucas Gordon","reviewerEmail":"lucas.gordon@x.dummyjson.com"},{"rating":4,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Ava Taylor","reviewerEmail":"ava.taylor@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"7557912146622","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s7/1.webp","https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s7/2.webp","https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s7/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s7/thumbnail.webp"},{"id":132,"title":"Samsung Galaxy S8","description":"The Samsung Galaxy S8 is a premium smartphone with an Infinity Display, offering a stunning visual experience. It boasts advanced camera capabilities and cutting-edge technology.","category":"smartphones","price":499.99,"discountPercentage":19.45,"rating":4.4,"stock":0,"tags":["smartphones","samsung galaxy"],"brand":"Samsung","sku":"SMA-SAM-SAM-132","weight":6,"dimensions":{"width":23.05,"height":26.88,"depth":15.73},"warrantyInformation":"2 year warranty","shippingInformation":"Ships in 1 week","availabilityStatus":"Out of Stock","reviews":[{"rating":4,"comment":"Highly impressed!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Owen Fisher","reviewerEmail":"owen.fisher@x.dummyjson.com"},{"rating":4,"comment":"Highly impressed!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Clara Berry","reviewerEmail":"clara.berry@x.dummyjson.com"},{"rating":4,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Tyler Davis","reviewerEmail":"tyler.davis@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":4,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"5995499013336","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s8/1.webp","https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s8/2.webp","https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s8/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s8/thumbnail.webp"},{"id":133,"title":"Samsung Galaxy S10","description":"The Samsung Galaxy S10 is a flagship device featuring a dynamic AMOLED display, versatile camera system, and powerful performance. It represents innovation and excellence in smartphone technology.","category":"smartphones","price":699.99,"discountPercentage":5.59,"rating":3.06,"stock":19,"tags":["smartphones","samsung galaxy"],"brand":"Samsung","sku":"SMA-SAM-SAM-133","weight":9,"dimensions":{"width":27.41,"height":15.26,"depth":27.02},"warrantyInformation":"No warranty","shippingInformation":"Ships in 2 weeks","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Tristan Scott","reviewerEmail":"tristan.scott@x.dummyjson.com"},{"rating":5,"comment":"Would buy again!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Christopher West","reviewerEmail":"christopher.west@x.dummyjson.com"},{"rating":2,"comment":"Would not recommend!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Amelia Perez","reviewerEmail":"amelia.perez@x.dummyjson.com"}],"returnPolicy":"30 days return policy","minimumOrderQuantity":2,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"4676898229465","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s10/1.webp","https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s10/2.webp","https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s10/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s10/thumbnail.webp"},{"id":134,"title":"Vivo S1","description":"The Vivo S1 is a stylish and mid-range smartphone offering a blend of design and performance. It features a vibrant display, capable camera system, and reliable functionality.","category":"smartphones","price":249.99,"discountPercentage":10.17,"rating":3.5,"stock":50,"tags":["smartphones","vivo"],"brand":"Vivo","sku":"SMA-VIV-VIV-134","weight":4,"dimensions":{"width":14.06,"height":11.79,"depth":6.78},"warrantyInformation":"6 months warranty","shippingInformation":"Ships in 3-5 business days","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Samantha Martinez","reviewerEmail":"samantha.martinez@x.dummyjson.com"},{"rating":3,"comment":"Very disappointed!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Logan Lee","reviewerEmail":"logan.lee@x.dummyjson.com"},{"rating":4,"comment":"Would buy again!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Sophia Jones","reviewerEmail":"sophia.jones@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"8575699153333","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/vivo-s1/1.webp","https://cdn.dummyjson.com/product-images/smartphones/vivo-s1/2.webp","https://cdn.dummyjson.com/product-images/smartphones/vivo-s1/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/vivo-s1/thumbnail.webp"},{"id":135,"title":"Vivo V9","description":"The Vivo V9 is a smartphone known for its sleek design and emphasis on capturing high-quality selfies. It features a notch display, dual-camera setup, and a modern design.","category":"smartphones","price":299.99,"discountPercentage":17.67,"rating":3.6,"stock":82,"tags":["smartphones","vivo"],"brand":"Vivo","sku":"SMA-VIV-VIV-135","weight":4,"dimensions":{"width":19.85,"height":21.83,"depth":13.04},"warrantyInformation":"2 year warranty","shippingInformation":"Ships in 1 month","availabilityStatus":"In Stock","reviews":[{"rating":2,"comment":"Very unhappy with my purchase!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Logan Lawson","reviewerEmail":"logan.lawson@x.dummyjson.com"},{"rating":5,"comment":"Awesome product!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Layla Young","reviewerEmail":"layla.young@x.dummyjson.com"},{"rating":4,"comment":"Great value for money!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Asher Scott","reviewerEmail":"asher.scott@x.dummyjson.com"}],"returnPolicy":"60 days return policy","minimumOrderQuantity":2,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"4295398764784","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/vivo-v9/1.webp","https://cdn.dummyjson.com/product-images/smartphones/vivo-v9/2.webp","https://cdn.dummyjson.com/product-images/smartphones/vivo-v9/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/vivo-v9/thumbnail.webp"},{"id":136,"title":"Vivo X21","description":"The Vivo X21 is a premium smartphone with a focus on cutting-edge technology. It features an in-display fingerprint sensor, a high-resolution display, and advanced camera capabilities.","category":"smartphones","price":499.99,"discountPercentage":17.41,"rating":4.26,"stock":7,"tags":["smartphones","vivo"],"brand":"Vivo","sku":"SMA-VIV-VIV-136","weight":10,"dimensions":{"width":22.49,"height":21.62,"depth":27.88},"warrantyInformation":"1 year warranty","shippingInformation":"Ships in 1-2 business days","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Very pleased!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Liam Gonzalez","reviewerEmail":"liam.gonzalez@x.dummyjson.com"},{"rating":4,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Aurora Barnes","reviewerEmail":"aurora.barnes@x.dummyjson.com"},{"rating":2,"comment":"Not as described!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Evelyn Walker","reviewerEmail":"evelyn.walker@x.dummyjson.com"}],"returnPolicy":"60 days return policy","minimumOrderQuantity":3,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"9944308291810","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/vivo-x21/1.webp","https://cdn.dummyjson.com/product-images/smartphones/vivo-x21/2.webp","https://cdn.dummyjson.com/product-images/smartphones/vivo-x21/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/vivo-x21/thumbnail.webp"}],"total":16,"skip":0,"limit":16}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Creates a new product in the system with the provided product details.
## Method & Endpoint
- **Method**: `POST`
- **Endpoint**: `https://dummyjson.com/products/add`
## Authentication
- **Required**: No
- This is a public endpoint for demonstration purposes
## Parameters
### Request Body (JSON)
```json
{
"title": "Product Name",
"description": "Product description",
"price": 999,
"discountPercentage": 10,
"rating": 4.5,
"stock": 50,
"brand": "Brand Name",
"category": "Category Name",
"thumbnail": "image_url"
}
```
**Required Fields**:
- `title` - Product name
- `price` - Product price
**Optional Fields**:
- `description`, `discountPercentage`, `rating`, `stock`, `brand`, `category`, `thumbnail`
## Expected Response
- **Status Code**: `201 Created`
- **Response Structure**: Returns the created product with an assigned ID
```json
{
"id": 195,
"title": "Product Name",
"price": 999,
...
}
```
## Tests Included
- Validates response status code is 201
- Verifies product ID is assigned
- Checks all submitted fields are returned
- Confirms product creation timestamp
| Header Name | Header Value |
|---|---|
| Content-Type | application/json |
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDIsImV4cCI6MTc2OTk2NDgwMn0.eOl4rlRcy1_4uC78oP3cgGELQZbvAxI6k8OJ-wFOSs0 |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | bb21ce7c-2c94-46f6-a7d9-48674b3fb76e |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 125 |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDMsImV4cCI6MTc2OTk2MzAwM30.7nOyE34qTDx7fNesdzhke5DQc-odNHa-SVbo_Oti1tg; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDMsImV4cCI6MTc3MjU1MzIwM30.c9aI7-WsCLjZJA8EJ76slNIBR-Ckm8dtgvhTOiYKohs |
{
"title": "BMW Pencil",
"price": 100,
"description": "High quality pencil",
"category": "stationery"
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:26 GMT |
| Content-Type | application/json; charset=utf-8 |
| Content-Length | 103 |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 91 |
| x-ratelimit-reset | 1769961209 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"67-0ZPry6/zvpQF03BJfwztu0kNXO4" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=NZxPXpsBoHEULecyk0P5qadP640%2FY%2BrkY2KtjZA%2F35OjnLB77OyXTl1XhHhCtFEgGi3DuqHxiOzSWjAGh6Bos5fjAxBgI8gOyaffdk4%3D"}]} |
| CF-RAY | 9c729f21cffb2891-AMM |
{"id":195,"title":"BMW Pencil","price":100,"description":"High quality pencil","category":"stationery"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 201 | 1 | 0 | 0 |
| Product created successfully | 1 | 0 | 0 |
| All required fields exist | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 4 | 0 | 0 |
| Test Name | Assertion Error |
|---|
| Header Name | Header Value |
|---|---|
| Content-Type | application/json |
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDIsImV4cCI6MTc2OTk2NDgwMn0.eOl4rlRcy1_4uC78oP3cgGELQZbvAxI6k8OJ-wFOSs0 |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | a16b6fab-049c-45f6-bc23-670d6c90d72e |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 25 |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDMsImV4cCI6MTc2OTk2MzAwM30.7nOyE34qTDx7fNesdzhke5DQc-odNHa-SVbo_Oti1tg; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDMsImV4cCI6MTc3MjU1MzIwM30.c9aI7-WsCLjZJA8EJ76slNIBR-Ckm8dtgvhTOiYKohs |
{
"price": "abd"
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:26 GMT |
| Content-Type | application/json; charset=utf-8 |
| Content-Length | 24 |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 90 |
| x-ratelimit-reset | 1769961209 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"18-L9Dj49E4IFbHCZOI/ckAL4ETueo" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=rbW33pLniC%2FPryJivclfSsrs5hNRwuxZGg7goU%2B6oXny10eNTKHC%2BFmXqj05oQ70KZTLx8HTSwNSQsI7NTa864gE%2B4c6el%2BJOu1OWBk%3D"}]} |
| CF-RAY | 9c729f2359db2891-AMM |
{"id":195,"price":"abd"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| API should not accept non-numeric price | 1 | 0 | 0 |
| Total | 1 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Creates a new product using randomly generated test data to validate the product creation endpoint with dynamic values.
## Method & Endpoint
- **Method**: `POST`
- **Endpoint**: `https://dummyjson.com/products/add`
## Authentication
- **Required**: No
- This is a public endpoint for demonstration purposes
## Parameters
### Request Body (JSON)
Uses dynamically generated random data:
```json
{
"title": "Tasty Granite Hat",
"description": "Rustic Computer",
"price": 12.87,
"discountPercentage": 591,
"rating": 4.5,
"stock": 40,
"brand": "Purdy, Hayes and Zboncak",
"category": "{{$randomProductCategory}}",
"thumbnail": "http://placeimg.com/640/480"
}
```
## Expected Response
- **Status Code**: `201 Created`
- **Response Structure**: Returns the created product with random data and assigned ID
```json
{
"id": 195,
"title": "Random Product Name",
"price": 123,
...
}
```
## Tests Included
- Validates response status code is 201
- Verifies product ID is assigned
- Checks random data is properly saved
- Confirms API handles dynamic test data correctly
| Header Name | Header Value |
|---|---|
| Content-Type | application/json |
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDIsImV4cCI6MTc2OTk2NDgwMn0.eOl4rlRcy1_4uC78oP3cgGELQZbvAxI6k8OJ-wFOSs0 |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 87d4efe2-e8ab-4b80-8673-bf2eb7c45e60 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 78 |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDMsImV4cCI6MTc2OTk2MzAwM30.7nOyE34qTDx7fNesdzhke5DQc-odNHa-SVbo_Oti1tg; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDMsImV4cCI6MTc3MjU1MzIwM30.c9aI7-WsCLjZJA8EJ76slNIBR-Ckm8dtgvhTOiYKohs |
{
"title":"TV",
"description": "Invalid price",
"price": abc
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:26 GMT |
| Content-Type | application/json; charset=utf-8 |
| Content-Length | 90 |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 89 |
| x-ratelimit-reset | 1769961209 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"5a-NHUEDOvKIZY6h2Js7PBvWoXD7gg" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=N1t10jm9G5MU%2FRLj9hUMDRbW0b1kahsADef7N1JTNhbE1x847WwMM36KRPm3zpM4WXwiRKZysRkaomEGv254Pc%2BbapkbczgfInogYdQ%3D"}]} |
| CF-RAY | 9c729f24ebc42891-AMM |
{"message":"Unexpected token 'a', ...\" \"price\": abc\r\n \r\n}\"... is not valid JSON"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is as expected | 1 | 0 | 0 |
| Total | 1 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Updates an existing product's information by its unique identifier.
## Method & Endpoint
- **Method**: `PUT`
- **Endpoint**: `https://dummyjson.com/products/20`
## Authentication
- **Required**: No
- This is a public endpoint for demonstration purposes
## Parameters
### Path Variables
- `productId` (required) - The unique identifier of the product to update
### Request Body (JSON)
```json
{
"title": "Updated Product Name",
"price": 1299,
"description": "Updated description",
"stock": 75
}
```
**Note**: Only include fields you want to update. Unspecified fields remain unchanged.
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**: Returns the updated product with all fields
```json
{
"id": 1,
"title": "Updated Product Name",
"price": 1299,
"description": "Updated description",
"stock": 75,
...
}
```
## Tests Included
- Validates response status code is 200
- Verifies updated fields match request
- Checks product ID remains unchanged
- Confirms other fields are preserved
| Header Name | Header Value |
|---|---|
| Content-Type | application/json |
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDIsImV4cCI6MTc2OTk2NDgwMn0.eOl4rlRcy1_4uC78oP3cgGELQZbvAxI6k8OJ-wFOSs0 |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | fcefb0ac-267f-4e41-b291-0e74f5ad71a9 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 37 |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDMsImV4cCI6MTc2OTk2MzAwM30.7nOyE34qTDx7fNesdzhke5DQc-odNHa-SVbo_Oti1tg; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDMsImV4cCI6MTc3MjU1MzIwM30.c9aI7-WsCLjZJA8EJ76slNIBR-Ckm8dtgvhTOiYKohs |
{
"title": "iPhone Galaxy +1"
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:26 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 88 |
| x-ratelimit-reset | 1769961209 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"192-iTF/37dqMdcAfA3B6GoiupdWK8A" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=1KM0cqz0ilvtpPniLDNDRIGQd2OtzlE3zWgdvBbAuBsa3sW91oiSJvy%2B8ZnRvdr9wAVN%2Fu80vwlaWzvcZwWiFL4Tm%2Fw6RDYd6BgxvWg%3D"}]} |
| Content-Encoding | br |
| CF-RAY | 9c729f268d852891-AMM |
{"id":20,"title":"iPhone Galaxy +1","price":4.99,"discountPercentage":9.33,"stock":10,"rating":4.8,"images":["https://cdn.dummyjson.com/product-images/groceries/cooking-oil/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/cooking-oil/thumbnail.webp","description":"Versatile cooking oil suitable for frying, sautéing, and various culinary applications.","category":"groceries"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
| Header Name | Header Value |
|---|---|
| Content-Type | application/json |
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDIsImV4cCI6MTc2OTk2NDgwMn0.eOl4rlRcy1_4uC78oP3cgGELQZbvAxI6k8OJ-wFOSs0 |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 120fd382-6b4e-4e40-8e6e-d50f5d12821d |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 37 |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDMsImV4cCI6MTc2OTk2MzAwM30.7nOyE34qTDx7fNesdzhke5DQc-odNHa-SVbo_Oti1tg; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDMsImV4cCI6MTc3MjU1MzIwM30.c9aI7-WsCLjZJA8EJ76slNIBR-Ckm8dtgvhTOiYKohs |
{
"title": "iPhone Galaxy +1"
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:27 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 90 |
| x-ratelimit-reset | 1769961210 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"2d-0WtrwaXzWoposFPTOmioRGKyXA8" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=GnbKaUkI7sodMicfNGLc%2Bznkdwvr6VULX4b6rF2uMbuSier3nT%2FyZMAqDht7g99vvBaj5mqu7DTzXlHENPlvvmP30OFQruO1f5kAgo4%3D"}]} |
| Content-Encoding | br |
| CF-RAY | 9c729f284f8d2891-AMM |
{"message":"Product with id '-20' not found"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 404 | 1 | 0 | 0 |
| Response contains not found | 1 | 0 | 0 |
| Error message exists | 1 | 0 | 0 |
| Total | 3 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Deletes a specific product from the system by its unique identifier.
## Method & Endpoint
- **Method**: `DELETE`
- **Endpoint**: `https://dummyjson.com/products/20`
## Authentication
- **Required**: No
- This is a public endpoint for demonstration purposes
## Parameters
### Path Variables
- `productId` (required) - The unique identifier of the product to delete
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**: Returns the deleted product information with deletion confirmation
```json
{
"id": 1,
"title": "Product Name",
"price": 549,
"isDeleted": true,
"deletedOn": "2024-01-01T12:00:00.000Z",
...
}
```
## Tests Included
- Validates response status code is 200
- Verifies `isDeleted` flag is true
- Checks deletion timestamp is present
- Confirms deleted product details are returned
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDIsImV4cCI6MTc2OTk2NDgwMn0.eOl4rlRcy1_4uC78oP3cgGELQZbvAxI6k8OJ-wFOSs0 |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | d057c661-636a-4a3f-8ee8-ab1de47d4836 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDMsImV4cCI6MTc2OTk2MzAwM30.7nOyE34qTDx7fNesdzhke5DQc-odNHa-SVbo_Oti1tg; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDMsImV4cCI6MTc3MjU1MzIwM30.c9aI7-WsCLjZJA8EJ76slNIBR-Ckm8dtgvhTOiYKohs |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:27 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 89 |
| x-ratelimit-reset | 1769961210 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"594-mTaxj2Hfn6WYJIyegSO00aQYL80" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=EXZQU%2Bhuy3kEsboVRCvHNqigq8FA91ItTHh74p5nraU4Ub9qFE7bUpFJszee9U1I04iuQzCe%2Bbe%2FCTjTRU3eettpzk8icJPiKycv%2F9M%3D"}]} |
| CF-RAY | 9c729f2a09992891-AMM |
{"id":20,"title":"Cooking Oil","description":"Versatile cooking oil suitable for frying, sautéing, and various culinary applications.","category":"groceries","price":4.99,"discountPercentage":9.33,"rating":4.8,"stock":10,"tags":["cooking essentials"],"sku":"GRO-BRD-COO-020","weight":5,"dimensions":{"width":19.95,"height":27.54,"depth":24.86},"warrantyInformation":"Lifetime warranty","shippingInformation":"Ships in 1-2 business days","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Very happy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Victoria McDonald","reviewerEmail":"victoria.mcdonald@x.dummyjson.com"},{"rating":2,"comment":"Would not recommend!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Hazel Evans","reviewerEmail":"hazel.evans@x.dummyjson.com"},{"rating":5,"comment":"Would buy again!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Zoe Bennett","reviewerEmail":"zoe.bennett@x.dummyjson.com"}],"returnPolicy":"30 days return policy","minimumOrderQuantity":46,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"4874727824518","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/cooking-oil/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/cooking-oil/thumbnail.webp","isDeleted":true,"deletedOn":"2026-02-01T15:53:27.438Z"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| product Deleted successfully | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 3 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Retrieves a paginated list of all shopping carts in the system.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/carts`
## Authentication
- **Required**: No
- This is a public endpoint that doesn't require authentication
## Parameters
- No required parameters
- Optional query parameters: `limit`, `skip` for pagination
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
{
"carts": [
{
"id": 1,
"products": [
{
"id": 1,
"title": "Product Name",
"price": 549,
"quantity": 2,
"total": 1098
}
],
"total": 1098,
"discountedTotal": 985,
"userId": 1,
"totalProducts": 1,
"totalQuantity": 2
}
],
"total": 20,
"skip": 0,
"limit": 30
}
```
## Tests Included
- Validates response status code is 200
- Verifies carts array structure
- Checks pagination metadata
- Confirms cart totals and product details
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDIsImV4cCI6MTc2OTk2NDgwMn0.eOl4rlRcy1_4uC78oP3cgGELQZbvAxI6k8OJ-wFOSs0 |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 36dcf3fb-7919-4f54-9239-36a93aa978cb |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDMsImV4cCI6MTc2OTk2MzAwM30.7nOyE34qTDx7fNesdzhke5DQc-odNHa-SVbo_Oti1tg; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDMsImV4cCI6MTc3MjU1MzIwM30.c9aI7-WsCLjZJA8EJ76slNIBR-Ckm8dtgvhTOiYKohs |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:27 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 99 |
| x-ratelimit-reset | 1769961217 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"7d39-+rQ7kyHBCLIn9tjTeKVf4oegWkQ" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=C42v%2FJclqzu%2Fd8HFhdbsgO2zIDxCU5EeX2FnDn2MP643xDsu1VUejoeg8aZcFEmUl5wp9GM3YKg6TlWtK5VrKvNZidNWKQNQ1cXZPJM%3D"}]} |
| CF-RAY | 9c729f2bab8b2891-AMM |
{"carts":[{"id":1,"products":[{"id":168,"title":"Charger SXT RWD","price":32999.99,"quantity":3,"total":98999.97,"discountPercentage":13.39,"discountedTotal":85743.87,"thumbnail":"https://cdn.dummyjson.com/products/images/vehicle/Charger%20SXT%20RWD/thumbnail.png"},{"id":78,"title":"Apple MacBook Pro 14 Inch Space Grey","price":1999.99,"quantity":2,"total":3999.98,"discountPercentage":18.52,"discountedTotal":3259.18,"thumbnail":"https://cdn.dummyjson.com/products/images/laptops/Apple%20MacBook%20Pro%2014%20Inch%20Space%20Grey/thumbnail.png"},{"id":183,"title":"Green Oval Earring","price":24.99,"quantity":5,"total":124.94999999999999,"discountPercentage":6.28,"discountedTotal":117.1,"thumbnail":"https://cdn.dummyjson.com/products/images/womens-jewellery/Green%20Oval%20Earring/thumbnail.png"},{"id":100,"title":"Apple Airpods","price":129.99,"quantity":5,"total":649.95,"discountPercentage":12.84,"discountedTotal":566.5,"thumbnail":"https://cdn.dummyjson.com/products/images/mobile-accessories/Apple%20Airpods/thumbnail.png"}],"total":103774.85,"discountedTotal":89686.65,"userId":33,"totalProducts":4,"totalQuantity":15},{"id":2,"products":[{"id":144,"title":"Cricket Helmet","price":44.99,"quantity":4,"total":179.96,"discountPercentage":11.47,"discountedTotal":159.32,"thumbnail":"https://cdn.dummyjson.com/products/images/sports-accessories/Cricket%20Helmet/thumbnail.png"},{"id":124,"title":"iPhone X","price":899.99,"quantity":4,"total":3599.96,"discountPercentage":8.03,"discountedTotal":3310.88,"thumbnail":"https://cdn.dummyjson.com/products/images/smartphones/iPhone%20X/thumbnail.png"},{"id":148,"title":"Golf Ball","price":9.99,"quantity":4,"total":39.96,"discountPercentage":11.24,"discountedTotal":35.47,"thumbnail":"https://cdn.dummyjson.com/products/images/sports-accessories/Golf%20Ball/thumbnail.png"},{"id":122,"title":"iPhone 6","price":299.99,"quantity":3,"total":899.97,"discountPercentage":19.64,"discountedTotal":723.22,"thumbnail":"https://cdn.dummyjson.com/products/images/smartphones/iPhone%206/thumbnail.png"},{"id":110,"title":"Selfie Lamp with iPhone","price":14.99,"quantity":5,"total":74.95,"discountPercentage":19.87,"discountedTotal":60.06,"thumbnail":"https://cdn.dummyjson.com/products/images/mobile-accessories/Selfie%20Lamp%20with%20iPhone/thumbnail.png"}],"total":4794.8,"discountedTotal":4288.95,"userId":142,"totalProducts":5,"totalQuantity":20},{"id":3,"products":[{"id":98,"title":"Rolex Submariner Watch","price":13999.99,"quantity":1,"total":13999.99,"discountPercentage":16.35,"discountedTotal":11710.99,"thumbnail":"https://cdn.dummyjson.com/products/images/mens-watches/Rolex%20Submariner%20Watch/thumbnail.png"},{"id":125,"title":"Oppo A57","price":249.99,"quantity":5,"total":1249.95,"discountPercentage":16.54,"discountedTotal":1043.21,"thumbnail":"https://cdn.dummyjson.com/products/images/smartphones/Oppo%20A57/thumbnail.png"},{"id":55,"title":"Egg Slicer","price":6.99,"quantity":2,"total":13.98,"discountPercentage":16.04,"discountedTotal":11.74,"thumbnail":"https://cdn.dummyjson.com/products/images/kitchen-accessories/Egg%20Slicer/thumbnail.png"},{"id":62,"title":"Ice Cube Tray","price":5.99,"quantity":2,"total":11.98,"discountPercentage":8.25,"discountedTotal":10.99,"thumbnail":"https://cdn.dummyjson.com/products/images/kitchen-accessories/Ice%20Cube%20Tray/thumbnail.png"},{"id":132,"title":"Samsung Galaxy S8","price":499.99,"quantity":3,"total":1499.97,"discountPercentage":8.84,"discountedTotal":1367.37,"thumbnail":"https://cdn.dummyjson.com/products/images/smartphones/Samsung%20Galaxy%20S8/thumbnail.png"}],"total":16775.87,"discountedTotal":14144.3,"userId":108,"totalProducts":5,"totalQuantity":13},{"id":4,"products":[{"id":187,"title":"Golden Shoes Woman","price":49.99,"quantity":5,"total":249.95000000000002,"discountPercentage":1.64,"discountedTotal":245.85,"thumbnail":"https://cdn.dummyjson.com/products/images/womens-shoes/Golden%20Shoes%20Woman/thumbnail.png"},{"id":40,"title":"Strawberry","price":3.99,"quantity":5,"total":19.950000000000003,"discountPercentage":4.6,"discountedTotal":19.03,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Strawberry/thumbnail.png"},{"id":156,"title":"Green and Black Glasses","price":34.99,"quantity":5,"total":174.95000000000002,"discountPercentage":4.34,"discountedTotal":167.36,"thumbnail":"https://cdn.dummyjson.com/products/images/sunglasses/Green%20and%20Black%20Glasses/thumbnail.png"},{"id":62,"title":"Ice Cube Tray","price":5.99,"quantity":2,"total":11.98,"discountPercentage":8.25,"discountedTotal":10.99,"thumbnail":"https://cdn.dummyjson.com/products/images/kitchen-accessories/Ice%20Cube%20Tray/thumbnail.png"}],"total":456.83,"discountedTotal":443.23,"userId":87,"totalProducts":4,"totalQuantity":17},{"id":5,"products":[{"id":108,"title":"iPhone 12 Silicone Case with MagSafe Plum","price":29.99,"quantity":2,"total":59.98,"discountPercentage":14.68,"discountedTotal":51.17,"thumbnail":"https://cdn.dummyjson.com/products/images/mobile-accessories/iPhone%2012%20Silicone%20Case%20with%20MagSafe%20Plum/thumbnail.png"},{"id":138,"title":"Baseball Ball","price":8.99,"quantity":5,"total":44.95,"discountPercentage":18.49,"discountedTotal":36.64,"thumbnail":"https://cdn.dummyjson.com/products/images/sports-accessories/Baseball%20Ball/thumbnail.png"},{"id":157,"title":"Party Glasses","price":19.99,"quantity":2,"total":39.98,"discountPercentage":19.17,"discountedTotal":32.32,"thumbnail":"https://cdn.dummyjson.com/products/images/sunglasses/Party%20Glasses/thumbnail.png"},{"id":8,"title":"Dior J'adore","price":89.99,"quantity":3,"total":269.96999999999997,"discountPercentage":10.79,"discountedTotal":240.84,"thumbnail":"https://cdn.dummyjson.com/products/images/fragrances/Dior%20J'adore/thumbnail.png"},{"id":80,"title":"Huawei Matebook X Pro","price":1399.99,"quantity":5,"total":6999.95,"discountPercentage":9.99,"discountedTotal":6300.65,"thumbnail":"https://cdn.dummyjson.com/products/images/laptops/Huawei%20Matebook%20X%20Pro/thumbnail.png"},{"id":28,"title":"Ice Cream","price":5.49,"quantity":3,"total":16.47,"discountPercentage":10,"discountedTotal":14.82,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Ice%20Cream/thumbnail.png"}],"total":7431.3,"discountedTotal":6676.44,"userId":134,"totalProducts":6,"totalQuantity":20},{"id":6,"products":[{"id":172,"title":"Blue Women's Handbag","price":49.99,"quantity":5,"total":249.95000000000002,"discountPercentage":8.08,"discountedTotal":229.75,"thumbnail":"https://cdn.dummyjson.com/products/images/womens-bags/Blue%20Women's%20Handbag/thumbnail.png"},{"id":112,"title":"TV Studio Camera Pedestal","price":499.99,"quantity":3,"total":1499.97,"discountPercentage":15.69,"discountedTotal":1264.62,"thumbnail":"https://cdn.dummyjson.com/products/images/mobile-accessories/TV%20Studio%20Camera%20Pedestal/thumbnail.png"},{"id":97,"title":"Rolex Datejust","price":10999.99,"quantity":3,"total":32999.97,"discountPercentage":10.58,"discountedTotal":29508.57,"thumbnail":"https://cdn.dummyjson.com/products/images/mens-watches/Rolex%20Datejust/thumbnail.png"},{"id":128,"title":"Realme C35","price":149.99,"quantity":3,"total":449.97,"discountPercentage":3.97,"discountedTotal":432.11,"thumbnail":"https://cdn.dummyjson.com/products/images/smartphones/Realme%20C35/thumbnail.png"}],"total":35199.86,"discountedTotal":31435.05,"userId":150,"totalProducts":4,"totalQuantity":14},{"id":7,"products":[{"id":167,"title":"300 Touring","price":28999.99,"quantity":5,"total":144999.95,"discountPercentage":11.78,"discountedTotal":127918.96,"thumbnail":"https://cdn.dummyjson.com/products/images/vehicle/300%20Touring/thumbnail.png"},{"id":111,"title":"Selfie Stick Monopod","price":12.99,"quantity":4,"total":51.96,"discountPercentage":10.98,"discountedTotal":46.25,"thumbnail":"https://cdn.dummyjson.com/products/images/mobile-accessories/Selfie%20Stick%20Monopod/thumbnail.png"},{"id":129,"title":"Realme X","price":299.99,"quantity":2,"total":599.98,"discountPercentage":10.13,"discountedTotal":539.2,"thumbnail":"https://cdn.dummyjson.com/products/images/smartphones/Realme%20X/thumbnail.png"}],"total":145651.89,"discountedTotal":128504.41,"userId":86,"totalProducts":3,"totalQuantity":11},{"id":8,"products":[{"id":117,"title":"Sportbike Motorcycle","price":7499.99,"quantity":2,"total":14999.98,"discountPercentage":19.83,"discountedTotal":12025.48,"thumbnail":"https://cdn.dummyjson.com/products/images/motorcycle/Sportbike%20Motorcycle/thumbnail.png"},{"id":18,"title":"Cat Food","price":8.99,"quantity":4,"total":35.96,"discountPercentage":1.15,"discountedTotal":35.55,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Cat%20Food/thumbnail.png"},{"id":105,"title":"Apple MagSafe Battery Pack","price":99.99,"quantity":5,"total":499.95,"discountPercentage":7.14,"discountedTotal":464.25,"thumbnail":"https://cdn.dummyjson.com/products/images/mobile-accessories/Apple%20MagSafe%20Battery%20Pack/thumbnail.png"},{"id":6,"title":"Calvin Klein CK One","price":49.99,"quantity":3,"total":149.97,"discountPercentage":5.67,"discountedTotal":141.47,"thumbnail":"https://cdn.dummyjson.com/products/images/fragrances/Calvin%20Klein%20CK%20One/thumbnail.png"}],"total":15685.86,"discountedTotal":12666.75,"userId":23,"totalProducts":4,"totalQuantity":14},{"id":9,"products":[{"id":178,"title":"Corset Leather With Skirt","price":89.99,"quantity":2,"total":179.98,"discountPercentage":12.59,"discountedTotal":157.32,"thumbnail":"https://cdn.dummyjson.com/products/images/womens-dresses/Corset%20Leather%20With%20Skirt/thumbnail.png"},{"id":191,"title":"Rolex Cellini Moonphase","price":15999.99,"quantity":4,"total":63999.96,"discountPercentage":3.26,"discountedTotal":61913.56,"thumbnail":"https://cdn.dummyjson.com/products/images/womens-watches/Rolex%20Cellini%20Moonphase/thumbnail.png"},{"id":47,"title":"Table Lamp","price":49.99,"quantity":2,"total":99.98,"discountPercentage":13.74,"discountedTotal":86.24,"thumbnail":"https://cdn.dummyjson.com/products/images/home-decoration/Table%20Lamp/thumbnail.png"},{"id":134,"title":"Vivo S1","price":249.99,"quantity":5,"total":1249.95,"discountPercentage":5.64,"discountedTotal":1179.45,"thumbnail":"https://cdn.dummyjson.com/products/images/smartphones/Vivo%20S1/thumbnail.png"}],"total":65529.87,"discountedTotal":63336.57,"userId":194,"totalProducts":4,"totalQuantity":13},{"id":10,"products":[{"id":190,"title":"IWC Ingenieur Automatic Steel","price":4999.99,"quantity":5,"total":24999.949999999997,"discountPercentage":12.34,"discountedTotal":21914.96,"thumbnail":"https://cdn.dummyjson.com/products/images/womens-watches/IWC%20Ingenieur%20Automatic%20Steel/thumbnail.png"},{"id":94,"title":"Longines Master Collection","price":1499.99,"quantity":3,"total":4499.97,"discountPercentage":16.44,"discountedTotal":3760.17,"thumbnail":"https://cdn.dummyjson.com/products/images/mens-watches/Longines%20Master%20Collection/thumbnail.png"}],"total":29499.92,"discountedTotal":25675.13,"userId":160,"totalProducts":2,"totalQuantity":8},{"id":11,"products":[{"id":88,"title":"Nike Air Jordan 1 Red And Black","price":149.99,"quantity":1,"total":149.99,"discountPercentage":17.18,"discountedTotal":124.22,"thumbnail":"https://cdn.dummyjson.com/products/images/mens-shoes/Nike%20Air%20Jordan%201%20Red%20And%20Black/thumbnail.png"},{"id":32,"title":"Milk","price":3.49,"quantity":3,"total":10.47,"discountPercentage":9.36,"discountedTotal":9.49,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Milk/thumbnail.png"},{"id":74,"title":"Spoon","price":4.99,"quantity":3,"total":14.97,"discountPercentage":2.78,"discountedTotal":14.55,"thumbnail":"https://cdn.dummyjson.com/products/images/kitchen-accessories/Spoon/thumbnail.png"},{"id":145,"title":"Cricket Wicket","price":29.99,"quantity":3,"total":89.97,"discountPercentage":17.87,"discountedTotal":73.89,"thumbnail":"https://cdn.dummyjson.com/products/images/sports-accessories/Cricket%20Wicket/thumbnail.png"},{"id":26,"title":"Green Chili Pepper","price":0.99,"quantity":3,"total":2.9699999999999998,"discountPercentage":18.69,"discountedTotal":2.41,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Green%20Chili%20Pepper/thumbnail.png"},{"id":127,"title":"Oppo K1","price":299.99,"quantity":1,"total":299.99,"discountPercentage":15.93,"discountedTotal":252.2,"thumbnail":"https://cdn.dummyjson.com/products/images/smartphones/Oppo%20K1/thumbnail.png"}],"total":568.36,"discountedTotal":476.76,"userId":172,"totalProducts":6,"totalQuantity":14},{"id":12,"products":[{"id":63,"title":"Kitchen Sieve","price":7.99,"quantity":4,"total":31.96,"discountPercentage":18.8,"discountedTotal":25.95,"thumbnail":"https://cdn.dummyjson.com/products/images/kitchen-accessories/Kitchen%20Sieve/thumbnail.png"},{"id":181,"title":"Marni Red & Black Suit","price":179.99,"quantity":5,"total":899.95,"discountPercentage":14.21,"discountedTotal":772.07,"thumbnail":"https://cdn.dummyjson.com/products/images/womens-dresses/Marni%20Red%20&%20Black%20Suit/thumbnail.png"}],"total":931.91,"discountedTotal":798.02,"userId":202,"totalProducts":2,"totalQuantity":9},{"id":13,"products":[{"id":85,"title":"Man Plaid Shirt","price":34.99,"quantity":2,"total":69.98,"discountPercentage":3.7,"discountedTotal":67.39,"thumbnail":"https://cdn.dummyjson.com/products/images/mens-shirts/Man%20Plaid%20Shirt/thumbnail.png"},{"id":109,"title":"Monopod","price":19.99,"quantity":3,"total":59.97,"discountPercentage":12.95,"discountedTotal":52.2,"thumbnail":"https://cdn.dummyjson.com/products/images/mobile-accessories/Monopod/thumbnail.png"},{"id":160,"title":"Samsung Galaxy Tab S8 Plus Grey","price":599.99,"quantity":1,"total":599.99,"discountPercentage":4.31,"discountedTotal":574.13,"thumbnail":"https://cdn.dummyjson.com/products/images/tablets/Samsung%20Galaxy%20Tab%20S8%20Plus%20Grey/thumbnail.png"},{"id":163,"title":"Girl Summer Dress","price":19.99,"quantity":3,"total":59.97,"discountPercentage":9.44,"discountedTotal":54.31,"thumbnail":"https://cdn.dummyjson.com/products/images/tops/Girl%20Summer%20Dress/thumbnail.png"},{"id":31,"title":"Lemon","price":0.79,"quantity":4,"total":3.16,"discountPercentage":12.32,"discountedTotal":2.77,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Lemon/thumbnail.png"}],"total":793.07,"discountedTotal":750.8,"userId":41,"totalProducts":5,"totalQuantity":13},{"id":14,"products":[{"id":92,"title":"Sports Sneakers Off White Red","price":109.99,"quantity":3,"total":329.96999999999997,"discountPercentage":17.73,"discountedTotal":271.47,"thumbnail":"https://cdn.dummyjson.com/products/images/mens-shoes/Sports%20Sneakers%20Off%20White%20Red/thumbnail.png"},{"id":54,"title":"Citrus Squeezer Yellow","price":8.99,"quantity":5,"total":44.95,"discountPercentage":6.3,"discountedTotal":42.12,"thumbnail":"https://cdn.dummyjson.com/products/images/kitchen-accessories/Citrus%20Squeezer%20Yellow/thumbnail.png"},{"id":76,"title":"Wooden Rolling Pin","price":11.99,"quantity":1,"total":11.99,"discountPercentage":8.45,"discountedTotal":10.98,"thumbnail":"https://cdn.dummyjson.com/products/images/kitchen-accessories/Wooden%20Rolling%20Pin/thumbnail.png"},{"id":44,"title":"Family Tree Photo Frame","price":29.99,"quantity":5,"total":149.95,"discountPercentage":10.68,"discountedTotal":133.94,"thumbnail":"https://cdn.dummyjson.com/products/images/home-decoration/Family%20Tree%20Photo%20Frame/thumbnail.png"},{"id":67,"title":"Mug Tree Stand","price":15.99,"quantity":3,"total":47.97,"discountPercentage":16.65,"discountedTotal":39.98,"thumbnail":"https://cdn.dummyjson.com/products/images/kitchen-accessories/Mug%20Tree%20Stand/thumbnail.png"},{"id":16,"title":"Apple","price":1.99,"quantity":1,"total":1.99,"discountPercentage":11.74,"discountedTotal":1.76,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Apple/thumbnail.png"}],"total":586.82,"discountedTotal":500.25,"userId":94,"totalProducts":6,"totalQuantity":18},{"id":15,"products":[{"id":11,"title":"Annibale Colombo Bed","price":1899.99,"quantity":5,"total":9499.95,"discountPercentage":8.09,"discountedTotal":8731.4,"thumbnail":"https://cdn.dummyjson.com/products/images/furniture/Annibale%20Colombo%20Bed/thumbnail.png"},{"id":133,"title":"Samsung Galaxy S10","price":699.99,"quantity":3,"total":2099.9700000000003,"discountPercentage":1.12,"discountedTotal":2076.45,"thumbnail":"https://cdn.dummyjson.com/products/images/smartphones/Samsung%20Galaxy%20S10/thumbnail.png"},{"id":111,"title":"Selfie Stick Monopod","price":12.99,"quantity":3,"total":38.97,"discountPercentage":10.98,"discountedTotal":34.69,"thumbnail":"https://cdn.dummyjson.com/products/images/mobile-accessories/Selfie%20Stick%20Monopod/thumbnail.png"},{"id":162,"title":"Blue Frock","price":29.99,"quantity":3,"total":89.97,"discountPercentage":3.86,"discountedTotal":86.5,"thumbnail":"https://cdn.dummyjson.com/products/images/tops/Blue%20Frock/thumbnail.png"},{"id":30,"title":"Kiwi","price":2.49,"quantity":5,"total":12.450000000000001,"discountPercentage":4.34,"discountedTotal":11.91,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Kiwi/thumbnail.png"}],"total":11741.31,"discountedTotal":10940.95,"userId":11,"totalProducts":5,"totalQuantity":19},{"id":16,"products":[{"id":19,"title":"Chicken Meat","price":9.99,"quantity":2,"total":19.98,"discountPercentage":13.37,"discountedTotal":17.31,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Chicken%20Meat/thumbnail.png"},{"id":152,"title":"Tennis Racket","price":49.99,"quantity":3,"total":149.97,"discountPercentage":9.13,"discountedTotal":136.28,"thumbnail":"https://cdn.dummyjson.com/products/images/sports-accessories/Tennis%20Racket/thumbnail.png"},{"id":35,"title":"Potatoes","price":2.29,"quantity":1,"total":2.29,"discountPercentage":1.69,"discountedTotal":2.25,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Potatoes/thumbnail.png"}],"total":172.24,"discountedTotal":155.84,"userId":200,"totalProducts":3,"totalQuantity":6},{"id":17,"products":[{"id":1,"title":"Essence Mascara Lash Princess","price":9.99,"quantity":2,"total":19.98,"discountPercentage":0.63,"discountedTotal":19.85,"thumbnail":"https://cdn.dummyjson.com/products/images/beauty/Essence%20Mascara%20Lash%20Princess/thumbnail.png"},{"id":60,"title":"Grater Black","price":10.99,"quantity":3,"total":32.97,"discountPercentage":16.62,"discountedTotal":27.49,"thumbnail":"https://cdn.dummyjson.com/products/images/kitchen-accessories/Grater%20Black/thumbnail.png"},{"id":74,"title":"Spoon","price":4.99,"quantity":4,"total":19.96,"discountPercentage":2.78,"discountedTotal":19.41,"thumbnail":"https://cdn.dummyjson.com/products/images/kitchen-accessories/Spoon/thumbnail.png"},{"id":44,"title":"Family Tree Photo Frame","price":29.99,"quantity":4,"total":119.96,"discountPercentage":10.68,"discountedTotal":107.15,"thumbnail":"https://cdn.dummyjson.com/products/images/home-decoration/Family%20Tree%20Photo%20Frame/thumbnail.png"}],"total":192.87,"discountedTotal":173.9,"userId":141,"totalProducts":4,"totalQuantity":13},{"id":18,"products":[{"id":127,"title":"Oppo K1","price":299.99,"quantity":4,"total":1199.96,"discountPercentage":15.93,"discountedTotal":1008.81,"thumbnail":"https://cdn.dummyjson.com/products/images/smartphones/Oppo%20K1/thumbnail.png"},{"id":24,"title":"Fish Steak","price":14.99,"quantity":3,"total":44.97,"discountPercentage":7.66,"discountedTotal":41.53,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Fish%20Steak/thumbnail.png"},{"id":20,"title":"Cooking Oil","price":4.99,"quantity":5,"total":24.950000000000003,"discountPercentage":12.62,"discountedTotal":21.8,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Cooking%20Oil/thumbnail.png"},{"id":154,"title":"Black Sun Glasses","price":29.99,"quantity":3,"total":89.97,"discountPercentage":1.11,"discountedTotal":88.97,"thumbnail":"https://cdn.dummyjson.com/products/images/sunglasses/Black%20Sun%20Glasses/thumbnail.png"},{"id":44,"title":"Family Tree Photo Frame","price":29.99,"quantity":2,"total":59.98,"discountPercentage":10.68,"discountedTotal":53.57,"thumbnail":"https://cdn.dummyjson.com/products/images/home-decoration/Family%20Tree%20Photo%20Frame/thumbnail.png"},{"id":5,"title":"Red Nail Polish","price":8.99,"quantity":5,"total":44.95,"discountPercentage":3.76,"discountedTotal":43.26,"thumbnail":"https://cdn.dummyjson.com/products/images/beauty/Red%20Nail%20Polish/thumbnail.png"}],"total":1464.78,"discountedTotal":1257.94,"userId":189,"totalProducts":6,"totalQuantity":22},{"id":19,"products":[{"id":187,"title":"Golden Shoes Woman","price":49.99,"quantity":3,"total":149.97,"discountPercentage":1.64,"discountedTotal":147.51,"thumbnail":"https://cdn.dummyjson.com/products/images/womens-shoes/Golden%20Shoes%20Woman/thumbnail.png"},{"id":153,"title":"Volleyball","price":11.99,"quantity":5,"total":59.95,"discountPercentage":16.05,"discountedTotal":50.33,"thumbnail":"https://cdn.dummyjson.com/products/images/sports-accessories/Volleyball/thumbnail.png"},{"id":34,"title":"Nescafe Coffee","price":7.99,"quantity":3,"total":23.97,"discountPercentage":8.31,"discountedTotal":21.98,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Nescafe%20Coffee/thumbnail.png"},{"id":130,"title":"Realme XT","price":349.99,"quantity":2,"total":699.98,"discountPercentage":17.86,"discountedTotal":574.96,"thumbnail":"https://cdn.dummyjson.com/products/images/smartphones/Realme%20XT/thumbnail.png"}],"total":933.87,"discountedTotal":794.78,"userId":59,"totalProducts":4,"totalQuantity":13},{"id":20,"products":[{"id":107,"title":"Beats Flex Wireless Earphones","price":49.99,"quantity":1,"total":49.99,"discountPercentage":8.79,"discountedTotal":45.6,"thumbnail":"https://cdn.dummyjson.com/products/images/mobile-accessories/Beats%20Flex%20Wireless%20Earphones/thumbnail.png"},{"id":193,"title":"Watch Gold for Women","price":799.99,"quantity":3,"total":2399.9700000000003,"discountPercentage":19.53,"discountedTotal":1931.26,"thumbnail":"https://cdn.dummyjson.com/products/images/womens-watches/Watch%20Gold%20for%20Women/thumbnail.png"},{"id":100,"title":"Apple Airpods","price":129.99,"quantity":3,"total":389.97,"discountPercentage":12.84,"discountedTotal":339.9,"thumbnail":"https://cdn.dummyjson.com/products/images/mobile-accessories/Apple%20Airpods/thumbnail.png"},{"id":90,"title":"Puma Future Rider Trainers","price":89.99,"quantity":5,"total":449.95,"discountPercentage":14.7,"discountedTotal":383.81,"thumbnail":"https://cdn.dummyjson.com/products/images/mens-shoes/Puma%20Future%20Rider%20Trainers/thumbnail.png"},{"id":118,"title":"Attitude Super Leaves Hand Soap","price":8.99,"quantity":5,"total":44.95,"discountPercentage":7.23,"discountedTotal":41.7,"thumbnail":"https://cdn.dummyjson.com/products/images/skin-care/Attitude%20Super%20Leaves%20Hand%20Soap/thumbnail.png"},{"id":166,"title":"Tartan Dress","price":39.99,"quantity":5,"total":199.95000000000002,"discountPercentage":2.82,"discountedTotal":194.31,"thumbnail":"https://cdn.dummyjson.com/products/images/tops/Tartan%20Dress/thumbnail.png"}],"total":3534.78,"discountedTotal":2936.58,"userId":90,"totalProducts":6,"totalQuantity":22},{"id":21,"products":[{"id":77,"title":"Yellow Peeler","price":5.99,"quantity":2,"total":11.98,"discountPercentage":13.16,"discountedTotal":10.4,"thumbnail":"https://cdn.dummyjson.com/products/images/kitchen-accessories/Yellow%20Peeler/thumbnail.png"},{"id":91,"title":"Sports Sneakers Off White & Red","price":119.99,"quantity":2,"total":239.98,"discountPercentage":1.96,"discountedTotal":235.28,"thumbnail":"https://cdn.dummyjson.com/products/images/mens-shoes/Sports%20Sneakers%20Off%20White%20&%20Red/thumbnail.png"}],"total":251.96,"discountedTotal":245.68,"userId":42,"totalProducts":2,"totalQuantity":4},{"id":22,"products":[{"id":73,"title":"Spice Rack","price":19.99,"quantity":5,"total":99.94999999999999,"discountPercentage":8.74,"discountedTotal":91.21,"thumbnail":"https://cdn.dummyjson.com/products/images/kitchen-accessories/Spice%20Rack/thumbnail.png"},{"id":2,"title":"Eyeshadow Palette with Mirror","price":19.99,"quantity":2,"total":39.98,"discountPercentage":0.7,"discountedTotal":39.7,"thumbnail":"https://cdn.dummyjson.com/products/images/beauty/Eyeshadow%20Palette%20with%20Mirror/thumbnail.png"},{"id":69,"title":"Plate","price":3.99,"quantity":2,"total":7.98,"discountPercentage":16,"discountedTotal":6.7,"thumbnail":"https://cdn.dummyjson.com/products/images/kitchen-accessories/Plate/thumbnail.png"},{"id":155,"title":"Classic Sun Glasses","price":24.99,"quantity":3,"total":74.97,"discountPercentage":9.27,"discountedTotal":68.02,"thumbnail":"https://cdn.dummyjson.com/products/images/sunglasses/Classic%20Sun%20Glasses/thumbnail.png"}],"total":222.88,"discountedTotal":205.63,"userId":140,"totalProducts":4,"totalQuantity":12},{"id":23,"products":[{"id":82,"title":"New DELL XPS 13 9300 Laptop","price":1499.99,"quantity":5,"total":7499.95,"discountPercentage":3.9,"discountedTotal":7207.45,"thumbnail":"https://cdn.dummyjson.com/products/images/laptops/New%20DELL%20XPS%2013%209300%20Laptop/thumbnail.png"},{"id":172,"title":"Blue Women's Handbag","price":49.99,"quantity":4,"total":199.96,"discountPercentage":8.08,"discountedTotal":183.8,"thumbnail":"https://cdn.dummyjson.com/products/images/womens-bags/Blue%20Women's%20Handbag/thumbnail.png"},{"id":41,"title":"Tissue Paper Box","price":2.49,"quantity":2,"total":4.98,"discountPercentage":2.74,"discountedTotal":4.84,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Tissue%20Paper%20Box/thumbnail.png"},{"id":37,"title":"Red Onions","price":1.99,"quantity":4,"total":7.96,"discountPercentage":8.95,"discountedTotal":7.25,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Red%20Onions/thumbnail.png"},{"id":138,"title":"Baseball Ball","price":8.99,"quantity":5,"total":44.95,"discountPercentage":18.49,"discountedTotal":36.64,"thumbnail":"https://cdn.dummyjson.com/products/images/sports-accessories/Baseball%20Ball/thumbnail.png"}],"total":7757.8,"discountedTotal":7439.98,"userId":147,"totalProducts":5,"totalQuantity":20},{"id":24,"products":[{"id":108,"title":"iPhone 12 Silicone Case with MagSafe Plum","price":29.99,"quantity":5,"total":149.95,"discountPercentage":14.68,"discountedTotal":127.94,"thumbnail":"https://cdn.dummyjson.com/products/images/mobile-accessories/iPhone%2012%20Silicone%20Case%20with%20MagSafe%20Plum/thumbnail.png"},{"id":134,"title":"Vivo S1","price":249.99,"quantity":4,"total":999.96,"discountPercentage":5.64,"discountedTotal":943.56,"thumbnail":"https://cdn.dummyjson.com/products/images/smartphones/Vivo%20S1/thumbnail.png"},{"id":174,"title":"Prada Women Bag","price":599.99,"quantity":1,"total":599.99,"discountPercentage":12.86,"discountedTotal":522.83,"thumbnail":"https://cdn.dummyjson.com/products/images/womens-bags/Prada%20Women%20Bag/thumbnail.png"}],"total":1749.9,"discountedTotal":1594.33,"userId":6,"totalProducts":3,"totalQuantity":10},{"id":25,"products":[{"id":4,"title":"Red Lipstick","price":12.99,"quantity":1,"total":12.99,"discountPercentage":14.69,"discountedTotal":11.08,"thumbnail":"https://cdn.dummyjson.com/products/images/beauty/Red%20Lipstick/thumbnail.png"},{"id":126,"title":"Oppo F19 Pro+","price":399.99,"quantity":1,"total":399.99,"discountPercentage":14.38,"discountedTotal":342.47,"thumbnail":"https://cdn.dummyjson.com/products/images/smartphones/Oppo%20F19%20Pro+/thumbnail.png"}],"total":412.98,"discountedTotal":353.55,"userId":118,"totalProducts":2,"totalQuantity":2},{"id":26,"products":[{"id":37,"title":"Red Onions","price":1.99,"quantity":5,"total":9.95,"discountPercentage":8.95,"discountedTotal":9.06,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Red%20Onions/thumbnail.png"},{"id":128,"title":"Realme C35","price":149.99,"quantity":3,"total":449.97,"discountPercentage":3.97,"discountedTotal":432.11,"thumbnail":"https://cdn.dummyjson.com/products/images/smartphones/Realme%20C35/thumbnail.png"}],"total":459.92,"discountedTotal":441.17,"userId":66,"totalProducts":2,"totalQuantity":8},{"id":27,"products":[{"id":33,"title":"Mulberry","price":4.99,"quantity":1,"total":4.99,"discountPercentage":2.75,"discountedTotal":4.85,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Mulberry/thumbnail.png"},{"id":110,"title":"Selfie Lamp with iPhone","price":14.99,"quantity":2,"total":29.98,"discountPercentage":19.87,"discountedTotal":24.02,"thumbnail":"https://cdn.dummyjson.com/products/images/mobile-accessories/Selfie%20Lamp%20with%20iPhone/thumbnail.png"},{"id":16,"title":"Apple","price":1.99,"quantity":3,"total":5.97,"discountPercentage":11.74,"discountedTotal":5.27,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Apple/thumbnail.png"},{"id":83,"title":"Blue & Black Check Shirt","price":29.99,"quantity":5,"total":149.95,"discountPercentage":8.76,"discountedTotal":136.81,"thumbnail":"https://cdn.dummyjson.com/products/images/mens-shirts/Blue%20&%20Black%20Check%20Shirt/thumbnail.png"}],"total":190.89,"discountedTotal":170.95,"userId":75,"totalProducts":4,"totalQuantity":11},{"id":28,"products":[{"id":1,"title":"Essence Mascara Lash Princess","price":9.99,"quantity":5,"total":49.95,"discountPercentage":0.63,"discountedTotal":49.64,"thumbnail":"https://cdn.dummyjson.com/products/images/beauty/Essence%20Mascara%20Lash%20Princess/thumbnail.png"},{"id":141,"title":"Basketball Rim","price":39.99,"quantity":4,"total":159.96,"discountPercentage":14.7,"discountedTotal":136.45,"thumbnail":"https://cdn.dummyjson.com/products/images/sports-accessories/Basketball%20Rim/thumbnail.png"}],"total":209.91,"discountedTotal":186.09,"userId":147,"totalProducts":2,"totalQuantity":9},{"id":29,"products":[{"id":80,"title":"Huawei Matebook X Pro","price":1399.99,"quantity":2,"total":2799.98,"discountPercentage":9.99,"discountedTotal":2520.26,"thumbnail":"https://cdn.dummyjson.com/products/images/laptops/Huawei%20Matebook%20X%20Pro/thumbnail.png"},{"id":107,"title":"Beats Flex Wireless Earphones","price":49.99,"quantity":4,"total":199.96,"discountPercentage":8.79,"discountedTotal":182.38,"thumbnail":"https://cdn.dummyjson.com/products/images/mobile-accessories/Beats%20Flex%20Wireless%20Earphones/thumbnail.png"},{"id":25,"title":"Green Bell Pepper","price":1.29,"quantity":2,"total":2.58,"discountPercentage":1.2,"discountedTotal":2.55,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Green%20Bell%20Pepper/thumbnail.png"},{"id":121,"title":"iPhone 5s","price":199.99,"quantity":4,"total":799.96,"discountPercentage":8.38,"discountedTotal":732.92,"thumbnail":"https://cdn.dummyjson.com/products/images/smartphones/iPhone%205s/thumbnail.png"},{"id":153,"title":"Volleyball","price":11.99,"quantity":5,"total":59.95,"discountPercentage":16.05,"discountedTotal":50.33,"thumbnail":"https://cdn.dummyjson.com/products/images/sports-accessories/Volleyball/thumbnail.png"}],"total":3862.43,"discountedTotal":3488.44,"userId":170,"totalProducts":5,"totalQuantity":17},{"id":30,"products":[{"id":181,"title":"Marni Red & Black Suit","price":179.99,"quantity":1,"total":179.99,"discountPercentage":14.21,"discountedTotal":154.41,"thumbnail":"https://cdn.dummyjson.com/products/images/womens-dresses/Marni%20Red%20&%20Black%20Suit/thumbnail.png"},{"id":171,"title":"Pacifica Touring","price":31999.99,"quantity":4,"total":127999.96,"discountPercentage":7.4,"discountedTotal":118527.96,"thumbnail":"https://cdn.dummyjson.com/products/images/vehicle/Pacifica%20Touring/thumbnail.png"},{"id":35,"title":"Potatoes","price":2.29,"quantity":4,"total":9.16,"discountPercentage":1.69,"discountedTotal":9.01,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Potatoes/thumbnail.png"},{"id":46,"title":"Plant Pot","price":14.99,"quantity":4,"total":59.96,"discountPercentage":17.65,"discountedTotal":49.38,"thumbnail":"https://cdn.dummyjson.com/products/images/home-decoration/Plant%20Pot/thumbnail.png"}],"total":128249.07,"discountedTotal":118740.76,"userId":177,"totalProducts":4,"totalQuantity":13}],"total":50,"skip":0,"limit":30}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Required fields exist in first cart | 1 | 0 | 0 |
| Total | 3 | 0 | 0 |
| Test Name | Assertion Error |
|---|
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDIsImV4cCI6MTc2OTk2NDgwMn0.eOl4rlRcy1_4uC78oP3cgGELQZbvAxI6k8OJ-wFOSs0 |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 6d978146-15b4-47b0-a9c3-098bd025a89e |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDMsImV4cCI6MTc2OTk2MzAwM30.7nOyE34qTDx7fNesdzhke5DQc-odNHa-SVbo_Oti1tg; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDMsImV4cCI6MTc3MjU1MzIwM30.c9aI7-WsCLjZJA8EJ76slNIBR-Ckm8dtgvhTOiYKohs |
| Content-Length | 0 |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:28 GMT |
| Content-Type | text/html; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 88 |
| x-ratelimit-reset | 1769961210 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| content-security-policy | default-src 'none' |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=KRYU%2Fq0KQWFH0fk8W1JVHTc6aUHvSw0L2drkumC90ytlyQLK%2Bq0QFx7jfhgKuyaBM55Ikk7phMmVUV9BSBiYVDR90qV1EkIPF19P4hQ%3D"}]} |
| Content-Encoding | br |
| CF-RAY | 9c729f2d4d0b2891-AMM |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Error</title>
</head>
<body>
<pre>Cannot POST /carts</pre>
</body>
</html>
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Wrong method correctly returns 404 or 405 | 1 | 0 | 0 |
| Total | 1 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Retrieves detailed information about a specific shopping cart by its unique identifier.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/carts/11`
## Authentication
- **Required**: No
- This is a public endpoint that doesn't require authentication
## Parameters
### Path Variables
- `cartId` (required) - The unique identifier of the cart to retrieve
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
{
"id": 1,
"products": [
{
"id": 1,
"title": "Product Name",
"price": 549,
"quantity": 2,
"total": 1098,
"discountPercentage": 12.96,
"discountedTotal": 956
}
],
"total": 1098,
"discountedTotal": 956,
"userId": 1,
"totalProducts": 1,
"totalQuantity": 2
}
```
## Tests Included
- Validates response status code is 200
- Verifies cart ID matches request
- Checks products array structure
- Confirms total calculations are correct
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDIsImV4cCI6MTc2OTk2NDgwMn0.eOl4rlRcy1_4uC78oP3cgGELQZbvAxI6k8OJ-wFOSs0 |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 907cfb4f-e4bd-4f02-9cc0-586780142904 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDMsImV4cCI6MTc2OTk2MzAwM30.7nOyE34qTDx7fNesdzhke5DQc-odNHa-SVbo_Oti1tg; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDMsImV4cCI6MTc3MjU1MzIwM30.c9aI7-WsCLjZJA8EJ76slNIBR-Ckm8dtgvhTOiYKohs |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:28 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 87 |
| x-ratelimit-reset | 1769961209 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"5d1-dNDH7AwlX9F89w+TElZ1Vd5INzs" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=cnsKPkMiK1gZXYQOZ2Z9ZEk4nuFDaaP%2FGpsO%2FkOLlsUTwc1YKVr4T7ZcCr3z4tBxFRfQtPiq0gbnM8CQy6VRPbezIVcMXW0UyRqLXg8%3D"}]} |
| CF-RAY | 9c729f2efeca2891-AMM |
{"id":11,"products":[{"id":88,"title":"Nike Air Jordan 1 Red And Black","price":149.99,"quantity":1,"total":149.99,"discountPercentage":17.18,"discountedTotal":124.22,"thumbnail":"https://cdn.dummyjson.com/products/images/mens-shoes/Nike%20Air%20Jordan%201%20Red%20And%20Black/thumbnail.png"},{"id":32,"title":"Milk","price":3.49,"quantity":3,"total":10.47,"discountPercentage":9.36,"discountedTotal":9.49,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Milk/thumbnail.png"},{"id":74,"title":"Spoon","price":4.99,"quantity":3,"total":14.97,"discountPercentage":2.78,"discountedTotal":14.55,"thumbnail":"https://cdn.dummyjson.com/products/images/kitchen-accessories/Spoon/thumbnail.png"},{"id":145,"title":"Cricket Wicket","price":29.99,"quantity":3,"total":89.97,"discountPercentage":17.87,"discountedTotal":73.89,"thumbnail":"https://cdn.dummyjson.com/products/images/sports-accessories/Cricket%20Wicket/thumbnail.png"},{"id":26,"title":"Green Chili Pepper","price":0.99,"quantity":3,"total":2.9699999999999998,"discountPercentage":18.69,"discountedTotal":2.41,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Green%20Chili%20Pepper/thumbnail.png"},{"id":127,"title":"Oppo K1","price":299.99,"quantity":1,"total":299.99,"discountPercentage":15.93,"discountedTotal":252.2,"thumbnail":"https://cdn.dummyjson.com/products/images/smartphones/Oppo%20K1/thumbnail.png"}],"total":568.36,"discountedTotal":476.76,"userId":172,"totalProducts":6,"totalQuantity":14}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Required fields exist in cart | 1 | 0 | 0 |
| Products array is not empty | 1 | 0 | 0 |
| Total | 4 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Retrieves all shopping carts associated with a specific user.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/carts/user/20`
## Authentication
- **Required**: No
- This is a public endpoint that doesn't require authentication
## Parameters
### Path Variables
- `userId` (required) - The unique identifier of the user whose carts to retrieve
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
{
"carts": [
{
"id": 1,
"products": [
{
"id": 1,
"title": "Product Name",
"price": 549,
"quantity": 2,
"total": 1098
}
],
"total": 1098,
"discountedTotal": 985,
"userId": 20,
"totalProducts": 1,
"totalQuantity": 2
}
],
"total": 3,
"skip": 0,
"limit": 30
}
```
## Tests Included
- Validates response status code is 200
- Verifies all carts belong to specified user
- Checks carts array structure
- Confirms user ID matches in all carts
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDIsImV4cCI6MTc2OTk2NDgwMn0.eOl4rlRcy1_4uC78oP3cgGELQZbvAxI6k8OJ-wFOSs0 |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | df3ed006-ffbc-414b-a431-74717be527f8 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDMsImV4cCI6MTc2OTk2MzAwM30.7nOyE34qTDx7fNesdzhke5DQc-odNHa-SVbo_Oti1tg; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDMsImV4cCI6MTc3MjU1MzIwM30.c9aI7-WsCLjZJA8EJ76slNIBR-Ckm8dtgvhTOiYKohs |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:28 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 98 |
| x-ratelimit-reset | 1769961213 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"452-dejvefTk1JGhUjC9m0sxjP8K8Do" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=UDlVNxy%2FThO5qshS8zhjG9yhDjBSVu%2B1wXJV0vtYgP3AeXmPC%2F39j4diYjQcaH5SkzWBzibYqNYGmfciQSMXvLl7bRQbNtiSYF6Edec%3D"}]} |
| CF-RAY | 9c729f30992e2891-AMM |
{"carts":[{"id":44,"products":[{"id":93,"title":"Brown Leather Belt Watch","price":89.99,"quantity":3,"total":269.96999999999997,"discountPercentage":8.72,"discountedTotal":246.43,"thumbnail":"https://cdn.dummyjson.com/products/images/mens-watches/Brown%20Leather%20Belt%20Watch/thumbnail.png"},{"id":4,"title":"Red Lipstick","price":12.99,"quantity":2,"total":25.98,"discountPercentage":14.69,"discountedTotal":22.16,"thumbnail":"https://cdn.dummyjson.com/products/images/beauty/Red%20Lipstick/thumbnail.png"},{"id":140,"title":"Basketball","price":14.99,"quantity":5,"total":74.95,"discountPercentage":15.7,"discountedTotal":63.18,"thumbnail":"https://cdn.dummyjson.com/products/images/sports-accessories/Basketball/thumbnail.png"},{"id":83,"title":"Blue & Black Check Shirt","price":29.99,"quantity":3,"total":89.97,"discountPercentage":8.76,"discountedTotal":82.09,"thumbnail":"https://cdn.dummyjson.com/products/images/mens-shirts/Blue%20&%20Black%20Check%20Shirt/thumbnail.png"}],"total":460.87,"discountedTotal":413.86,"userId":20,"totalProducts":4,"totalQuantity":13}],"total":1,"skip":0,"limit":1}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Creates a new shopping cart or adds products to an existing cart for a user.
## Method & Endpoint
- **Method**: `POST`
- **Endpoint**: `https://dummyjson.com/carts/add`
## Authentication
- **Required**: No
- This is a public endpoint for demonstration purposes
## Parameters
### Request Body (JSON)
```json
{
"userId": 1,
"products": [
{
"id": 1,
"quantity": 2
},
{
"id": 5,
"quantity": 1
}
]
}
```
**Required Fields**:
- `userId` - The user ID who owns the cart
- `products` - Array of product objects with `id` and `quantity`
## Expected Response
- **Status Code**: `201 Created`
- **Response Structure**: Returns the created cart with calculated totals
```json
{
"id": 21,
"products": [
{
"id": 1,
"title": "Product Name",
"price": 549,
"quantity": 2,
"total": 1098
}
],
"total": 1098,
"discountedTotal": 985,
"userId": 1,
"totalProducts": 2,
"totalQuantity": 3
}
```
## Tests Included
- Validates response status code is 201
- Verifies cart ID is assigned
- Checks product totals are calculated correctly
- Confirms all products are added to cart
| Header Name | Header Value |
|---|---|
| Content-Type | application/json |
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDIsImV4cCI6MTc2OTk2NDgwMn0.eOl4rlRcy1_4uC78oP3cgGELQZbvAxI6k8OJ-wFOSs0 |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | c68803cd-2b84-4545-9221-7437f8c2499c |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 152 |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDMsImV4cCI6MTc2OTk2MzAwM30.7nOyE34qTDx7fNesdzhke5DQc-odNHa-SVbo_Oti1tg; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDMsImV4cCI6MTc3MjU1MzIwM30.c9aI7-WsCLjZJA8EJ76slNIBR-Ckm8dtgvhTOiYKohs |
{
"userId": 1,
"products": [
{
"id": 144,
"quantity": 4
},
{
"id": 98,
"quantity": 1
}
]
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:28 GMT |
| Content-Type | application/json; charset=utf-8 |
| Content-Length | 584 |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 98 |
| x-ratelimit-reset | 1769961217 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"248-5dWqMXWeXCBfsFmAf4sbnGOuqRg" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=QLgpUMIarZ8hN3QuiM8N%2BDmCrwv6XSqCFHh5h6uMDORcmZfPpL8It93w%2FOONtMsHjTfEctXznQn14cl1i7Bnt23Xh3BvI2%2BWre5CP8M%3D"}]} |
| CF-RAY | 9c729f322b4e2891-AMM |
{"id":51,"products":[{"id":98,"title":"Rolex Submariner Watch","price":13999.99,"quantity":4,"total":55999.96,"discountPercentage":5.05,"discountedPrice":53172,"thumbnail":"https://cdn.dummyjson.com/product-images/mens-watches/rolex-submariner-watch/thumbnail.webp"},{"id":144,"title":"Cricket Helmet","price":44.99,"quantity":1,"total":44.99,"discountPercentage":9.64,"discountedPrice":41,"thumbnail":"https://cdn.dummyjson.com/product-images/sports-accessories/cricket-helmet/thumbnail.webp"}],"total":56044.95,"discountedTotal":53213,"userId":1,"totalProducts":2,"totalQuantity":5}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 201 | 1 | 0 | 0 |
| Response has userId | 1 | 0 | 0 |
| Products have id and quantity | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 4 | 0 | 0 |
| Test Name | Assertion Error |
|---|
| Header Name | Header Value |
|---|---|
| Content-Type | application/json |
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDIsImV4cCI6MTc2OTk2NDgwMn0.eOl4rlRcy1_4uC78oP3cgGELQZbvAxI6k8OJ-wFOSs0 |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | b44c3e80-4679-4693-a566-a986b06cc007 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 113 |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDMsImV4cCI6MTc2OTk2MzAwM30.7nOyE34qTDx7fNesdzhke5DQc-odNHa-SVbo_Oti1tg; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDMsImV4cCI6MTc3MjU1MzIwM30.c9aI7-WsCLjZJA8EJ76slNIBR-Ckm8dtgvhTOiYKohs |
{
"userId": 1,
"products": [
{
"id": 144,
"quantity": 0
}
]
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:29 GMT |
| Content-Type | application/json; charset=utf-8 |
| Content-Length | 332 |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 97 |
| x-ratelimit-reset | 1769961213 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"14c-M42jev9/jNjkfFvEKbauQtpC+2U" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=OhrTAbWhBwTqMSSNUwlgSoo1%2FJYlwxpV800pd3UdJB6cE%2Bm1CK%2FK5w%2FU7kTFGXawqo28zp04Vrv4lbvG5X3y4ByLSW6sWC9f4EYjWUY%3D"}]} |
| CF-RAY | 9c729f33dd602891-AMM |
{"id":51,"products":[{"id":144,"title":"Cricket Helmet","price":44.99,"quantity":1,"total":44.99,"discountPercentage":9.64,"discountedPrice":41,"thumbnail":"https://cdn.dummyjson.com/product-images/sports-accessories/cricket-helmet/thumbnail.webp"}],"total":44.99,"discountedTotal":41,"userId":1,"totalProducts":1,"totalQuantity":1}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| BUGT quantity=0 automaticalle corrected to 1 | 1 | 0 | 0 |
| Total | 1 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Updates an existing shopping cart's products and quantities.
## Method & Endpoint
- **Method**: `PUT`
- **Endpoint**: `https://dummyjson.com/carts/11`
## Authentication
- **Required**: No
- This is a public endpoint for demonstration purposes
## Parameters
### Path Variables
- `cartId` (required) - The unique identifier of the cart to update
### Request Body (JSON)
```json
{
"products": [
{
"id": 1,
"quantity": 3
},
{
"id": 10,
"quantity": 1
}
]
}
```
**Note**: The products array replaces the existing cart contents.
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**: Returns the updated cart with recalculated totals
```json
{
"id": 1,
"products": [
{
"id": 1,
"title": "Product Name",
"price": 549,
"quantity": 3,
"total": 1647
}
],
"total": 1647,
"discountedTotal": 1480,
"userId": 1,
"totalProducts": 2,
"totalQuantity": 4
}
```
## Tests Included
- Validates response status code is 200
- Verifies cart ID remains unchanged
- Checks updated quantities and totals
- Confirms product list is updated correctly
| Header Name | Header Value |
|---|---|
| Content-Type | application/json |
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDIsImV4cCI6MTc2OTk2NDgwMn0.eOl4rlRcy1_4uC78oP3cgGELQZbvAxI6k8OJ-wFOSs0 |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 998cecd0-12da-466d-a213-df7ac35963f0 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 78 |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDMsImV4cCI6MTc2OTk2MzAwM30.7nOyE34qTDx7fNesdzhke5DQc-odNHa-SVbo_Oti1tg; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDMsImV4cCI6MTc3MjU1MzIwM30.c9aI7-WsCLjZJA8EJ76slNIBR-Ckm8dtgvhTOiYKohs |
{
"merge": true,
"products": [
{ "id": 1, "quantity": 1 }
]
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:29 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 97 |
| x-ratelimit-reset | 1769961217 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"6af-U879Xr8c9nPuFdwkrSazTIBwHGc" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=U8utXrELB4IH37v3kyj58mHCnRi2dTpoRvOx3zw664U75Iqcho024D6cVBDLS2k%2FVrSTU0lBXfhNS8k1qEoLOtEAwV7j3e8f%2FAmTRaM%3D"}]} |
| CF-RAY | 9c729f355ebd2891-AMM |
{"id":11,"products":[{"id":88,"title":"Nike Air Jordan 1 Red And Black","price":149.99,"quantity":1,"total":149.99,"discountPercentage":17.18,"discountedPrice":124,"thumbnail":"https://cdn.dummyjson.com/products/images/mens-shoes/Nike%20Air%20Jordan%201%20Red%20And%20Black/thumbnail.png"},{"id":32,"title":"Milk","price":3.49,"quantity":3,"total":10.47,"discountPercentage":9.36,"discountedPrice":9,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Milk/thumbnail.png"},{"id":74,"title":"Spoon","price":4.99,"quantity":3,"total":14.97,"discountPercentage":2.78,"discountedPrice":15,"thumbnail":"https://cdn.dummyjson.com/products/images/kitchen-accessories/Spoon/thumbnail.png"},{"id":145,"title":"Cricket Wicket","price":29.99,"quantity":3,"total":89.97,"discountPercentage":17.87,"discountedPrice":74,"thumbnail":"https://cdn.dummyjson.com/products/images/sports-accessories/Cricket%20Wicket/thumbnail.png"},{"id":26,"title":"Green Chili Pepper","price":0.99,"quantity":3,"total":2.9699999999999998,"discountPercentage":18.69,"discountedPrice":2,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Green%20Chili%20Pepper/thumbnail.png"},{"id":127,"title":"Oppo K1","price":299.99,"quantity":1,"total":299.99,"discountPercentage":15.93,"discountedPrice":252,"thumbnail":"https://cdn.dummyjson.com/products/images/smartphones/Oppo%20K1/thumbnail.png"},{"id":1,"title":"Essence Mascara Lash Princess","price":9.99,"quantity":1,"total":9.99,"discountPercentage":10.48,"discountedPrice":9,"thumbnail":"https://cdn.dummyjson.com/product-images/beauty/essence-mascara-lash-princess/thumbnail.webp"}],"total":578.35,"discountedTotal":485,"userId":172,"totalProducts":7,"totalQuantity":15}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Deletes a specific shopping cart from the system by its unique identifier.
## Method & Endpoint
- **Method**: `DELETE`
- **Endpoint**: `https://dummyjson.com/carts/11`
## Authentication
- **Required**: No
- This is a public endpoint for demonstration purposes
## Parameters
### Path Variables
- `cartId` (required) - The unique identifier of the cart to delete
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**: Returns the deleted cart information with deletion confirmation
```json
{
"id": 1,
"products": [
{
"id": 1,
"title": "Product Name",
"price": 549,
"quantity": 2,
"total": 1098
}
],
"total": 1098,
"discountedTotal": 985,
"userId": 1,
"totalProducts": 1,
"totalQuantity": 2,
"isDeleted": true,
"deletedOn": "2024-01-01T12:00:00.000Z"
}
```
## Tests Included
- Validates response status code is 200
- Verifies `isDeleted` flag is true
- Checks deletion timestamp is present
- Confirms deleted cart details are returned
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDIsImV4cCI6MTc2OTk2NDgwMn0.eOl4rlRcy1_4uC78oP3cgGELQZbvAxI6k8OJ-wFOSs0 |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | af8c3633-a021-42dc-890c-9f9fba24e568 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDMsImV4cCI6MTc2OTk2MzAwM30.7nOyE34qTDx7fNesdzhke5DQc-odNHa-SVbo_Oti1tg; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDMsImV4cCI6MTc3MjU1MzIwM30.c9aI7-WsCLjZJA8EJ76slNIBR-Ckm8dtgvhTOiYKohs |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:29 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 99 |
| x-ratelimit-reset | 1769961219 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"609-U+BYxRGiP5yAwHE6+vMz55EShAs" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=RmkJxxOZt%2BWcdpep9QekWsXywc722dkYztRqxHn1dyieI86zleXrCAZTDSMlfhO3Z4ZpsTIdiDqBVxpSpiCtHGJz75ziFKV9HajCYZM%3D"}]} |
| CF-RAY | 9c729f36f8722891-AMM |
{"id":11,"products":[{"id":88,"title":"Nike Air Jordan 1 Red And Black","price":149.99,"quantity":1,"total":149.99,"discountPercentage":17.18,"discountedTotal":124.22,"thumbnail":"https://cdn.dummyjson.com/products/images/mens-shoes/Nike%20Air%20Jordan%201%20Red%20And%20Black/thumbnail.png"},{"id":32,"title":"Milk","price":3.49,"quantity":3,"total":10.47,"discountPercentage":9.36,"discountedTotal":9.49,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Milk/thumbnail.png"},{"id":74,"title":"Spoon","price":4.99,"quantity":3,"total":14.97,"discountPercentage":2.78,"discountedTotal":14.55,"thumbnail":"https://cdn.dummyjson.com/products/images/kitchen-accessories/Spoon/thumbnail.png"},{"id":145,"title":"Cricket Wicket","price":29.99,"quantity":3,"total":89.97,"discountPercentage":17.87,"discountedTotal":73.89,"thumbnail":"https://cdn.dummyjson.com/products/images/sports-accessories/Cricket%20Wicket/thumbnail.png"},{"id":26,"title":"Green Chili Pepper","price":0.99,"quantity":3,"total":2.9699999999999998,"discountPercentage":18.69,"discountedTotal":2.41,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Green%20Chili%20Pepper/thumbnail.png"},{"id":127,"title":"Oppo K1","price":299.99,"quantity":1,"total":299.99,"discountPercentage":15.93,"discountedTotal":252.2,"thumbnail":"https://cdn.dummyjson.com/products/images/smartphones/Oppo%20K1/thumbnail.png"}],"total":568.36,"discountedTotal":476.76,"userId":172,"totalProducts":6,"totalQuantity":14,"isDeleted":true,"deletedOn":"2026-02-01T15:53:29.513Z"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Deleted cart has correct id | 1 | 0 | 0 |
| Response contains isDeleted flag | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 4 | 0 | 0 |
| Test Name | Assertion Error |
|---|
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDIsImV4cCI6MTc2OTk2NDgwMn0.eOl4rlRcy1_4uC78oP3cgGELQZbvAxI6k8OJ-wFOSs0 |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 4f86e7ec-2047-4a7a-87cb-6b5a2b3cf028 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDMsImV4cCI6MTc2OTk2MzAwM30.7nOyE34qTDx7fNesdzhke5DQc-odNHa-SVbo_Oti1tg; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDMsImV4cCI6MTc3MjU1MzIwM30.c9aI7-WsCLjZJA8EJ76slNIBR-Ckm8dtgvhTOiYKohs |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:29 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 96 |
| x-ratelimit-reset | 1769961213 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"2b-JQ/fhVd+HH8flrSxW3e6Bpvtu6A" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=cm4VpiFj7vVrD3JuXjDvkYTtuERwUMvvPfEONX%2Bd9uEyBiEibrBIGe0k9egydouSg%2BY94xtTX2hz%2BZisyIdzxn8YaiJcYpVxCKfh4jo%3D"}]} |
| Content-Encoding | br |
| CF-RAY | 9c729f38aa532891-AMM |
{"message":"Cart with id 'abcd' not found"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Invalid cart id handled correctly | 1 | 0 | 0 |
| Response body exists | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Retrieves a paginated list of all users in the system.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/users`
## Authentication
- **Required**: No
- This is a public endpoint that doesn't require authentication
## Parameters
- No required parameters
- Optional query parameters: `limit`, `skip` for pagination
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
{
"users": [
{
"id": 1,
"firstName": "Emily",
"lastName": "Johnson",
"email": "emily.johnson@x.dummyjson.com",
"username": "emilys",
"age": 28,
"gender": "female",
"phone": "+81 965-431-3024",
"birthDate": "1996-5-30",
"image": "https://dummyjson.com/icon/emilys/128",
"address": {...},
"company": {...}
}
],
"total": 208,
"skip": 0,
"limit": 30
}
```
## Tests Included
- Validates response status code is 200
- Verifies users array structure
- Checks pagination metadata
- Confirms user object contains required fields
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDIsImV4cCI6MTc2OTk2NDgwMn0.eOl4rlRcy1_4uC78oP3cgGELQZbvAxI6k8OJ-wFOSs0 |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | bdada69c-4662-41cd-a9dc-4da1c64a7e08 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDMsImV4cCI6MTc2OTk2MzAwM30.7nOyE34qTDx7fNesdzhke5DQc-odNHa-SVbo_Oti1tg; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDMsImV4cCI6MTc3MjU1MzIwM30.c9aI7-WsCLjZJA8EJ76slNIBR-Ckm8dtgvhTOiYKohs |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:29 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 87 |
| x-ratelimit-reset | 1769886055 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"a3b1-Wc+qCYPJ2IxKpnt00AlusGYMzCE" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| Age | 75160 |
| Cache-Control | no-store |
| cf-cache-status | HIT |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=SpWDjh1%2F9bI3wHWViAN1G0nkhR9lKRO0DSRILDi0o%2Fc7khJQ3%2BcUBVfPezA7e6hIsu%2FCdpnUJgVWlxD8aC9wnmotrcs5%2FazJQsjOiuI%3D"}]} |
| CF-RAY | 9c729f3a5c462891-AMM |
{"users":[{"id":1,"firstName":"Emily","lastName":"Johnson","maidenName":"Smith","age":29,"gender":"female","email":"emily.johnson@x.dummyjson.com","phone":"+81 965-431-3024","username":"emilys","password":"emilyspass","birthDate":"1996-5-30","image":"https://dummyjson.com/icon/emilys/128","bloodGroup":"O-","height":193.24,"weight":63.16,"eyeColor":"Green","hair":{"color":"Brown","type":"Curly"},"ip":"42.48.100.32","address":{"address":"626 Main Street","city":"Phoenix","state":"Mississippi","stateCode":"MS","postalCode":"29112","coordinates":{"lat":-77.16213,"lng":-92.084824},"country":"United States"},"macAddress":"47:fa:41:18:ec:eb","university":"University of Wisconsin--Madison","bank":{"cardExpire":"05/28","cardNumber":"3693233511855044","cardType":"Diners Club International","currency":"GBP","iban":"GB74MH2UZLR9TRPHYNU8F8"},"company":{"department":"Engineering","name":"Dooley, Kozey and Cronin","title":"Sales Manager","address":{"address":"263 Tenth Street","city":"San Francisco","state":"Wisconsin","stateCode":"WI","postalCode":"37657","coordinates":{"lat":71.814525,"lng":-161.150263},"country":"United States"}},"ein":"977-175","ssn":"900-590-289","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"admin"},{"id":2,"firstName":"Michael","lastName":"Williams","maidenName":"","age":36,"gender":"male","email":"michael.williams@x.dummyjson.com","phone":"+49 258-627-6644","username":"michaelw","password":"michaelwpass","birthDate":"1989-8-10","image":"https://dummyjson.com/icon/michaelw/128","bloodGroup":"B+","height":186.22,"weight":76.32,"eyeColor":"Red","hair":{"color":"Green","type":"Straight"},"ip":"12.13.116.142","address":{"address":"385 Fifth Street","city":"Houston","state":"Alabama","stateCode":"AL","postalCode":"38807","coordinates":{"lat":22.815468,"lng":115.608581},"country":"United States"},"macAddress":"79:15:78:99:60:aa","university":"Ohio State University","bank":{"cardExpire":"01/30","cardNumber":"3530633803003665","cardType":"JCB","currency":"USD","iban":"DE26362283149158045865"},"company":{"department":"Support","name":"Spinka - Dickinson","title":"Support Specialist","address":{"address":"395 Main Street","city":"Los Angeles","state":"New Hampshire","stateCode":"NH","postalCode":"73442","coordinates":{"lat":79.098326,"lng":-119.624845},"country":"United States"}},"ein":"912-602","ssn":"108-953-962","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Edge/97.0.1072.76 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"admin"},{"id":3,"firstName":"Sophia","lastName":"Brown","maidenName":"","age":43,"gender":"female","email":"sophia.brown@x.dummyjson.com","phone":"+81 210-652-2785","username":"sophiab","password":"sophiabpass","birthDate":"1982-11-6","image":"https://dummyjson.com/icon/sophiab/128","bloodGroup":"O-","height":177.72,"weight":52.6,"eyeColor":"Hazel","hair":{"color":"White","type":"Wavy"},"ip":"214.225.51.195","address":{"address":"1642 Ninth Street","city":"Washington","state":"Alabama","stateCode":"AL","postalCode":"32822","coordinates":{"lat":45.289366,"lng":46.832664},"country":"United States"},"macAddress":"12:a3:d3:6f:5c:5b","university":"Pepperdine University","bank":{"cardExpire":"10/27","cardNumber":"6011212053392887","cardType":"Discover","currency":"EUR","iban":"DE12191213468288004835"},"company":{"department":"Research and Development","name":"Schiller - Zieme","title":"Accountant","address":{"address":"1896 Washington Street","city":"Dallas","state":"Nevada","stateCode":"NV","postalCode":"88511","coordinates":{"lat":20.086743,"lng":-34.577107},"country":"United States"}},"ein":"963-113","ssn":"638-461-822","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"admin"},{"id":4,"firstName":"James","lastName":"Davis","maidenName":"","age":46,"gender":"male","email":"james.davis@x.dummyjson.com","phone":"+49 614-958-9364","username":"jamesd","password":"jamesdpass","birthDate":"1979-5-4","image":"https://dummyjson.com/icon/jamesd/128","bloodGroup":"AB+","height":193.31,"weight":62.1,"eyeColor":"Amber","hair":{"color":"Blonde","type":"Straight"},"ip":"101.118.131.66","address":{"address":"238 Jefferson Street","city":"Seattle","state":"Pennsylvania","stateCode":"PA","postalCode":"68354","coordinates":{"lat":16.782513,"lng":-139.34723},"country":"United States"},"macAddress":"10:7d:df:1f:97:58","university":"University of Southern California","bank":{"cardExpire":"07/30","cardNumber":"5303440212268149","cardType":"Mastercard","currency":"CAD","iban":"DE01300746880579852937"},"company":{"department":"Support","name":"Pagac and Sons","title":"Research Analyst","address":{"address":"1622 Lincoln Street","city":"Fort Worth","state":"Pennsylvania","stateCode":"PA","postalCode":"27768","coordinates":{"lat":54.91193,"lng":-79.498328},"country":"United States"}},"ein":"904-810","ssn":"116-951-314","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"admin"},{"id":5,"firstName":"Emma","lastName":"Miller","maidenName":"Johnson","age":31,"gender":"female","email":"emma.miller@x.dummyjson.com","phone":"+91 759-776-1614","username":"emmaj","password":"emmajpass","birthDate":"1994-6-13","image":"https://dummyjson.com/icon/emmaj/128","bloodGroup":"AB-","height":192.8,"weight":63.62,"eyeColor":"Green","hair":{"color":"White","type":"Straight"},"ip":"224.126.22.183","address":{"address":"607 Fourth Street","city":"Jacksonville","state":"Colorado","stateCode":"CO","postalCode":"26593","coordinates":{"lat":0.505589,"lng":-157.43281},"country":"United States"},"macAddress":"32:b9:7e:8d:f5:e8","university":"Northeastern University","bank":{"cardExpire":"07/30","cardNumber":"5237188057591130","cardType":"Mastercard","currency":"NZD","iban":"DE19182355652037133559"},"company":{"department":"Human Resources","name":"Graham - Gulgowski","title":"Quality Assurance Engineer","address":{"address":"1460 Sixth Street","city":"San Antonio","state":"Idaho","stateCode":"ID","postalCode":"21965","coordinates":{"lat":44.346545,"lng":-26.944701},"country":"United States"}},"ein":"403-505","ssn":"526-210-885","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:97.0) Gecko/20100101 Firefox/97.0","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"admin"},{"id":6,"firstName":"Olivia","lastName":"Wilson","maidenName":"","age":23,"gender":"female","email":"olivia.wilson@x.dummyjson.com","phone":"+91 607-295-6448","username":"oliviaw","password":"oliviawpass","birthDate":"2002-4-20","image":"https://dummyjson.com/icon/oliviaw/128","bloodGroup":"B+","height":182.61,"weight":58,"eyeColor":"Hazel","hair":{"color":"Gray","type":"Curly"},"ip":"249.178.112.207","address":{"address":"547 First Street","city":"Fort Worth","state":"Tennessee","stateCode":"TN","postalCode":"83843","coordinates":{"lat":75.32627,"lng":-26.15285},"country":"United States"},"macAddress":"9c:7f:ea:34:18:19","university":"University of North Carolina--Chapel Hill","bank":{"cardExpire":"06/30","cardNumber":"376320072452632","cardType":"American Express","currency":"NZD","iban":"DE21153814367894194071"},"company":{"department":"Product Management","name":"Pfannerstill Inc","title":"Research Analyst","address":{"address":"425 Sixth Street","city":"Indianapolis","state":"Oklahoma","stateCode":"OK","postalCode":"74263","coordinates":{"lat":74.986644,"lng":-132.916888},"country":"United States"}},"ein":"921-709","ssn":"836-772-168","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.3 Safari/605.1.15","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"moderator"},{"id":7,"firstName":"Alexander","lastName":"Jones","maidenName":"","age":39,"gender":"male","email":"alexander.jones@x.dummyjson.com","phone":"+61 260-824-4986","username":"alexanderj","password":"alexanderjpass","birthDate":"1986-10-20","image":"https://dummyjson.com/icon/alexanderj/128","bloodGroup":"AB-","height":153.89,"weight":77.42,"eyeColor":"Blue","hair":{"color":"White","type":"Straight"},"ip":"166.204.84.32","address":{"address":"664 Maple Street","city":"Indianapolis","state":"Delaware","stateCode":"DE","postalCode":"86684","coordinates":{"lat":35.289664,"lng":7.063255},"country":"United States"},"macAddress":"d2:64:58:2d:1c:46","university":"University of Illinois--Urbana-Champaign","bank":{"cardExpire":"12/29","cardNumber":"5189302549548693","cardType":"Mastercard","currency":"PKR","iban":"DE67517655968963441488"},"company":{"department":"Engineering","name":"Dickens - Beahan","title":"Web Developer","address":{"address":"996 Eighth Street","city":"Washington","state":"Kansas","stateCode":"KS","postalCode":"27858","coordinates":{"lat":-75.462366,"lng":-128.025697},"country":"United States"}},"ein":"638-127","ssn":"722-993-925","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"moderator"},{"id":8,"firstName":"Ava","lastName":"Taylor","maidenName":"","age":28,"gender":"female","email":"ava.taylor@x.dummyjson.com","phone":"+1 458-853-7877","username":"avat","password":"avatpass","birthDate":"1997-8-25","image":"https://dummyjson.com/icon/avat/128","bloodGroup":"AB-","height":168.47,"weight":57.08,"eyeColor":"Hazel","hair":{"color":"Red","type":"Kinky"},"ip":"150.73.197.233","address":{"address":"1197 First Street","city":"Fort Worth","state":"Rhode Island","stateCode":"RI","postalCode":"24771","coordinates":{"lat":-81.194833,"lng":-87.948158},"country":"United States"},"macAddress":"8d:2e:c2:d6:e7:a8","university":"University of Wisconsin--Madison","bank":{"cardExpire":"08/30","cardNumber":"5349974103330333","cardType":"Mastercard","currency":"EUR","iban":"FR94ZM2MMGL1EVYQE1ZLCVCFH83"},"company":{"department":"Marketing","name":"Nikolaus Inc","title":"Chief Executive Officer","address":{"address":"930 Lincoln Street","city":"Austin","state":"Colorado","stateCode":"CO","postalCode":"47592","coordinates":{"lat":87.970083,"lng":-42.769351},"country":"United States"}},"ein":"297-762","ssn":"257-419-109","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"moderator"},{"id":9,"firstName":"Ethan","lastName":"Martinez","maidenName":"","age":34,"gender":"male","email":"ethan.martinez@x.dummyjson.com","phone":"+92 933-608-5081","username":"ethanm","password":"ethanmpass","birthDate":"1991-2-12","image":"https://dummyjson.com/icon/ethanm/128","bloodGroup":"AB+","height":159.19,"weight":68.81,"eyeColor":"Hazel","hair":{"color":"Purple","type":"Curly"},"ip":"63.191.127.71","address":{"address":"466 Pine Street","city":"San Antonio","state":"Louisiana","stateCode":"LA","postalCode":"72360","coordinates":{"lat":74.074918,"lng":-25.312703},"country":"United States"},"macAddress":"59:e:9e:e3:29:da","university":"Syracuse University","bank":{"cardExpire":"10/27","cardNumber":"3598603288061479","cardType":"JCB","currency":"GBP","iban":"GB26PND7D83JTW4HL6LZ71"},"company":{"department":"Support","name":"Gorczany - Gottlieb","title":"Legal Counsel","address":{"address":"1597 Oak Street","city":"Chicago","state":"Florida","stateCode":"FL","postalCode":"28100","coordinates":{"lat":-67.45208,"lng":-23.209886},"country":"United States"}},"ein":"790-434","ssn":"569-650-348","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"moderator"},{"id":10,"firstName":"Isabella","lastName":"Anderson","maidenName":"Davis","age":32,"gender":"female","email":"isabella.anderson@x.dummyjson.com","phone":"+49 770-658-4885","username":"isabellad","password":"isabelladpass","birthDate":"1993-6-10","image":"https://dummyjson.com/icon/isabellad/128","bloodGroup":"A-","height":150.56,"weight":50.1,"eyeColor":"Brown","hair":{"color":"Blonde","type":"Curly"},"ip":"114.9.114.205","address":{"address":"1964 Oak Street","city":"New York","state":"Utah","stateCode":"UT","postalCode":"89352","coordinates":{"lat":41.331324,"lng":151.782727},"country":"United States"},"macAddress":"b1:b0:d0:a2:82:80","university":"California Institute of Technology (Caltech)","bank":{"cardExpire":"03/30","cardNumber":"3602093733952858","cardType":"Diners Club International","currency":"USD","iban":"DE12934874962442340025"},"company":{"department":"Marketing","name":"Pollich - Hilpert","title":"Chief Financial Officer","address":{"address":"1029 Adams Street","city":"San Diego","state":"Maryland","stateCode":"MD","postalCode":"63847","coordinates":{"lat":-25.843393,"lng":-62.692681},"country":"United States"}},"ein":"127-297","ssn":"902-438-728","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"moderator"},{"id":11,"firstName":"Liam","lastName":"Garcia","maidenName":"","age":30,"gender":"male","email":"liam.garcia@x.dummyjson.com","phone":"+92 870-217-6201","username":"liamg","password":"liamgpass","birthDate":"1995-6-6","image":"https://dummyjson.com/icon/liamg/128","bloodGroup":"AB-","height":162.32,"weight":93.16,"eyeColor":"Violet","hair":{"color":"Red","type":"Wavy"},"ip":"56.201.85.9","address":{"address":"576 Fifth Street","city":"Denver","state":"South Dakota","stateCode":"SD","postalCode":"57252","coordinates":{"lat":-66.218177,"lng":-145.340165},"country":"United States"},"macAddress":"31:9a:28:8b:99:6c","university":"Ohio State University","bank":{"cardExpire":"12/29","cardNumber":"3614993744940956","cardType":"Diners Club International","currency":"USD","iban":"DE65581882748067758114"},"company":{"department":"Services","name":"Considine - Torp","title":"Web Developer","address":{"address":"27 Cedar Street","city":"Philadelphia","state":"Connecticut","stateCode":"CT","postalCode":"79574","coordinates":{"lat":-81.841588,"lng":31.79423},"country":"United States"}},"ein":"326-604","ssn":"933-784-949","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"moderator"},{"id":12,"firstName":"Mia","lastName":"Rodriguez","maidenName":"","age":25,"gender":"female","email":"mia.rodriguez@x.dummyjson.com","phone":"+49 989-461-8403","username":"miar","password":"miarpass","birthDate":"2000-8-4","image":"https://dummyjson.com/icon/miar/128","bloodGroup":"O-","height":188.08,"weight":56.03,"eyeColor":"Blue","hair":{"color":"Purple","type":"Wavy"},"ip":"11.72.253.90","address":{"address":"1627 Sixth Street","city":"Jacksonville","state":"West Virginia","stateCode":"WV","postalCode":"41810","coordinates":{"lat":24.857497,"lng":-34.865429},"country":"United States"},"macAddress":"53:d7:a4:6:1e:58","university":"William & Mary","bank":{"cardExpire":"02/29","cardNumber":"343932350909214","cardType":"American Express","currency":"CAD","iban":"DE77118774979880310165"},"company":{"department":"Accounting","name":"Miller, Schowalter and Wisozk","title":"Business Analyst","address":{"address":"1039 Washington Street","city":"Philadelphia","state":"New Jersey","stateCode":"NJ","postalCode":"57518","coordinates":{"lat":85.455933,"lng":164.246103},"country":"United States"}},"ein":"754-660","ssn":"749-524-124","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"moderator"},{"id":13,"firstName":"Noah","lastName":"Hernandez","maidenName":"","age":41,"gender":"male","email":"noah.hernandez@x.dummyjson.com","phone":"+49 393-605-6968","username":"noahh","password":"noahhpass","birthDate":"1984-6-5","image":"https://dummyjson.com/icon/noahh/128","bloodGroup":"AB+","height":188.62,"weight":69.49,"eyeColor":"Brown","hair":{"color":"Red","type":"Curly"},"ip":"169.154.126.57","address":{"address":"1413 Maple Street","city":"New York","state":"North Dakota","stateCode":"ND","postalCode":"73696","coordinates":{"lat":-25.0377,"lng":-151.70469},"country":"United States"},"macAddress":"d4:fe:ae:8f:eb:a3","university":"New York University (NYU)","bank":{"cardExpire":"03/30","cardNumber":"6262462852322850","cardType":"UnionPay","currency":"PKR","iban":"DE13437032020581217601"},"company":{"department":"Engineering","name":"Botsford, Marquardt and Roberts","title":"Database Administrator","address":{"address":"62 Third Street","city":"Seattle","state":"Oregon","stateCode":"OR","postalCode":"83474","coordinates":{"lat":19.490447,"lng":-13.173207},"country":"United States"}},"ein":"877-628","ssn":"660-847-389","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"moderator"},{"id":14,"firstName":"Charlotte","lastName":"Lopez","maidenName":"Martinez","age":37,"gender":"female","email":"charlotte.lopez@x.dummyjson.com","phone":"+44 373-953-5028","username":"charlottem","password":"charlottempass","birthDate":"1988-6-8","image":"https://dummyjson.com/icon/charlottem/128","bloodGroup":"AB-","height":178.92,"weight":82.46,"eyeColor":"Brown","hair":{"color":"Gray","type":"Kinky"},"ip":"119.103.95.60","address":{"address":"208 Second Street","city":"Columbus","state":"Ohio","stateCode":"OH","postalCode":"42044","coordinates":{"lat":-44.443762,"lng":-151.420561},"country":"United States"},"macAddress":"f6:ff:37:aa:6c:f1","university":"Northeastern University","bank":{"cardExpire":"12/27","cardNumber":"3634388457177035","cardType":"Diners Club International","currency":"PKR","iban":"DE54092147842698685963"},"company":{"department":"Accounting","name":"Zulauf and Sons","title":"Chief Executive Officer","address":{"address":"569 Jefferson Street","city":"Los Angeles","state":"Montana","stateCode":"MT","postalCode":"17779","coordinates":{"lat":-18.371256,"lng":22.566258},"country":"United States"}},"ein":"364-782","ssn":"255-491-479","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"moderator"},{"id":15,"firstName":"William","lastName":"Gonzalez","maidenName":"","age":33,"gender":"male","email":"william.gonzalez@x.dummyjson.com","phone":"+81 905-252-7319","username":"williamg","password":"williamgpass","birthDate":"1992-3-27","image":"https://dummyjson.com/icon/williamg/128","bloodGroup":"B-","height":173.21,"weight":82.41,"eyeColor":"Hazel","hair":{"color":"Gray","type":"Curly"},"ip":"250.2.241.204","address":{"address":"31 Maple Street","city":"San Jose","state":"Utah","stateCode":"UT","postalCode":"78243","coordinates":{"lat":8.152876,"lng":113.29799},"country":"United States"},"macAddress":"f5:68:28:f9:ec:89","university":"Tufts University","bank":{"cardExpire":"05/30","cardNumber":"6228256225004929","cardType":"UnionPay","currency":"PKR","iban":"DE63711022986572448914"},"company":{"department":"Marketing","name":"Spinka - Dickinson","title":"Software Architect","address":{"address":"1538 Eighth Street","city":"San Jose","state":"Missouri","stateCode":"MO","postalCode":"29673","coordinates":{"lat":24.169361,"lng":-29.395167},"country":"United States"}},"ein":"830-515","ssn":"690-544-755","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"moderator"},{"id":16,"firstName":"Avery","lastName":"Perez","maidenName":"","age":26,"gender":"female","email":"avery.perez@x.dummyjson.com","phone":"+61 731-431-3457","username":"averyp","password":"averyppass","birthDate":"1999-3-10","image":"https://dummyjson.com/icon/averyp/128","bloodGroup":"O-","height":172.68,"weight":93.9,"eyeColor":"Brown","hair":{"color":"Green","type":"Curly"},"ip":"131.217.4.214","address":{"address":"1125 First Street","city":"Columbus","state":"Iowa","stateCode":"IA","postalCode":"30973","coordinates":{"lat":12.789127,"lng":85.792598},"country":"United States"},"macAddress":"b3:ff:f3:c5:37:46","university":"Harvard University","bank":{"cardExpire":"08/29","cardNumber":"378024038311910","cardType":"American Express","currency":"USD","iban":"DE42403186906981858976"},"company":{"department":"Accounting","name":"Herzog Inc","title":"Database Administrator","address":{"address":"183 Maple Street","city":"New York","state":"Rhode Island","stateCode":"RI","postalCode":"45238","coordinates":{"lat":-53.318189,"lng":105.835271},"country":"United States"}},"ein":"348-493","ssn":"679-523-686","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":17,"firstName":"Evelyn","lastName":"Sanchez","maidenName":"","age":38,"gender":"female","email":"evelyn.sanchez@x.dummyjson.com","phone":"+1 623-880-6871","username":"evelyns","password":"evelynspass","birthDate":"1987-10-13","image":"https://dummyjson.com/icon/evelyns/128","bloodGroup":"B+","height":184.08,"weight":83.15,"eyeColor":"Violet","hair":{"color":"Blue","type":"Curly"},"ip":"87.114.135.146","address":{"address":"1170 Lincoln Street","city":"San Diego","state":"Wyoming","stateCode":"WY","postalCode":"43423","coordinates":{"lat":-83.31484,"lng":11.768071},"country":"United States"},"macAddress":"f8:e5:bd:43:bc:d8","university":"Washington University in St. Louis","bank":{"cardExpire":"01/29","cardNumber":"3514443781649095","cardType":"JCB","currency":"GBP","iban":"GB74239MLVNQ0UB9ANTFRM"},"company":{"department":"Support","name":"Predovic - Johns","title":"Chief Financial Officer","address":{"address":"1802 Ninth Street","city":"San Diego","state":"Minnesota","stateCode":"MN","postalCode":"89416","coordinates":{"lat":29.034592,"lng":-78.004598},"country":"United States"}},"ein":"604-817","ssn":"689-332-644","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":18,"firstName":"Logan","lastName":"Torres","maidenName":"","age":32,"gender":"male","email":"logan.torres@x.dummyjson.com","phone":"+81 507-434-8733","username":"logant","password":"logantpass","birthDate":"1993-10-26","image":"https://dummyjson.com/icon/logant/128","bloodGroup":"A+","height":190.04,"weight":72.43,"eyeColor":"Green","hair":{"color":"Green","type":"Curly"},"ip":"155.98.15.162","address":{"address":"907 Seventh Street","city":"Columbus","state":"Arkansas","stateCode":"AR","postalCode":"78805","coordinates":{"lat":-64.846516,"lng":174.775744},"country":"United States"},"macAddress":"40:d:5c:1:7d:bf","university":"University of Illinois--Urbana-Champaign","bank":{"cardExpire":"04/30","cardNumber":"6258651210557142","cardType":"UnionPay","currency":"EUR","iban":"ES1171429445321693077621"},"company":{"department":"Training","name":"Jast - Nader","title":"Data Analyst","address":{"address":"947 Main Street","city":"Denver","state":"Minnesota","stateCode":"MN","postalCode":"71896","coordinates":{"lat":-24.654063,"lng":-147.255268},"country":"United States"}},"ein":"576-218","ssn":"806-639-934","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":19,"firstName":"Abigail","lastName":"Rivera","maidenName":"","age":29,"gender":"female","email":"abigail.rivera@x.dummyjson.com","phone":"+91 228-363-7806","username":"abigailr","password":"abigailrpass","birthDate":"1996-10-11","image":"https://dummyjson.com/icon/abigailr/128","bloodGroup":"B+","height":186.39,"weight":74.61,"eyeColor":"Violet","hair":{"color":"Blue","type":"Kinky"},"ip":"19.183.240.94","address":{"address":"996 Oak Street","city":"Chicago","state":"New Mexico","stateCode":"NM","postalCode":"11407","coordinates":{"lat":44.321308,"lng":-3.723903},"country":"United States"},"macAddress":"1d:a6:58:2a:e5:e4","university":"California Institute of Technology (Caltech)","bank":{"cardExpire":"01/27","cardNumber":"6011399019022417","cardType":"Discover","currency":"EUR","iban":"IT11QP2B5J81QM1FBX029VI5DD68O"},"company":{"department":"Human Resources","name":"Prohaska - Thiel","title":"Business Analyst","address":{"address":"1402 Adams Street","city":"Austin","state":"Wisconsin","stateCode":"WI","postalCode":"51456","coordinates":{"lat":25.672938,"lng":-76.54967},"country":"United States"}},"ein":"173-637","ssn":"655-823-929","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Edge/97.0.1072.76 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":20,"firstName":"Jackson","lastName":"Evans","maidenName":"","age":35,"gender":"male","email":"jackson.evans@x.dummyjson.com","phone":"+44 468-628-6686","username":"jacksone","password":"jacksonepass","birthDate":"1990-11-30","image":"https://dummyjson.com/icon/jacksone/128","bloodGroup":"O-","height":162.57,"weight":74.37,"eyeColor":"Green","hair":{"color":"Red","type":"Straight"},"ip":"221.127.144.198","address":{"address":"1873 Main Street","city":"New York","state":"Arkansas","stateCode":"AR","postalCode":"26600","coordinates":{"lat":34.722451,"lng":63.448927},"country":"United States"},"macAddress":"81:14:1:97:88:85","university":"Ohio State University","bank":{"cardExpire":"07/30","cardNumber":"376760688512826","cardType":"American Express","currency":"GBP","iban":"GB27CM0H0MNPXSPDGA0A1O"},"company":{"department":"Legal","name":"Kuhlman LLC","title":"Web Developer","address":{"address":"1706 First Street","city":"Chicago","state":"Hawaii","stateCode":"HI","postalCode":"34725","coordinates":{"lat":-80.416937,"lng":-83.224516},"country":"United States"}},"ein":"843-260","ssn":"248-787-886","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":21,"firstName":"Madison","lastName":"Collins","maidenName":"","age":27,"gender":"female","email":"madison.collins@x.dummyjson.com","phone":"+81 259-957-5711","username":"madisonc","password":"madisoncpass","birthDate":"1998-3-7","image":"https://dummyjson.com/icon/madisonc/128","bloodGroup":"B-","height":189.28,"weight":56.96,"eyeColor":"Red","hair":{"color":"Gray","type":"Curly"},"ip":"85.34.1.204","address":{"address":"1892 Lincoln Street","city":"Philadelphia","state":"New Jersey","stateCode":"NJ","postalCode":"62091","coordinates":{"lat":52.993694,"lng":160.486892},"country":"United States"},"macAddress":"13:b0:d0:23:4d:26","university":"University of Pennsylvania","bank":{"cardExpire":"09/27","cardNumber":"5551259848327064","cardType":"Mastercard","currency":"EUR","iban":"ES3893300143587765232049"},"company":{"department":"Engineering","name":"Mayer - Smitham","title":"Chief Technology Officer","address":{"address":"1438 Main Street","city":"San Diego","state":"Delaware","stateCode":"DE","postalCode":"63144","coordinates":{"lat":1.629613,"lng":23.232982},"country":"United States"}},"ein":"716-166","ssn":"457-258-950","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":22,"firstName":"Elijah","lastName":"Stewart","maidenName":"","age":34,"gender":"male","email":"elijah.stewart@x.dummyjson.com","phone":"+44 468-357-7872","username":"elijahs","password":"elijahspass","birthDate":"1991-10-22","image":"https://dummyjson.com/icon/elijahs/128","bloodGroup":"A-","height":195.33,"weight":81.64,"eyeColor":"Blue","hair":{"color":"Purple","type":"Straight"},"ip":"23.87.135.62","address":{"address":"1701 Eighth Street","city":"Columbus","state":"Illinois","stateCode":"IL","postalCode":"31585","coordinates":{"lat":-54.833799,"lng":-174.504027},"country":"United States"},"macAddress":"75:17:c6:35:fc:6d","university":"Georgetown University","bank":{"cardExpire":"05/28","cardNumber":"3648138556543460","cardType":"Diners Club International","currency":"EUR","iban":"DE82018985741195770313"},"company":{"department":"Legal","name":"Langworth Group","title":"Business Analyst","address":{"address":"155 Ninth Street","city":"Washington","state":"South Dakota","stateCode":"SD","postalCode":"19039","coordinates":{"lat":61.279254,"lng":-12.607767},"country":"United States"}},"ein":"520-394","ssn":"287-380-801","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":23,"firstName":"Chloe","lastName":"Morales","maidenName":"","age":40,"gender":"female","email":"chloe.morales@x.dummyjson.com","phone":"+92 468-541-7133","username":"chloem","password":"chloempass","birthDate":"1985-4-21","image":"https://dummyjson.com/icon/chloem/128","bloodGroup":"O+","height":185.07,"weight":63.97,"eyeColor":"Brown","hair":{"color":"Red","type":"Kinky"},"ip":"66.78.20.21","address":{"address":"401 Fourth Street","city":"Dallas","state":"New Jersey","stateCode":"NJ","postalCode":"54972","coordinates":{"lat":-30.190759,"lng":-58.705979},"country":"United States"},"macAddress":"fc:f:29:e1:37:b8","university":"Syracuse University","bank":{"cardExpire":"09/30","cardNumber":"347036238254235","cardType":"American Express","currency":"CNY","iban":"DE77762461851744284392"},"company":{"department":"Sales","name":"Grady LLC","title":"Database Administrator","address":{"address":"269 Third Street","city":"Houston","state":"North Carolina","stateCode":"NC","postalCode":"10385","coordinates":{"lat":40.098115,"lng":-1.762972},"country":"United States"}},"ein":"913-597","ssn":"938-883-163","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":24,"firstName":"Mateo","lastName":"Nguyen","maidenName":"","age":31,"gender":"male","email":"mateo.nguyen@x.dummyjson.com","phone":"+1 341-597-6694","username":"mateon","password":"mateonpass","birthDate":"1994-6-2","image":"https://dummyjson.com/icon/mateon/128","bloodGroup":"O+","height":174.29,"weight":59.98,"eyeColor":"Red","hair":{"color":"Purple","type":"Wavy"},"ip":"192.57.144.7","address":{"address":"1578 Fourth Street","city":"Columbus","state":"Missouri","stateCode":"MO","postalCode":"20673","coordinates":{"lat":-32.828675,"lng":-82.557354},"country":"United States"},"macAddress":"a7:26:10:7a:36:29","university":"Columbia University","bank":{"cardExpire":"12/29","cardNumber":"4021840414995098","cardType":"Visa","currency":"CAD","iban":"DE43275561962007561223"},"company":{"department":"Accounting","name":"Spinka LLC","title":"Business Analyst","address":{"address":"1967 Jefferson Street","city":"Dallas","state":"Louisiana","stateCode":"LA","postalCode":"78527","coordinates":{"lat":75.982676,"lng":164.459743},"country":"United States"}},"ein":"229-249","ssn":"416-877-230","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":25,"firstName":"Harper","lastName":"Kelly","maidenName":"Evans","age":28,"gender":"female","email":"harper.kelly@x.dummyjson.com","phone":"+92 518-863-2863","username":"harpere","password":"harperepass","birthDate":"1997-3-3","image":"https://dummyjson.com/icon/harpere/128","bloodGroup":"AB-","height":184.32,"weight":81.69,"eyeColor":"Amber","hair":{"color":"Red","type":"Curly"},"ip":"174.111.61.162","address":{"address":"1591 Adams Street","city":"Philadelphia","state":"New York","stateCode":"NY","postalCode":"69521","coordinates":{"lat":-26.832913,"lng":-75.445017},"country":"United States"},"macAddress":"b:ff:33:67:94:e4","university":"Boston College","bank":{"cardExpire":"06/27","cardNumber":"4488823564436432","cardType":"Visa","currency":"EUR","iban":"ES5874149276753342261515"},"company":{"department":"Legal","name":"Leffler, Rolfson and Becker","title":"Business Development Manager","address":{"address":"16 Maple Street","city":"Austin","state":"North Carolina","stateCode":"NC","postalCode":"68274","coordinates":{"lat":-15.423746,"lng":149.298887},"country":"United States"}},"ein":"592-557","ssn":"209-544-548","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":26,"firstName":"Evelyn","lastName":"Gonzalez","maidenName":"","age":36,"gender":"female","email":"evelyn.gonzalez@x.dummyjson.com","phone":"+61 708-508-4638","username":"evelyng","password":"evelyngpass","birthDate":"1989-2-5","image":"https://dummyjson.com/icon/evelyng/128","bloodGroup":"O+","height":168.94,"weight":58.47,"eyeColor":"Red","hair":{"color":"Black","type":"Wavy"},"ip":"42.52.74.232","address":{"address":"1065 Lincoln Street","city":"Dallas","state":"Maine","stateCode":"ME","postalCode":"84898","coordinates":{"lat":67.768359,"lng":71.268643},"country":"United States"},"macAddress":"89:5e:5a:2a:72:42","university":"Washington University in St. Louis","bank":{"cardExpire":"08/28","cardNumber":"6011735364912274","cardType":"Discover","currency":"CAD","iban":"DE27147353096476220032"},"company":{"department":"Accounting","name":"Tromp, Gaylord and Weber","title":"Project Manager","address":{"address":"584 Ninth Street","city":"Jacksonville","state":"Wisconsin","stateCode":"WI","postalCode":"45633","coordinates":{"lat":26.014021,"lng":40.572436},"country":"United States"}},"ein":"569-275","ssn":"487-680-127","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":27,"firstName":"Daniel","lastName":"Cook","maidenName":"","age":42,"gender":"male","email":"daniel.cook@x.dummyjson.com","phone":"+44 254-761-6843","username":"danielc","password":"danielcpass","birthDate":"1983-12-25","image":"https://dummyjson.com/icon/danielc/128","bloodGroup":"AB+","height":186.21,"weight":83.72,"eyeColor":"Brown","hair":{"color":"Blonde","type":"Curly"},"ip":"1.61.73.142","address":{"address":"1163 Pine Street","city":"Los Angeles","state":"Nevada","stateCode":"NV","postalCode":"58781","coordinates":{"lat":-3.456681,"lng":-134.937482},"country":"United States"},"macAddress":"6e:73:dc:3a:85:10","university":"Columbia University","bank":{"cardExpire":"05/29","cardNumber":"5485409595328150","cardType":"Mastercard","currency":"NZD","iban":"DE71341603969952506034"},"company":{"department":"Support","name":"Morissette, Baumbach and Auer","title":"Legal Counsel","address":{"address":"938 Fifth Street","city":"San Francisco","state":"South Dakota","stateCode":"SD","postalCode":"45305","coordinates":{"lat":21.323588,"lng":-83.531427},"country":"United States"}},"ein":"585-905","ssn":"645-515-583","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:97.0) Gecko/20100101 Firefox/97.0","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":28,"firstName":"Lily","lastName":"Lee","maidenName":"Brown","age":30,"gender":"female","email":"lily.lee@x.dummyjson.com","phone":"+1 808-757-9867","username":"lilyb","password":"lilybpass","birthDate":"1995-12-3","image":"https://dummyjson.com/icon/lilyb/128","bloodGroup":"AB-","height":181.42,"weight":51.49,"eyeColor":"Gray","hair":{"color":"Purple","type":"Straight"},"ip":"67.184.255.96","address":{"address":"1946 Oak Street","city":"Phoenix","state":"Massachusetts","stateCode":"MA","postalCode":"41540","coordinates":{"lat":-9.87059,"lng":-72.336845},"country":"United States"},"macAddress":"18:b6:c7:a:50:3f","university":"Johns Hopkins University","bank":{"cardExpire":"12/28","cardNumber":"5551782139834613","cardType":"Mastercard","currency":"CAD","iban":"DE49484285539189712621"},"company":{"department":"Product Management","name":"Cremin Inc","title":"Quality Assurance Engineer","address":{"address":"1735 Cedar Street","city":"Phoenix","state":"Wyoming","stateCode":"WY","postalCode":"85797","coordinates":{"lat":72.231441,"lng":-158.147245},"country":"United States"}},"ein":"229-776","ssn":"358-185-671","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Edge/97.0.1072.76 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":29,"firstName":"Henry","lastName":"Hill","maidenName":"","age":39,"gender":"male","email":"henry.hill@x.dummyjson.com","phone":"+1 240-833-4680","username":"henryh","password":"henryhpass","birthDate":"1986-8-19","image":"https://dummyjson.com/icon/henryh/128","bloodGroup":"O-","height":180.25,"weight":95.84,"eyeColor":"Gray","hair":{"color":"Black","type":"Straight"},"ip":"194.43.55.202","address":{"address":"1837 Maple Street","city":"Indianapolis","state":"Delaware","stateCode":"DE","postalCode":"81783","coordinates":{"lat":35.498256,"lng":154.088476},"country":"United States"},"macAddress":"fa:c3:1b:21:5f:44","university":"University of Illinois--Urbana-Champaign","bank":{"cardExpire":"11/29","cardNumber":"3625097026040498","cardType":"Diners Club International","currency":"EUR","iban":"DE08820336197191865470"},"company":{"department":"Services","name":"Gerlach, Funk and Schoen","title":"Sales Manager","address":{"address":"1651 Lincoln Street","city":"San Francisco","state":"West Virginia","stateCode":"WV","postalCode":"61805","coordinates":{"lat":-59.936335,"lng":-12.405368},"country":"United States"}},"ein":"118-957","ssn":"925-686-100","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":30,"firstName":"Addison","lastName":"Wright","maidenName":"","age":33,"gender":"female","email":"addison.wright@x.dummyjson.com","phone":"+1 514-384-3300","username":"addisonw","password":"addisonwpass","birthDate":"1992-1-3","image":"https://dummyjson.com/icon/addisonw/128","bloodGroup":"B+","height":179.32,"weight":76.93,"eyeColor":"Brown","hair":{"color":"Blonde","type":"Straight"},"ip":"11.35.69.81","address":{"address":"568 Tenth Street","city":"San Francisco","state":"Montana","stateCode":"MT","postalCode":"54698","coordinates":{"lat":20.946052,"lng":100.228822},"country":"United States"},"macAddress":"fb:0:94:21:16:c","university":"Syracuse University","bank":{"cardExpire":"06/28","cardNumber":"5274971895809762","cardType":"Mastercard","currency":"PKR","iban":"DE91480955939051635497"},"company":{"department":"Services","name":"Kreiger Inc","title":"Human Resources Manager","address":{"address":"1173 Eighth Street","city":"San Diego","state":"Michigan","stateCode":"MI","postalCode":"85777","coordinates":{"lat":65.324413,"lng":87.142893},"country":"United States"}},"ein":"415-286","ssn":"804-492-390","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"}],"total":208,"skip":0,"limit":30}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 2 | 0 | 0 |
| Total | 3 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Authenticates a user with username and password, returning an access token for subsequent authenticated requests.
## Method & Endpoint
- **Method**: `POST`
- **Endpoint**: `https://dummyjson.com/auth/login`
## Authentication
- **Required**: No (this endpoint provides authentication)
## Parameters
### Request Body (JSON)
```json
{
"username": "emilys",
"password": "emilyspass"
}
```
**Required Fields**:
- `username` - User's username
- `password` - User's password
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
{
"id": 1,
"username": "emilys",
"email": "emily.johnson@x.dummyjson.com",
"firstName": "Emily",
"lastName": "Johnson",
"gender": "female",
"image": "https://dummyjson.com/icon/emilys/128",
"accessToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
"refreshToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."
}
```
## Tests Included
- Validates response status code is 200
- Verifies access token is present
- Stores token in environment variable `eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDIsImV4cCI6MTc2OTk2NDgwMn0.eOl4rlRcy1_4uC78oP3cgGELQZbvAxI6k8OJ-wFOSs0`
- Checks user details are returned
| Header Name | Header Value |
|---|---|
| Content-Type | application/json |
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDIsImV4cCI6MTc2OTk2NDgwMn0.eOl4rlRcy1_4uC78oP3cgGELQZbvAxI6k8OJ-wFOSs0 |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | ecaa93f8-7ead-4528-8546-3b66103d0407 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 83 |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDMsImV4cCI6MTc2OTk2MzAwM30.7nOyE34qTDx7fNesdzhke5DQc-odNHa-SVbo_Oti1tg; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDMsImV4cCI6MTc3MjU1MzIwM30.c9aI7-WsCLjZJA8EJ76slNIBR-Ckm8dtgvhTOiYKohs |
{
"username": "emilys",
"password": "emilyspass",
"expiresInMins": 30
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:30 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 95 |
| x-ratelimit-reset | 1769961213 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| Set-Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTAsImV4cCI6MTc2OTk2MzAxMH0.PtQ1BAxOyZjmmckI_4MaMtuoT7S6Nubw-e0AUKnsA2U; Max-Age=1800; Path=/; Expires=Sun, 01 Feb 2026 16:23:30 GMT; HttpOnly; Secure |
| Set-Cookie | refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTAsImV4cCI6MTc3MjU1MzIxMH0.UesNGhpEtBUZLNhTmu0sM6u8jU4F7eIvfg581Reg-4Y; Max-Age=1800; Path=/; Expires=Sun, 01 Feb 2026 16:23:30 GMT; HttpOnly; Secure |
| etag | W/"3a2-v+Vd+iPeDk9Stpy2eogETrhwtGY" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=5rW5AmkD0YpxMOjtxHjoXKj40uGrNHV7kus4WPWm6gwtfch%2FaU1RwD3k7EYyHdN5WFSUTncVVWVZ2exmJygphI8x592HBGGOltu5cEk%3D"}]} |
| Content-Encoding | br |
| CF-RAY | 9c729f3c3e762891-AMM |
{"accessToken":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTAsImV4cCI6MTc2OTk2MzAxMH0.PtQ1BAxOyZjmmckI_4MaMtuoT7S6Nubw-e0AUKnsA2U","refreshToken":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTAsImV4cCI6MTc3MjU1MzIxMH0.UesNGhpEtBUZLNhTmu0sM6u8jU4F7eIvfg581Reg-4Y","id":1,"username":"emilys","email":"emily.johnson@x.dummyjson.com","firstName":"Emily","lastName":"Johnson","gender":"female","image":"https://dummyjson.com/icon/emilys/128"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 2 | 0 | 0 |
| Total | 3 | 0 | 0 |
| Test Name | Assertion Error |
|---|
| Header Name | Header Value |
|---|---|
| Content-Type | application/json |
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDIsImV4cCI6MTc2OTk2NDgwMn0.eOl4rlRcy1_4uC78oP3cgGELQZbvAxI6k8OJ-wFOSs0 |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 709ab1d9-4ded-4fe8-b421-dc75d4133351 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 82 |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTAsImV4cCI6MTc2OTk2MzAxMH0.PtQ1BAxOyZjmmckI_4MaMtuoT7S6Nubw-e0AUKnsA2U; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTAsImV4cCI6MTc3MjU1MzIxMH0.UesNGhpEtBUZLNhTmu0sM6u8jU4F7eIvfg581Reg-4Y |
{
"username": "anood",
"password": "emilyspass",
"expiresInMins": 30
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:30 GMT |
| Content-Type | application/json; charset=utf-8 |
| Content-Length | 33 |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 99 |
| x-ratelimit-reset | 1769961220 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"21-dBEoW0UmTF+EGUMaprEp9/8zNNA" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=L9QyB%2FlO1oEe3d%2FcOreMRq7d1ynyvhox2l5tzpGqgGWK10qCUMs3J58RKnPe6SwdYjuB5HM8AOfOh%2BY7nBLtzRB2knKs85tf0dbtxT4%3D"}]} |
| CF-RAY | 9c729f3df84b2891-AMM |
{"message":"Invalid credentials"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Invalid credentials handled | 1 | 0 | 0 |
| Error message exists | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Retrieves the profile information of the currently authenticated user based on the provided access token.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/auth/me`
## Authentication
- **Required**: Yes
- **Type**: Bearer Token
- **Header**: `Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDIsImV4cCI6MTc2OTk2NDgwMn0.eOl4rlRcy1_4uC78oP3cgGELQZbvAxI6k8OJ-wFOSs0`
## Parameters
- No parameters required
- Authentication token must be provided in Authorization header
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
{
"id": 1,
"firstName": "Emily",
"lastName": "Johnson",
"email": "emily.johnson@x.dummyjson.com",
"username": "emilys",
"age": 28,
"gender": "female",
"phone": "+81 965-431-3024",
"birthDate": "1996-5-30",
"image": "https://dummyjson.com/icon/emilys/128",
"address": {...},
"company": {...}
}
```
## Tests Included
- Validates response status code is 200
- Verifies authenticated user details are returned
- Checks all user profile fields are present
- Confirms token authentication is working
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDIsImV4cCI6MTc2OTk2NDgwMn0.eOl4rlRcy1_4uC78oP3cgGELQZbvAxI6k8OJ-wFOSs0 |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | d022539c-b0e6-4a2e-a209-e3d615b2dfe0 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTAsImV4cCI6MTc2OTk2MzAxMH0.PtQ1BAxOyZjmmckI_4MaMtuoT7S6Nubw-e0AUKnsA2U; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTAsImV4cCI6MTc3MjU1MzIxMH0.UesNGhpEtBUZLNhTmu0sM6u8jU4F7eIvfg581Reg-4Y |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:30 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 98 |
| x-ratelimit-reset | 1769961219 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"58f-CoL/KoXlW3x1PtqQr3wqPsXj6DE" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=yL6yS%2BYMR57nXn9aEMVRZGnmWV1%2FMpgnltBa%2BxtSQB8WVhXnhMwXA4mQtihDCw%2B9n32LA44fpgQWWmIxAhtNUT9fX8vfzN2Iyl7%2BYQQ%3D"}]} |
| CF-RAY | 9c729f3f89f22891-AMM |
{"id":1,"firstName":"Emily","lastName":"Johnson","maidenName":"Smith","age":29,"gender":"female","email":"emily.johnson@x.dummyjson.com","phone":"+81 965-431-3024","username":"emilys","password":"emilyspass","birthDate":"1996-5-30","image":"https://dummyjson.com/icon/emilys/128","bloodGroup":"O-","height":193.24,"weight":63.16,"eyeColor":"Green","hair":{"color":"Brown","type":"Curly"},"ip":"42.48.100.32","address":{"address":"626 Main Street","city":"Phoenix","state":"Mississippi","stateCode":"MS","postalCode":"29112","coordinates":{"lat":-77.16213,"lng":-92.084824},"country":"United States"},"macAddress":"47:fa:41:18:ec:eb","university":"University of Wisconsin--Madison","bank":{"cardExpire":"05/28","cardNumber":"3693233511855044","cardType":"Diners Club International","currency":"GBP","iban":"GB74MH2UZLR9TRPHYNU8F8"},"company":{"department":"Engineering","name":"Dooley, Kozey and Cronin","title":"Sales Manager","address":{"address":"263 Tenth Street","city":"San Francisco","state":"Wisconsin","stateCode":"WI","postalCode":"37657","coordinates":{"lat":71.814525,"lng":-161.150263},"country":"United States"}},"ein":"977-175","ssn":"900-590-289","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"admin"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 2 | 0 | 0 |
| Total | 3 | 0 | 0 |
| Test Name | Assertion Error |
|---|
| Header Name | Header Value |
|---|---|
| Authorization | Bearer 123456 |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | a0a7146f-ca6a-41b0-b0bf-332b12614ef9 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTAsImV4cCI6MTc2OTk2MzAxMH0.PtQ1BAxOyZjmmckI_4MaMtuoT7S6Nubw-e0AUKnsA2U; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTAsImV4cCI6MTc3MjU1MzIxMH0.UesNGhpEtBUZLNhTmu0sM6u8jU4F7eIvfg581Reg-4Y |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:31 GMT |
| Content-Type | application/json; charset=utf-8 |
| Content-Length | 36 |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 96 |
| x-ratelimit-reset | 1769961217 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| Set-Cookie | accessToken=; Path=/; Expires=Thu, 01 Jan 1970 00:00:00 GMT |
| Set-Cookie | refreshToken=; Path=/; Expires=Thu, 01 Jan 1970 00:00:00 GMT |
| etag | W/"24-xqucZbgfFI1MEKHBW2jR/IjHNdY" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=1AtUO%2Fdjg9keArg2DVwJ%2Fggbyskj3REzRbwsBgkG7AJecJqS7QoG7VTsZ9Xy%2FxkKAfIvmdCDWXtfJiOxczLFahiFf9R2fYeAeN1G2j0%3D"}]} |
| CF-RAY | 9c729f411bd22891-AMM |
{"message":"Invalid/Expired Token!"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Invalid token | 1 | 0 | 0 |
| Error message exists | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Retrieves detailed information about a specific user by their unique identifier.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/users/4`
## Authentication
- **Required**: No
- This is a public endpoint that doesn't require authentication
## Parameters
### Path Variables
- `userId` (required) - The unique identifier of the user to retrieve
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
{
"id": 1,
"firstName": "Emily",
"lastName": "Johnson",
"email": "emily.johnson@x.dummyjson.com",
"username": "emilys",
"age": 28,
"gender": "female",
"phone": "+81 965-431-3024",
"birthDate": "1996-5-30",
"image": "https://dummyjson.com/icon/emilys/128",
"address": {
"address": "626 Main Street",
"city": "Phoenix",
"state": "Mississippi",
"country": "United States",
"postalCode": "29112"
},
"company": {
"name": "Dooley and Sons",
"title": "Sales Manager"
}
}
```
## Tests Included
- Validates response status code is 200
- Verifies user ID matches request
- Checks all user profile fields are present
- Confirms address and company objects structure
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDIsImV4cCI6MTc2OTk2NDgwMn0.eOl4rlRcy1_4uC78oP3cgGELQZbvAxI6k8OJ-wFOSs0 |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | e6af2eee-1e09-41c4-be2b-6c7d7f30a4de |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:31 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 94 |
| x-ratelimit-reset | 1769961213 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"577-Z3kifpL3J1jktd9eGnQ28K8KFtI" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=Vbapm2%2BDYXl6Wy7NR4Oe8cX4MTUhH%2FSLebaz5QfcvNsE%2FqB4qe5%2BcL22p7%2Bpb9i4wo1wl1rcyGuuGk7fPsGSK6gk2YFHYF%2F66eOwQfM%3D"}]} |
| CF-RAY | 9c729f42bdbb2891-AMM |
{"id":4,"firstName":"James","lastName":"Davis","maidenName":"","age":46,"gender":"male","email":"james.davis@x.dummyjson.com","phone":"+49 614-958-9364","username":"jamesd","password":"jamesdpass","birthDate":"1979-5-4","image":"https://dummyjson.com/icon/jamesd/128","bloodGroup":"AB+","height":193.31,"weight":62.1,"eyeColor":"Amber","hair":{"color":"Blonde","type":"Straight"},"ip":"101.118.131.66","address":{"address":"238 Jefferson Street","city":"Seattle","state":"Pennsylvania","stateCode":"PA","postalCode":"68354","coordinates":{"lat":16.782513,"lng":-139.34723},"country":"United States"},"macAddress":"10:7d:df:1f:97:58","university":"University of Southern California","bank":{"cardExpire":"07/30","cardNumber":"5303440212268149","cardType":"Mastercard","currency":"CAD","iban":"DE01300746880579852937"},"company":{"department":"Support","name":"Pagac and Sons","title":"Research Analyst","address":{"address":"1622 Lincoln Street","city":"Fort Worth","state":"Pennsylvania","stateCode":"PA","postalCode":"27768","coordinates":{"lat":54.91193,"lng":-79.498328},"country":"United States"}},"ein":"904-810","ssn":"116-951-314","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"admin"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Required fields exist | 1 | 0 | 0 |
| Total | 3 | 0 | 0 |
| Test Name | Assertion Error |
|---|
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDIsImV4cCI6MTc2OTk2NDgwMn0.eOl4rlRcy1_4uC78oP3cgGELQZbvAxI6k8OJ-wFOSs0 |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 4cf87145-f743-48d9-bc80-7471fedfe927 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:31 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 98 |
| x-ratelimit-reset | 1769961220 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"2b-ZhauGgbHQlYpTPzEWJLt9JF5uhE" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=5uXEV0Bm1f%2FTyUms%2BdMwceQa%2FDSTCWZaAecUTQaYUtpl9YXG2idDvm4Yzva3lNQfFaeJ9cfagpAWNGLMGQJMxlQqqTIdLoMmSkTrhSo%3D"}]} |
| Content-Encoding | br |
| CF-RAY | 9c729f444fd82891-AMM |
{"message":"User with id '9999' not found"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Invalid User ID should not succeed | 1 | 0 | 0 |
| Error message exists | 1 | 0 | 0 |
| BUG , Returned users for Invalid ID | 1 | 0 | 0 |
| Total | 3 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Searches for users based on a query string, returning all users that match the search criteria.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/users/search?q=John`
## Authentication
- **Required**: No
- This is a public endpoint that doesn't require authentication
## Parameters
### Query Parameters
- `q` (required) - The search query string to find matching users (searches across name, username, email, etc.)
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
{
"users": [
{
"id": 1,
"firstName": "John",
"lastName": "Doe",
"email": "john.doe@x.dummyjson.com",
"username": "johnd",
"age": 30,
...
}
],
"total": 5,
"skip": 0,
"limit": 30
}
```
## Tests Included
- Validates response status code is 200
- Verifies users array exists
- Checks pagination metadata (total, skip, limit)
- Confirms search results match query criteria
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDIsImV4cCI6MTc2OTk2NDgwMn0.eOl4rlRcy1_4uC78oP3cgGELQZbvAxI6k8OJ-wFOSs0 |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | e08fc787-7b35-42a8-8441-6564ceab4df4 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:31 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 97 |
| x-ratelimit-reset | 1769961220 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"1092-DffrDnJxyiPiDr/F4xPdXlAPNCM" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=vJNsZCdOpeJ5MPBXsTUrjPmu5zA47UOUjVcZPTht%2BLXWJmWwmIApnV0zt55%2BRj3onUBg4uYPAgOvHLS8OPCwgPSkyCEBNB4FvsJttfA%3D"}]} |
| CF-RAY | 9c729f45e9b72891-AMM |
{"users":[{"id":1,"firstName":"Emily","lastName":"Johnson","maidenName":"Smith","age":29,"gender":"female","email":"emily.johnson@x.dummyjson.com","phone":"+81 965-431-3024","username":"emilys","password":"emilyspass","birthDate":"1996-5-30","image":"https://dummyjson.com/icon/emilys/128","bloodGroup":"O-","height":193.24,"weight":63.16,"eyeColor":"Green","hair":{"color":"Brown","type":"Curly"},"ip":"42.48.100.32","address":{"address":"626 Main Street","city":"Phoenix","state":"Mississippi","stateCode":"MS","postalCode":"29112","coordinates":{"lat":-77.16213,"lng":-92.084824},"country":"United States"},"macAddress":"47:fa:41:18:ec:eb","university":"University of Wisconsin--Madison","bank":{"cardExpire":"05/28","cardNumber":"3693233511855044","cardType":"Diners Club International","currency":"GBP","iban":"GB74MH2UZLR9TRPHYNU8F8"},"company":{"department":"Engineering","name":"Dooley, Kozey and Cronin","title":"Sales Manager","address":{"address":"263 Tenth Street","city":"San Francisco","state":"Wisconsin","stateCode":"WI","postalCode":"37657","coordinates":{"lat":71.814525,"lng":-161.150263},"country":"United States"}},"ein":"977-175","ssn":"900-590-289","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"admin"},{"id":102,"firstName":"John","lastName":"Doe","maidenName":"","age":36,"gender":"male","email":"john.doe@x.dummyjson.com","phone":"+44 242-757-6754","username":"johnd","password":"johndpass","birthDate":"1989-2-20","image":"https://dummyjson.com/icon/johnd/128","bloodGroup":"B-","height":179.44,"weight":93.42,"eyeColor":"Brown","hair":{"color":"Blonde","type":"Wavy"},"ip":"1.250.48.36","address":{"address":"37 Second Street","city":"Fort Worth","state":"New York","stateCode":"NY","postalCode":"33991","coordinates":{"lat":-66.043758,"lng":-59.356632},"country":"United States"},"macAddress":"6d:ab:13:25:a0:10","university":"Brown University","bank":{"cardExpire":"04/30","cardNumber":"3654883476033545","cardType":"Diners Club International","currency":"GBP","iban":"GB50FILIYPYET62B22GD66"},"company":{"department":"Accounting","name":"Aufderhar - Cormier","title":"Business Analyst","address":{"address":"1095 Adams Street","city":"Washington","state":"Missouri","stateCode":"MO","postalCode":"43273","coordinates":{"lat":63.930802,"lng":88.782366},"country":"United States"}},"ein":"861-925","ssn":"824-760-922","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":104,"firstName":"Michael","lastName":"Johnson","maidenName":"","age":25,"gender":"male","email":"michael.johnson@x.dummyjson.com","phone":"+92 290-825-4767","username":"michaelj","password":"michaeljpass","birthDate":"2000-1-6","image":"https://dummyjson.com/icon/michaelj/128","bloodGroup":"A+","height":164.38,"weight":97.18,"eyeColor":"Red","hair":{"color":"White","type":"Curly"},"ip":"115.37.119.66","address":{"address":"1252 Washington Street","city":"Phoenix","state":"Maryland","stateCode":"MD","postalCode":"64002","coordinates":{"lat":-79.040825,"lng":100.576804},"country":"United States"},"macAddress":"29:bc:a7:64:58:48","university":"University of Miami","bank":{"cardExpire":"04/30","cardNumber":"5503135276268039","cardType":"Mastercard","currency":"INR","iban":"DE80210977585310104611"},"company":{"department":"Marketing","name":"Wisozk, Schamberger and Huels","title":"Systems Analyst","address":{"address":"378 Madison Street","city":"Columbus","state":"South Dakota","stateCode":"SD","postalCode":"34297","coordinates":{"lat":-74.566078,"lng":-90.962102},"country":"United States"}},"ein":"819-102","ssn":"924-462-933","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"}],"total":3,"skip":0,"limit":3}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Users array not empty | 1 | 0 | 0 |
| First user has id | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 4 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Filters users based on a specific field key-value pair, allowing precise user data filtering.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/users/filter?key=hair.color&value=Brown`
## Authentication
- **Required**: No
- This is a public endpoint that doesn't require authentication
## Parameters
### Query Parameters
- `key` (required) - The field path to filter by (supports nested fields with dot notation, e.g., `hair.color`, `address.city`)
- `value` (required) - The value to match for the specified key
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
{
"users": [
{
"id": 1,
"firstName": "Emily",
"lastName": "Johnson",
"hair": {
"color": "Brown",
"type": "Curly"
},
...
}
],
"total": 50,
"skip": 0,
"limit": 30
}
```
## Tests Included
- Validates response status code is 200
- Verifies all users match the filter criteria
- Checks filtered field contains expected value
- Confirms pagination metadata is present
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDIsImV4cCI6MTc2OTk2NDgwMn0.eOl4rlRcy1_4uC78oP3cgGELQZbvAxI6k8OJ-wFOSs0 |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | de26098c-3849-4409-a935-64adf9c7ad0a |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:32 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 96 |
| x-ratelimit-reset | 1769961220 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"7caa-OItcDQBJ3m1BPDRUpluqCm9ogM0" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=GUG4gA%2F4DXXAmouSOz829TPuYhbWKPL5V%2FHz%2B9oqq5KyrurIx4W%2F7REinXrT62k0QXywWQSOgb0UKPxd8SCu8JefQHxpRGWYDKPkLbs%3D"}]} |
| CF-RAY | 9c729f477b922891-AMM |
{"users":[{"id":1,"firstName":"Emily","lastName":"Johnson","maidenName":"Smith","age":29,"gender":"female","email":"emily.johnson@x.dummyjson.com","phone":"+81 965-431-3024","username":"emilys","password":"emilyspass","birthDate":"1996-5-30","image":"https://dummyjson.com/icon/emilys/128","bloodGroup":"O-","height":193.24,"weight":63.16,"eyeColor":"Green","hair":{"color":"Brown","type":"Curly"},"ip":"42.48.100.32","address":{"address":"626 Main Street","city":"Phoenix","state":"Mississippi","stateCode":"MS","postalCode":"29112","coordinates":{"lat":-77.16213,"lng":-92.084824},"country":"United States"},"macAddress":"47:fa:41:18:ec:eb","university":"University of Wisconsin--Madison","bank":{"cardExpire":"05/28","cardNumber":"3693233511855044","cardType":"Diners Club International","currency":"GBP","iban":"GB74MH2UZLR9TRPHYNU8F8"},"company":{"department":"Engineering","name":"Dooley, Kozey and Cronin","title":"Sales Manager","address":{"address":"263 Tenth Street","city":"San Francisco","state":"Wisconsin","stateCode":"WI","postalCode":"37657","coordinates":{"lat":71.814525,"lng":-161.150263},"country":"United States"}},"ein":"977-175","ssn":"900-590-289","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"admin"},{"id":33,"firstName":"Carter","lastName":"Baker","maidenName":"","age":32,"gender":"male","email":"carter.baker@x.dummyjson.com","phone":"+49 787-512-9117","username":"carterb","password":"carterbpass","birthDate":"1993-4-19","image":"https://dummyjson.com/icon/carterb/128","bloodGroup":"A+","height":190.96,"weight":70.78,"eyeColor":"Green","hair":{"color":"Brown","type":"Straight"},"ip":"167.111.147.45","address":{"address":"625 Third Street","city":"Denver","state":"Oregon","stateCode":"OR","postalCode":"74622","coordinates":{"lat":-63.00584,"lng":76.189171},"country":"United States"},"macAddress":"35:0:ad:91:5f:f3","university":"Washington University in St. Louis","bank":{"cardExpire":"04/30","cardNumber":"5286984910566529","cardType":"Mastercard","currency":"AUD","iban":"DE50017878346071444444"},"company":{"department":"Product Management","name":"Luettgen and Sons","title":"Software Engineer","address":{"address":"127 Cedar Street","city":"Washington","state":"South Carolina","stateCode":"SC","postalCode":"17426","coordinates":{"lat":71.127142,"lng":174.470146},"country":"United States"}},"ein":"193-203","ssn":"927-818-529","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":51,"firstName":"Eli","lastName":"Bennett","maidenName":"","age":30,"gender":"male","email":"eli.bennett@x.dummyjson.com","phone":"+1 465-379-7226","username":"elib","password":"elibpass","birthDate":"1995-9-17","image":"https://dummyjson.com/icon/elib/128","bloodGroup":"B+","height":170.61,"weight":91.22,"eyeColor":"Gray","hair":{"color":"Brown","type":"Kinky"},"ip":"144.73.131.148","address":{"address":"1423 Main Street","city":"Jacksonville","state":"Idaho","stateCode":"ID","postalCode":"34271","coordinates":{"lat":-15.022759,"lng":58.392572},"country":"United States"},"macAddress":"f6:59:76:66:c0:85","university":"Boston University","bank":{"cardExpire":"04/28","cardNumber":"3644848905447957","cardType":"Diners Club International","currency":"GBP","iban":"GB4969YU8ZX5UYTERMTE5X"},"company":{"department":"Accounting","name":"Waters, Ankunding and Green","title":"Chief Operating Officer","address":{"address":"1536 Fourth Street","city":"Indianapolis","state":"Michigan","stateCode":"MI","postalCode":"77147","coordinates":{"lat":-49.858979,"lng":-21.940443},"country":"United States"}},"ein":"222-408","ssn":"216-126-647","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":54,"firstName":"Ava","lastName":"Harrison","maidenName":"","age":29,"gender":"female","email":"ava.harrison@x.dummyjson.com","phone":"+44 926-778-4653","username":"avah","password":"avahpass","birthDate":"1996-4-22","image":"https://dummyjson.com/icon/avah/128","bloodGroup":"O-","height":155.72,"weight":93.47,"eyeColor":"Hazel","hair":{"color":"Brown","type":"Curly"},"ip":"225.40.138.177","address":{"address":"1094 Adams Street","city":"San Antonio","state":"Vermont","stateCode":"VT","postalCode":"14336","coordinates":{"lat":-84.032892,"lng":-46.255902},"country":"United States"},"macAddress":"4e:2b:e4:33:7a:f8","university":"Harvard University","bank":{"cardExpire":"01/27","cardNumber":"3694482369735209","cardType":"Diners Club International","currency":"AUD","iban":"DE64412118002973670494"},"company":{"department":"Engineering","name":"Blanda - Jacobson","title":"Legal Counsel","address":{"address":"1374 Cedar Street","city":"Philadelphia","state":"Delaware","stateCode":"DE","postalCode":"21641","coordinates":{"lat":-56.564069,"lng":-134.42879},"country":"United States"}},"ein":"145-780","ssn":"621-536-422","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":59,"firstName":"Ethan","lastName":"Fletcher","maidenName":"","age":34,"gender":"male","email":"ethan.fletcher@x.dummyjson.com","phone":"+1 251-564-2643","username":"ethanf","password":"ethanfpass","birthDate":"1991-5-1","image":"https://dummyjson.com/icon/ethanf/128","bloodGroup":"AB-","height":183.99,"weight":83.98,"eyeColor":"Violet","hair":{"color":"Brown","type":"Curly"},"ip":"21.94.6.7","address":{"address":"789 Main Street","city":"Dallas","state":"Arkansas","stateCode":"AR","postalCode":"87924","coordinates":{"lat":29.411519,"lng":23.598322},"country":"United States"},"macAddress":"b2:fd:ca:1b:3b:a5","university":"Cornell University","bank":{"cardExpire":"02/27","cardNumber":"4440217612919449","cardType":"Visa","currency":"AUD","iban":"DE42359669771256255400"},"company":{"department":"Training","name":"Halvorson LLC","title":"Data Scientist","address":{"address":"258 Tenth Street","city":"Washington","state":"Texas","stateCode":"TX","postalCode":"10371","coordinates":{"lat":45.367618,"lng":-147.524292},"country":"United States"}},"ein":"610-786","ssn":"577-991-233","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":78,"firstName":"Eleanor","lastName":"Tyler","maidenName":"","age":31,"gender":"female","email":"eleanor.tyler@x.dummyjson.com","phone":"+1 232-621-9938","username":"eleanort","password":"eleanortpass","birthDate":"1994-10-26","image":"https://dummyjson.com/icon/eleanort/128","bloodGroup":"O-","height":195.85,"weight":70.03,"eyeColor":"Green","hair":{"color":"Brown","type":"Wavy"},"ip":"54.87.239.213","address":{"address":"439 Pine Street","city":"San Antonio","state":"New Hampshire","stateCode":"NH","postalCode":"64622","coordinates":{"lat":51.5965,"lng":47.479982},"country":"United States"},"macAddress":"df:94:e1:e7:3a:7","university":"Wake Forest University","bank":{"cardExpire":"03/30","cardNumber":"6282984352125703","cardType":"UnionPay","currency":"EUR","iban":"DE60851175428733331885"},"company":{"department":"Product Management","name":"Hilpert and Sons","title":"Web Developer","address":{"address":"580 Seventh Street","city":"Jacksonville","state":"Indiana","stateCode":"IN","postalCode":"57924","coordinates":{"lat":-3.475554,"lng":-138.094068},"country":"United States"}},"ein":"668-175","ssn":"688-176-797","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":83,"firstName":"Dylan","lastName":"Wells","maidenName":"","age":35,"gender":"male","email":"dylan.wells@x.dummyjson.com","phone":"+49 659-638-1106","username":"dylanw","password":"dylanwpass","birthDate":"1990-11-7","image":"https://dummyjson.com/icon/dylanw/128","bloodGroup":"O+","height":156.56,"weight":83.29,"eyeColor":"Amber","hair":{"color":"Brown","type":"Curly"},"ip":"254.112.7.252","address":{"address":"816 Sixth Street","city":"Philadelphia","state":"West Virginia","stateCode":"WV","postalCode":"54522","coordinates":{"lat":-82.623651,"lng":33.259567},"country":"United States"},"macAddress":"b7:c7:29:ff:e0:49","university":"William & Mary","bank":{"cardExpire":"07/29","cardNumber":"3597467382729154","cardType":"JCB","currency":"AUD","iban":"DE62128867521743907285"},"company":{"department":"Services","name":"Schmidt - Hyatt","title":"Support Specialist","address":{"address":"360 Sixth Street","city":"Seattle","state":"Florida","stateCode":"FL","postalCode":"16124","coordinates":{"lat":61.755934,"lng":-149.215844},"country":"United States"}},"ein":"560-210","ssn":"572-136-332","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":103,"firstName":"Emily","lastName":"Brown","maidenName":"Taylor","age":43,"gender":"female","email":"emily.brown@x.dummyjson.com","phone":"+61 875-999-8871","username":"emilyt","password":"emilytpass","birthDate":"1982-12-5","image":"https://dummyjson.com/icon/emilyt/128","bloodGroup":"AB-","height":181.96,"weight":89.65,"eyeColor":"Blue","hair":{"color":"Brown","type":"Kinky"},"ip":"41.156.197.109","address":{"address":"1962 Fourth Street","city":"Houston","state":"Hawaii","stateCode":"HI","postalCode":"67104","coordinates":{"lat":-64.336051,"lng":135.876737},"country":"United States"},"macAddress":"3b:9b:ee:cf:1f:de","university":"Georgetown University","bank":{"cardExpire":"09/30","cardNumber":"374970244492890","cardType":"American Express","currency":"INR","iban":"DE06646067555223276327"},"company":{"department":"Research and Development","name":"Pfannerstill Inc","title":"Data Analyst","address":{"address":"1998 Main Street","city":"Indianapolis","state":"Arizona","stateCode":"AZ","postalCode":"57190","coordinates":{"lat":-83.995771,"lng":127.669213},"country":"United States"}},"ein":"844-425","ssn":"119-906-830","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":105,"firstName":"Emma","lastName":"Wilson","maidenName":"Clark","age":32,"gender":"female","email":"emma.wilson@x.dummyjson.com","phone":"+49 933-975-3236","username":"emmac","password":"emmacpass","birthDate":"1993-6-2","image":"https://dummyjson.com/icon/emmac/128","bloodGroup":"O+","height":164.59,"weight":97.44,"eyeColor":"Gray","hair":{"color":"Brown","type":"Straight"},"ip":"23.240.162.228","address":{"address":"888 Lincoln Street","city":"New York","state":"Kansas","stateCode":"KS","postalCode":"85313","coordinates":{"lat":64.320835,"lng":-25.984113},"country":"United States"},"macAddress":"64:a6:72:4d:9e:79","university":"Tufts University","bank":{"cardExpire":"03/30","cardNumber":"6011728212195820","cardType":"Discover","currency":"CNY","iban":"DE03754619165111286589"},"company":{"department":"Sales","name":"Nienow - Fritsch","title":"Software Engineer","address":{"address":"1302 Adams Street","city":"San Francisco","state":"Alaska","stateCode":"AK","postalCode":"39028","coordinates":{"lat":-78.519188,"lng":-144.614396},"country":"United States"}},"ein":"108-918","ssn":"690-817-970","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":112,"firstName":"Alexander","lastName":"Hernandez","maidenName":"","age":42,"gender":"male","email":"alexander.hernandez@x.dummyjson.com","phone":"+49 410-245-8608","username":"alexanderh","password":"alexanderhpass","birthDate":"1983-7-4","image":"https://dummyjson.com/icon/alexanderh/128","bloodGroup":"B-","height":172.2,"weight":82.3,"eyeColor":"Blue","hair":{"color":"Brown","type":"Kinky"},"ip":"145.104.53.16","address":{"address":"329 Second Street","city":"Dallas","state":"Idaho","stateCode":"ID","postalCode":"49314","coordinates":{"lat":14.101714,"lng":-148.130379},"country":"United States"},"macAddress":"4c:83:2a:82:f:c6","university":"University of Florida","bank":{"cardExpire":"11/30","cardNumber":"3511024200905426","cardType":"JCB","currency":"JPY","iban":"DE42863681794561041810"},"company":{"department":"Sales","name":"Gibson LLC","title":"Chief Technology Officer","address":{"address":"176 Main Street","city":"Seattle","state":"Pennsylvania","stateCode":"PA","postalCode":"61558","coordinates":{"lat":25.794587,"lng":101.693435},"country":"United States"}},"ein":"355-181","ssn":"583-406-155","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":117,"firstName":"Amelia","lastName":"Perez","maidenName":"Gonzalez","age":44,"gender":"female","email":"amelia.perez@x.dummyjson.com","phone":"+49 751-988-9521","username":"ameliag","password":"ameliagpass","birthDate":"1981-1-29","image":"https://dummyjson.com/icon/ameliag/128","bloodGroup":"B+","height":186.66,"weight":80.38,"eyeColor":"Brown","hair":{"color":"Brown","type":"Wavy"},"ip":"249.222.49.78","address":{"address":"25 Elm Street","city":"New York","state":"New Hampshire","stateCode":"NH","postalCode":"88314","coordinates":{"lat":-55.895738,"lng":-117.829232},"country":"United States"},"macAddress":"1:64:41:63:ca:9e","university":"University of Michigan--Ann Arbor","bank":{"cardExpire":"05/30","cardNumber":"349189566293370","cardType":"American Express","currency":"EUR","iban":"IT88GLSNDVETYALH79DUSDQWYBNMA"},"company":{"department":"Services","name":"Swift - Stamm","title":"Chief Executive Officer","address":{"address":"1390 Pine Street","city":"Philadelphia","state":"Maine","stateCode":"ME","postalCode":"21632","coordinates":{"lat":-19.615702,"lng":42.511462},"country":"United States"}},"ein":"836-867","ssn":"769-496-865","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":121,"firstName":"Ava","lastName":"Harris","maidenName":"","age":30,"gender":"female","email":"ava.harris@x.dummyjson.com","phone":"+44 422-227-6412","username":"avahx","password":"avahxpass","birthDate":"1995-8-26","image":"https://dummyjson.com/icon/avahx/128","bloodGroup":"A-","height":199.36,"weight":63.3,"eyeColor":"Blue","hair":{"color":"Brown","type":"Wavy"},"ip":"23.127.175.229","address":{"address":"518 Elm Street","city":"San Antonio","state":"Florida","stateCode":"FL","postalCode":"35171","coordinates":{"lat":74.817644,"lng":15.72801},"country":"United States"},"macAddress":"4:c3:e9:35:23:2a","university":"University of Florida","bank":{"cardExpire":"02/30","cardNumber":"3622583668551978","cardType":"Diners Club International","currency":"JPY","iban":"DE72545287965967528178"},"company":{"department":"Marketing","name":"Lebsack Inc","title":"Engineer","address":{"address":"1495 First Street","city":"Columbus","state":"Alaska","stateCode":"AK","postalCode":"64989","coordinates":{"lat":18.943383,"lng":-136.717336},"country":"United States"}},"ein":"715-161","ssn":"906-771-261","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":124,"firstName":"Noah","lastName":"Lewis","maidenName":"","age":40,"gender":"male","email":"noah.lewis@x.dummyjson.com","phone":"+61 396-867-4229","username":"noahl","password":"noahlpass","birthDate":"1985-6-9","image":"https://dummyjson.com/icon/noahl/128","bloodGroup":"AB-","height":168.71,"weight":86.15,"eyeColor":"Green","hair":{"color":"Brown","type":"Curly"},"ip":"210.106.253.177","address":{"address":"41 Fifth Street","city":"Denver","state":"Alabama","stateCode":"AL","postalCode":"42655","coordinates":{"lat":62.7964,"lng":-10.481867},"country":"United States"},"macAddress":"e3:f5:6d:86:ed:bd","university":"Yale University","bank":{"cardExpire":"01/30","cardNumber":"3553297247069104","cardType":"JCB","currency":"EUR","iban":"FR89F3HKAI2Q8MPK3JKJ43YQIT7"},"company":{"department":"Research and Development","name":"Satterfield, Shields and Littel","title":"Project Manager","address":{"address":"596 Third Street","city":"Seattle","state":"Minnesota","stateCode":"MN","postalCode":"30859","coordinates":{"lat":-9.449962,"lng":124.358321},"country":"United States"}},"ein":"898-556","ssn":"711-488-725","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":131,"firstName":"Jackson","lastName":"Morales","maidenName":"","age":34,"gender":"male","email":"jackson.morales@x.dummyjson.com","phone":"+1 685-561-9154","username":"jacksonm","password":"jacksonmpass","birthDate":"1991-9-18","image":"https://dummyjson.com/icon/jacksonm/128","bloodGroup":"AB-","height":154.3,"weight":60.62,"eyeColor":"Violet","hair":{"color":"Brown","type":"Curly"},"ip":"10.39.106.47","address":{"address":"1549 Main Street","city":"Austin","state":"Arkansas","stateCode":"AR","postalCode":"23595","coordinates":{"lat":89.624584,"lng":-107.671084},"country":"United States"},"macAddress":"e7:a2:59:b:23:32","university":"Pepperdine University","bank":{"cardExpire":"08/27","cardNumber":"4668916290124603","cardType":"Visa","currency":"AUD","iban":"DE89790012694823772619"},"company":{"department":"Human Resources","name":"Kshlerin, Mitchell and Wilderman","title":"Legal Counsel","address":{"address":"694 Second Street","city":"San Diego","state":"New Hampshire","stateCode":"NH","postalCode":"64598","coordinates":{"lat":-67.250988,"lng":158.241684},"country":"United States"}},"ein":"106-784","ssn":"439-618-286","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":135,"firstName":"Elijah","lastName":"Cruz","maidenName":"","age":30,"gender":"male","email":"elijah.cruz@x.dummyjson.com","phone":"+1 613-532-2557","username":"elijahc","password":"elijahcpass","birthDate":"1995-1-23","image":"https://dummyjson.com/icon/elijahc/128","bloodGroup":"O+","height":195.29,"weight":78.61,"eyeColor":"Gray","hair":{"color":"Brown","type":"Wavy"},"ip":"178.45.211.139","address":{"address":"583 Second Street","city":"Seattle","state":"North Dakota","stateCode":"ND","postalCode":"26483","coordinates":{"lat":19.529428,"lng":165.798169},"country":"United States"},"macAddress":"11:be:4d:5a:92:7d","university":"University of California--Berkeley","bank":{"cardExpire":"05/27","cardNumber":"5195573329944110","cardType":"Mastercard","currency":"CAD","iban":"DE67341880174568825698"},"company":{"department":"Accounting","name":"Stokes - Harber","title":"Marketing Manager","address":{"address":"1462 Jefferson Street","city":"Seattle","state":"New Jersey","stateCode":"NJ","postalCode":"81308","coordinates":{"lat":69.208929,"lng":-159.871286},"country":"United States"}},"ein":"115-488","ssn":"577-965-784","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":136,"firstName":"Madison","lastName":"Stewart","maidenName":"Kelly","age":37,"gender":"female","email":"madison.stewart@x.dummyjson.com","phone":"+61 455-829-5048","username":"madisonk","password":"madisonkpass","birthDate":"1988-5-15","image":"https://dummyjson.com/icon/madisonk/128","bloodGroup":"B-","height":199.81,"weight":76.36,"eyeColor":"Blue","hair":{"color":"Brown","type":"Kinky"},"ip":"110.144.81.89","address":{"address":"823 Sixth Street","city":"Indianapolis","state":"Arkansas","stateCode":"AR","postalCode":"66305","coordinates":{"lat":-26.509663,"lng":-127.744698},"country":"United States"},"macAddress":"4e:15:99:a0:22:33","university":"Northwestern University","bank":{"cardExpire":"06/27","cardNumber":"5362208194454054","cardType":"Mastercard","currency":"PKR","iban":"DE03605844090278785940"},"company":{"department":"Training","name":"Schowalter Group","title":"Data Scientist","address":{"address":"344 Main Street","city":"Washington","state":"Colorado","stateCode":"CO","postalCode":"64474","coordinates":{"lat":-33.940327,"lng":-144.800578},"country":"United States"}},"ein":"246-581","ssn":"223-424-188","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":147,"firstName":"Henry","lastName":"Turner","maidenName":"","age":45,"gender":"male","email":"henry.turner@x.dummyjson.com","phone":"+1 374-470-5082","username":"henryt","password":"henrytpass","birthDate":"1980-6-12","image":"https://dummyjson.com/icon/henryt/128","bloodGroup":"AB-","height":151.17,"weight":62.94,"eyeColor":"Amber","hair":{"color":"Brown","type":"Straight"},"ip":"96.193.117.130","address":{"address":"201 Sixth Street","city":"Philadelphia","state":"Ohio","stateCode":"OH","postalCode":"41914","coordinates":{"lat":-26.432988,"lng":79.850071},"country":"United States"},"macAddress":"69:dd:33:c0:84:9e","university":"University of Florida","bank":{"cardExpire":"10/30","cardNumber":"371905945311588","cardType":"American Express","currency":"GBP","iban":"GB8253KW72S9PYJOKIXEU7"},"company":{"department":"Legal","name":"Dickens - Beahan","title":"Technical Support Engineer","address":{"address":"1392 Fifth Street","city":"Chicago","state":"Wyoming","stateCode":"WY","postalCode":"76234","coordinates":{"lat":9.204767,"lng":-80.70479},"country":"United States"}},"ein":"884-620","ssn":"555-829-690","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":151,"firstName":"Nathan","lastName":"Reed","maidenName":"","age":29,"gender":"male","email":"nathan.reed@x.dummyjson.com","phone":"+1 448-642-4577","username":"nathanr","password":"nathanrpass","birthDate":"1996-12-26","image":"https://dummyjson.com/icon/nathanr/128","bloodGroup":"A+","height":186.76,"weight":52.22,"eyeColor":"Amber","hair":{"color":"Brown","type":"Curly"},"ip":"216.178.112.125","address":{"address":"82 Cedar Street","city":"Los Angeles","state":"Utah","stateCode":"UT","postalCode":"73204","coordinates":{"lat":66.874876,"lng":-47.038037},"country":"United States"},"macAddress":"1b:a1:e1:cd:a2:39","university":"University of Pennsylvania","bank":{"cardExpire":"04/27","cardNumber":"6249029371283109","cardType":"UnionPay","currency":"USD","iban":"DE15115435946113309166"},"company":{"department":"Training","name":"Stark Group","title":"Chief Operating Officer","address":{"address":"1075 Adams Street","city":"Philadelphia","state":"North Carolina","stateCode":"NC","postalCode":"28999","coordinates":{"lat":55.767346,"lng":-60.983019},"country":"United States"}},"ein":"647-669","ssn":"355-857-184","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":156,"firstName":"Mila","lastName":"Hernandez","maidenName":"Mitchell","age":34,"gender":"female","email":"mila.hernandez@x.dummyjson.com","phone":"+49 893-855-2896","username":"milam","password":"milampass","birthDate":"1991-8-18","image":"https://dummyjson.com/icon/milam/128","bloodGroup":"B-","height":174.13,"weight":80.97,"eyeColor":"Hazel","hair":{"color":"Brown","type":"Kinky"},"ip":"109.219.231.82","address":{"address":"1454 Oak Street","city":"Seattle","state":"New Mexico","stateCode":"NM","postalCode":"46438","coordinates":{"lat":89.661297,"lng":163.24939},"country":"United States"},"macAddress":"69:8b:7e:5f:44:93","university":"University of Virginia","bank":{"cardExpire":"12/29","cardNumber":"4584709028598326","cardType":"Visa","currency":"EUR","iban":"NL07YI74AY8L48Z7OE"},"company":{"department":"Marketing","name":"Wisoky - Rowe","title":"Software Architect","address":{"address":"1281 Pine Street","city":"Austin","state":"Rhode Island","stateCode":"RI","postalCode":"66784","coordinates":{"lat":53.726642,"lng":102.912699},"country":"United States"}},"ein":"708-862","ssn":"549-233-319","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":166,"firstName":"Elena","lastName":"Long","maidenName":"Mitchell","age":43,"gender":"female","email":"elena.long@x.dummyjson.com","phone":"+91 697-839-3216","username":"elenam","password":"elenampass","birthDate":"1982-4-4","image":"https://dummyjson.com/icon/elenam/128","bloodGroup":"AB+","height":179.89,"weight":56.93,"eyeColor":"Hazel","hair":{"color":"Brown","type":"Kinky"},"ip":"252.247.244.14","address":{"address":"1883 Lincoln Street","city":"San Jose","state":"New York","stateCode":"NY","postalCode":"29766","coordinates":{"lat":-59.16639,"lng":-110.237583},"country":"United States"},"macAddress":"7f:a7:45:db:ae:69","university":"Tufts University","bank":{"cardExpire":"02/29","cardNumber":"5223503782631983","cardType":"Mastercard","currency":"GBP","iban":"GB291SKJY1I21ZAJIARKW4"},"company":{"department":"Research and Development","name":"Bruen and Sons","title":"Database Administrator","address":{"address":"985 Ninth Street","city":"New York","state":"Colorado","stateCode":"CO","postalCode":"36408","coordinates":{"lat":59.040431,"lng":-134.144154},"country":"United States"}},"ein":"457-165","ssn":"619-479-503","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":188,"firstName":"Aria","lastName":"Flores","maidenName":"Martin","age":26,"gender":"female","email":"aria.flores@x.dummyjson.com","phone":"+61 415-771-8232","username":"ariamx","password":"ariamxpass","birthDate":"1999-11-8","image":"https://dummyjson.com/icon/ariamx/128","bloodGroup":"O-","height":160.06,"weight":92.02,"eyeColor":"Amber","hair":{"color":"Brown","type":"Wavy"},"ip":"86.67.36.191","address":{"address":"492 Pine Street","city":"Indianapolis","state":"Tennessee","stateCode":"TN","postalCode":"71284","coordinates":{"lat":-88.3996,"lng":22.908268},"country":"United States"},"macAddress":"9d:d1:19:e7:45:26","university":"Columbia University","bank":{"cardExpire":"07/30","cardNumber":"3568996021436297","cardType":"JCB","currency":"AUD","iban":"DE53096479676200434539"},"company":{"department":"Sales","name":"Gibson LLC","title":"Sales Manager","address":{"address":"1728 Sixth Street","city":"Fort Worth","state":"Nebraska","stateCode":"NE","postalCode":"74809","coordinates":{"lat":51.558679,"lng":-85.819219},"country":"United States"}},"ein":"784-961","ssn":"132-677-684","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":203,"firstName":"Nova","lastName":"Cooper","maidenName":"Bell","age":32,"gender":"female","email":"nova.cooper@x.dummyjson.com","phone":"+49 292-569-8252","username":"novab","password":"novabpass","birthDate":"1993-6-16","image":"https://dummyjson.com/icon/novab/128","bloodGroup":"B-","height":155.62,"weight":60.62,"eyeColor":"Hazel","hair":{"color":"Brown","type":"Curly"},"ip":"143.240.135.160","address":{"address":"1687 Pine Street","city":"Los Angeles","state":"Nebraska","stateCode":"NE","postalCode":"49131","coordinates":{"lat":64.747296,"lng":148.357671},"country":"United States"},"macAddress":"e:ea:3e:f3:2d:90","university":"Dartmouth College","bank":{"cardExpire":"01/27","cardNumber":"4281297008337127","cardType":"Visa","currency":"CAD","iban":"DE21025127888819711543"},"company":{"department":"Marketing","name":"Schmidt - Hyatt","title":"Legal Counsel","address":{"address":"1970 Maple Street","city":"New York","state":"Georgia","stateCode":"GA","postalCode":"24324","coordinates":{"lat":-84.354097,"lng":-63.193683},"country":"United States"}},"ein":"249-364","ssn":"357-926-188","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:97.0) Gecko/20100101 Firefox/97.0","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":206,"firstName":"Elena","lastName":"Baker","maidenName":"","age":35,"gender":"female","email":"elena.baker@x.dummyjson.com","phone":"+49 978-346-6960","username":"elenab","password":"elenabpass","birthDate":"1990-3-16","image":"https://dummyjson.com/icon/elenab/128","bloodGroup":"O+","height":150.62,"weight":95.55,"eyeColor":"Brown","hair":{"color":"Brown","type":"Straight"},"ip":"85.35.8.29","address":{"address":"117 Maple Street","city":"San Francisco","state":"Tennessee","stateCode":"TN","postalCode":"40535","coordinates":{"lat":30.069731,"lng":-118.879243},"country":"United States"},"macAddress":"83:75:b2:b6:ca:8b","university":"Tufts University","bank":{"cardExpire":"01/30","cardNumber":"5437614839810348","cardType":"Mastercard","currency":"INR","iban":"DE24112202737130790320"},"company":{"department":"Engineering","name":"Heller LLC","title":"Project Manager","address":{"address":"139 Jefferson Street","city":"San Antonio","state":"Idaho","stateCode":"ID","postalCode":"50546","coordinates":{"lat":1.356153,"lng":175.897893},"country":"United States"}},"ein":"509-840","ssn":"640-201-673","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"}],"total":23,"skip":0,"limit":23}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Retrieves a paginated list of users with specific fields selected, demonstrating pagination and field filtering capabilities.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/users?limit=5&skip=10&select=firstName,age`
## Authentication
- **Required**: No
- This is a public endpoint that doesn't require authentication
## Parameters
### Query Parameters
- `limit` (optional) - Number of users to return (default: 30)
- `skip` (optional) - Number of users to skip for pagination (default: 0)
- `select` (optional) - Comma-separated list of fields to include in response
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
{
"users": [
{
"id": 11,
"firstName": "John",
"age": 30
}
],
"total": 208,
"skip": 10,
"limit": 5
}
```
## Tests Included
- Validates response status code is 200
- Verifies correct number of users returned (limit)
- Checks pagination offset (skip)
- Confirms only selected fields are present in response
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDIsImV4cCI6MTc2OTk2NDgwMn0.eOl4rlRcy1_4uC78oP3cgGELQZbvAxI6k8OJ-wFOSs0 |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | b1a43ff1-f9bf-47c8-b537-9f4f4a8bec7c |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:32 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 93 |
| x-ratelimit-reset | 1769961213 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"f0-c9aLGWPNjhOdE9zS5MuqtOmC4iE" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=IISY7XJOWIqrrlyTcV2nX2KinnVdd52FLTEJxfHTIERSR1ijhKW7c3EQA6SR8l6iQfv6viZUxjr45GYqUHNzjWKcaJovt%2FitWBfma%2FQ%3D"}]} |
| Content-Encoding | br |
| CF-RAY | 9c729f491d4b2891-AMM |
{"users":[{"id":11,"firstName":"Liam","age":30},{"id":12,"firstName":"Mia","age":25},{"id":13,"firstName":"Noah","age":41},{"id":14,"firstName":"Charlotte","age":37},{"id":15,"firstName":"William","age":33}],"total":208,"skip":10,"limit":5}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Retrieves all users sorted by a specific field in ascending or descending order.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/users?sortBy=firstName&order=asc`
## Authentication
- **Required**: No
- This is a public endpoint that doesn't require authentication
## Parameters
### Query Parameters
- `sortBy` (optional) - Field name to sort by (e.g., firstName, lastName, age, email)
- `order` (optional) - Sort order: `asc` (ascending) or `desc` (descending)
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
{
"users": [
{
"id": 1,
"firstName": "Aaron",
"lastName": "Smith",
"age": 25,
...
}
],
"total": 208,
"skip": 0,
"limit": 30
}
```
## Tests Included
- Validates response status code is 200
- Verifies users array is sorted correctly
- Checks sort order matches requested order (asc/desc)
- Confirms all user fields are present
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDIsImV4cCI6MTc2OTk2NDgwMn0.eOl4rlRcy1_4uC78oP3cgGELQZbvAxI6k8OJ-wFOSs0 |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 0b0ab42e-79bf-4a3a-a1e8-3ae8ccbd47be |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:32 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 92 |
| x-ratelimit-reset | 1769961213 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"a337-zsejjB8Q1xUzsEelxEwDQWBnWxk" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=g6r6sG4O3XToEguevQPoOygewkm4MjrYPI%2B3nYd5tlEvIHedgjniubOu0%2BhLI99%2B6Tv%2FeifOqDGfyeIhk5VBV0AnHBZkLxDBroqL0B0%3D"}]} |
| CF-RAY | 9c729f4aaf0d2891-AMM |
{"users":[{"id":84,"firstName":"Aaliyah","lastName":"Hanson","maidenName":"","age":29,"gender":"female","email":"aaliyah.hanson@x.dummyjson.com","phone":"+1 275-501-1119","username":"aaliyahh","password":"aaliyahhpass","birthDate":"1996-3-20","image":"https://dummyjson.com/icon/aaliyahh/128","bloodGroup":"B+","height":164.5,"weight":92.03,"eyeColor":"Blue","hair":{"color":"Gray","type":"Wavy"},"ip":"51.180.201.49","address":{"address":"790 Eighth Street","city":"Philadelphia","state":"North Dakota","stateCode":"ND","postalCode":"51438","coordinates":{"lat":15.832722,"lng":-148.237795},"country":"United States"},"macAddress":"89:50:ac:7e:d0:b6","university":"Cornell University","bank":{"cardExpire":"02/28","cardNumber":"6011926454334632","cardType":"Discover","currency":"CAD","iban":"DE02970928927762628941"},"company":{"department":"Accounting","name":"Marvin Inc","title":"Quality Assurance Engineer","address":{"address":"747 Ninth Street","city":"San Francisco","state":"North Carolina","stateCode":"NC","postalCode":"68238","coordinates":{"lat":-53.992111,"lng":-32.617357},"country":"United States"}},"ein":"709-477","ssn":"453-478-272","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":176,"firstName":"Aaliyah","lastName":"Martinez","maidenName":"Adams","age":29,"gender":"female","email":"aaliyah.martinez@x.dummyjson.com","phone":"+91 862-924-5336","username":"aaliyaha","password":"aaliyahapass","birthDate":"1996-2-2","image":"https://dummyjson.com/icon/aaliyaha/128","bloodGroup":"B+","height":177.05,"weight":68.62,"eyeColor":"Green","hair":{"color":"Blonde","type":"Curly"},"ip":"164.70.78.194","address":{"address":"935 Fifth Street","city":"New York","state":"West Virginia","stateCode":"WV","postalCode":"60165","coordinates":{"lat":2.456241,"lng":-122.373016},"country":"United States"},"macAddress":"c:a3:46:aa:98:7c","university":"Georgetown University","bank":{"cardExpire":"04/29","cardNumber":"5587285781475675","cardType":"Mastercard","currency":"CNY","iban":"DE44094986173554781705"},"company":{"department":"Support","name":"Ankunding, Little and Flatley","title":"Web Developer","address":{"address":"624 Adams Street","city":"Jacksonville","state":"Nebraska","stateCode":"NE","postalCode":"72753","coordinates":{"lat":56.509799,"lng":-4.674365},"country":"United States"}},"ein":"286-236","ssn":"195-119-185","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":157,"firstName":"Aaron","lastName":"Cook","maidenName":"","age":28,"gender":"male","email":"aaron.cook@x.dummyjson.com","phone":"+81 362-539-6973","username":"aaronc","password":"aaroncpass","birthDate":"1997-1-26","image":"https://dummyjson.com/icon/aaronc/128","bloodGroup":"AB+","height":165.6,"weight":61.17,"eyeColor":"Green","hair":{"color":"Blue","type":"Curly"},"ip":"71.248.65.203","address":{"address":"169 First Street","city":"Phoenix","state":"Wyoming","stateCode":"WY","postalCode":"52331","coordinates":{"lat":-6.538887,"lng":-58.475605},"country":"United States"},"macAddress":"9e:3f:8b:b:83:af","university":"University of Pennsylvania","bank":{"cardExpire":"03/29","cardNumber":"6011771715186854","cardType":"Discover","currency":"AUD","iban":"DE28971190963043337518"},"company":{"department":"Support","name":"Leffler, Rolfson and Becker","title":"Support Specialist","address":{"address":"380 Maple Street","city":"San Antonio","state":"Michigan","stateCode":"MI","postalCode":"44238","coordinates":{"lat":-31.851481,"lng":-63.253251},"country":"United States"}},"ein":"862-277","ssn":"270-351-584","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":19,"firstName":"Abigail","lastName":"Rivera","maidenName":"","age":29,"gender":"female","email":"abigail.rivera@x.dummyjson.com","phone":"+91 228-363-7806","username":"abigailr","password":"abigailrpass","birthDate":"1996-10-11","image":"https://dummyjson.com/icon/abigailr/128","bloodGroup":"B+","height":186.39,"weight":74.61,"eyeColor":"Violet","hair":{"color":"Blue","type":"Kinky"},"ip":"19.183.240.94","address":{"address":"996 Oak Street","city":"Chicago","state":"New Mexico","stateCode":"NM","postalCode":"11407","coordinates":{"lat":44.321308,"lng":-3.723903},"country":"United States"},"macAddress":"1d:a6:58:2a:e5:e4","university":"California Institute of Technology (Caltech)","bank":{"cardExpire":"01/27","cardNumber":"6011399019022417","cardType":"Discover","currency":"EUR","iban":"IT11QP2B5J81QM1FBX029VI5DD68O"},"company":{"department":"Human Resources","name":"Prohaska - Thiel","title":"Business Analyst","address":{"address":"1402 Adams Street","city":"Austin","state":"Wisconsin","stateCode":"WI","postalCode":"51456","coordinates":{"lat":25.672938,"lng":-76.54967},"country":"United States"}},"ein":"173-637","ssn":"655-823-929","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Edge/97.0.1072.76 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":30,"firstName":"Addison","lastName":"Wright","maidenName":"","age":33,"gender":"female","email":"addison.wright@x.dummyjson.com","phone":"+1 514-384-3300","username":"addisonw","password":"addisonwpass","birthDate":"1992-1-3","image":"https://dummyjson.com/icon/addisonw/128","bloodGroup":"B+","height":179.32,"weight":76.93,"eyeColor":"Brown","hair":{"color":"Blonde","type":"Straight"},"ip":"11.35.69.81","address":{"address":"568 Tenth Street","city":"San Francisco","state":"Montana","stateCode":"MT","postalCode":"54698","coordinates":{"lat":20.946052,"lng":100.228822},"country":"United States"},"macAddress":"fb:0:94:21:16:c","university":"Syracuse University","bank":{"cardExpire":"06/28","cardNumber":"5274971895809762","cardType":"Mastercard","currency":"PKR","iban":"DE91480955939051635497"},"company":{"department":"Services","name":"Kreiger Inc","title":"Human Resources Manager","address":{"address":"1173 Eighth Street","city":"San Diego","state":"Michigan","stateCode":"MI","postalCode":"85777","coordinates":{"lat":65.324413,"lng":87.142893},"country":"United States"}},"ein":"415-286","ssn":"804-492-390","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":164,"firstName":"Addison","lastName":"Ward","maidenName":"Foster","age":30,"gender":"female","email":"addison.ward@x.dummyjson.com","phone":"+1 248-875-1802","username":"addisonf","password":"addisonfpass","birthDate":"1995-8-23","image":"https://dummyjson.com/icon/addisonf/128","bloodGroup":"B-","height":160.22,"weight":75.72,"eyeColor":"Amber","hair":{"color":"Green","type":"Wavy"},"ip":"74.79.100.79","address":{"address":"1320 Fifth Street","city":"San Francisco","state":"South Carolina","stateCode":"SC","postalCode":"20149","coordinates":{"lat":-39.289112,"lng":46.108923},"country":"United States"},"macAddress":"e2:a5:4:ce:d7:60","university":"University of Illinois--Urbana-Champaign","bank":{"cardExpire":"12/30","cardNumber":"6011006235805000","cardType":"Discover","currency":"AUD","iban":"DE46038536418760965942"},"company":{"department":"Human Resources","name":"Kshlerin, Mitchell and Wilderman","title":"Product Manager","address":{"address":"1388 Tenth Street","city":"Charlotte","state":"New York","stateCode":"NY","postalCode":"63709","coordinates":{"lat":-5.900293,"lng":-10.987888},"country":"United States"}},"ein":"104-679","ssn":"801-271-313","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":200,"firstName":"Adrian","lastName":"Flores","maidenName":"","age":44,"gender":"male","email":"adrian.flores@x.dummyjson.com","phone":"+61 524-858-7351","username":"adrianf","password":"adrianfpass","birthDate":"1981-5-1","image":"https://dummyjson.com/icon/adrianf/128","bloodGroup":"O+","height":183.05,"weight":97.74,"eyeColor":"Green","hair":{"color":"Purple","type":"Wavy"},"ip":"86.244.141.158","address":{"address":"1395 Madison Street","city":"New York","state":"Delaware","stateCode":"DE","postalCode":"60163","coordinates":{"lat":48.779884,"lng":-84.200415},"country":"United States"},"macAddress":"e1:22:78:3f:9b:8c","university":"Stanford University","bank":{"cardExpire":"08/27","cardNumber":"347972688413683","cardType":"American Express","currency":"JPY","iban":"DE47803706973935779318"},"company":{"department":"Legal","name":"Rippin Inc","title":"Technical Support Engineer","address":{"address":"279 Madison Street","city":"San Antonio","state":"Louisiana","stateCode":"LA","postalCode":"25808","coordinates":{"lat":32.513584,"lng":-145.587193},"country":"United States"}},"ein":"965-469","ssn":"272-696-785","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":7,"firstName":"Alexander","lastName":"Jones","maidenName":"","age":39,"gender":"male","email":"alexander.jones@x.dummyjson.com","phone":"+61 260-824-4986","username":"alexanderj","password":"alexanderjpass","birthDate":"1986-10-20","image":"https://dummyjson.com/icon/alexanderj/128","bloodGroup":"AB-","height":153.89,"weight":77.42,"eyeColor":"Blue","hair":{"color":"White","type":"Straight"},"ip":"166.204.84.32","address":{"address":"664 Maple Street","city":"Indianapolis","state":"Delaware","stateCode":"DE","postalCode":"86684","coordinates":{"lat":35.289664,"lng":7.063255},"country":"United States"},"macAddress":"d2:64:58:2d:1c:46","university":"University of Illinois--Urbana-Champaign","bank":{"cardExpire":"12/29","cardNumber":"5189302549548693","cardType":"Mastercard","currency":"PKR","iban":"DE67517655968963441488"},"company":{"department":"Engineering","name":"Dickens - Beahan","title":"Web Developer","address":{"address":"996 Eighth Street","city":"Washington","state":"Kansas","stateCode":"KS","postalCode":"27858","coordinates":{"lat":-75.462366,"lng":-128.025697},"country":"United States"}},"ein":"638-127","ssn":"722-993-925","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"moderator"},{"id":112,"firstName":"Alexander","lastName":"Hernandez","maidenName":"","age":42,"gender":"male","email":"alexander.hernandez@x.dummyjson.com","phone":"+49 410-245-8608","username":"alexanderh","password":"alexanderhpass","birthDate":"1983-7-4","image":"https://dummyjson.com/icon/alexanderh/128","bloodGroup":"B-","height":172.2,"weight":82.3,"eyeColor":"Blue","hair":{"color":"Brown","type":"Kinky"},"ip":"145.104.53.16","address":{"address":"329 Second Street","city":"Dallas","state":"Idaho","stateCode":"ID","postalCode":"49314","coordinates":{"lat":14.101714,"lng":-148.130379},"country":"United States"},"macAddress":"4c:83:2a:82:f:c6","university":"University of Florida","bank":{"cardExpire":"11/30","cardNumber":"3511024200905426","cardType":"JCB","currency":"JPY","iban":"DE42863681794561041810"},"company":{"department":"Sales","name":"Gibson LLC","title":"Chief Technology Officer","address":{"address":"176 Main Street","city":"Seattle","state":"Pennsylvania","stateCode":"PA","postalCode":"61558","coordinates":{"lat":25.794587,"lng":101.693435},"country":"United States"}},"ein":"355-181","ssn":"583-406-155","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":101,"firstName":"Alice","lastName":"Smith","maidenName":"Johnson","age":29,"gender":"female","email":"alice.smith@x.dummyjson.com","phone":"+61 611-556-8989","username":"alicej","password":"alicejpass","birthDate":"1996-9-8","image":"https://dummyjson.com/icon/alicej/128","bloodGroup":"AB-","height":171.67,"weight":56.25,"eyeColor":"Red","hair":{"color":"Black","type":"Straight"},"ip":"223.157.14.11","address":{"address":"1631 Fourth Street","city":"Houston","state":"Arkansas","stateCode":"AR","postalCode":"81896","coordinates":{"lat":-16.873954,"lng":118.766256},"country":"United States"},"macAddress":"f3:c3:7b:69:2e:ab","university":"Wake Forest University","bank":{"cardExpire":"07/27","cardNumber":"5560162465503729","cardType":"Mastercard","currency":"CNY","iban":"DE11729875884000312491"},"company":{"department":"Marketing","name":"Jast - Nader","title":"Product Manager","address":{"address":"144 Eighth Street","city":"Austin","state":"Delaware","stateCode":"DE","postalCode":"55767","coordinates":{"lat":25.070859,"lng":15.203994},"country":"United States"}},"ein":"560-590","ssn":"479-900-352","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":117,"firstName":"Amelia","lastName":"Perez","maidenName":"Gonzalez","age":44,"gender":"female","email":"amelia.perez@x.dummyjson.com","phone":"+49 751-988-9521","username":"ameliag","password":"ameliagpass","birthDate":"1981-1-29","image":"https://dummyjson.com/icon/ameliag/128","bloodGroup":"B+","height":186.66,"weight":80.38,"eyeColor":"Brown","hair":{"color":"Brown","type":"Wavy"},"ip":"249.222.49.78","address":{"address":"25 Elm Street","city":"New York","state":"New Hampshire","stateCode":"NH","postalCode":"88314","coordinates":{"lat":-55.895738,"lng":-117.829232},"country":"United States"},"macAddress":"1:64:41:63:ca:9e","university":"University of Michigan--Ann Arbor","bank":{"cardExpire":"05/30","cardNumber":"349189566293370","cardType":"American Express","currency":"EUR","iban":"IT88GLSNDVETYALH79DUSDQWYBNMA"},"company":{"department":"Services","name":"Swift - Stamm","title":"Chief Executive Officer","address":{"address":"1390 Pine Street","city":"Philadelphia","state":"Maine","stateCode":"ME","postalCode":"21632","coordinates":{"lat":-19.615702,"lng":42.511462},"country":"United States"}},"ein":"836-867","ssn":"769-496-865","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":38,"firstName":"Aria","lastName":"Roberts","maidenName":"","age":27,"gender":"female","email":"aria.roberts@x.dummyjson.com","phone":"+61 411-514-5320","username":"ariar","password":"ariarpass","birthDate":"1998-3-25","image":"https://dummyjson.com/icon/ariar/128","bloodGroup":"A-","height":199.62,"weight":88.96,"eyeColor":"Gray","hair":{"color":"Blue","type":"Curly"},"ip":"208.86.10.37","address":{"address":"560 Fifth Street","city":"Seattle","state":"Rhode Island","stateCode":"RI","postalCode":"70664","coordinates":{"lat":36.157244,"lng":-29.219594},"country":"United States"},"macAddress":"7d:16:14:f8:d5:4","university":"Princeton University","bank":{"cardExpire":"10/28","cardNumber":"372071021242970","cardType":"American Express","currency":"CAD","iban":"DE33897381873184367321"},"company":{"department":"Legal","name":"Sanford and Sons","title":"Database Administrator","address":{"address":"69 Ninth Street","city":"Chicago","state":"Ohio","stateCode":"OH","postalCode":"77252","coordinates":{"lat":-1.902962,"lng":15.129767},"country":"United States"}},"ein":"329-619","ssn":"631-656-511","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":66,"firstName":"Aria","lastName":"Ferguson","maidenName":"","age":28,"gender":"female","email":"aria.ferguson@x.dummyjson.com","phone":"+44 434-406-8551","username":"ariaf","password":"ariafpass","birthDate":"1997-6-1","image":"https://dummyjson.com/icon/ariaf/128","bloodGroup":"B+","height":161.81,"weight":97.12,"eyeColor":"Blue","hair":{"color":"Blue","type":"Wavy"},"ip":"180.24.111.167","address":{"address":"1553 Sixth Street","city":"San Diego","state":"Wyoming","stateCode":"WY","postalCode":"59501","coordinates":{"lat":-66.092723,"lng":169.9952},"country":"United States"},"macAddress":"e2:71:6d:81:6:db","university":"Cornell University","bank":{"cardExpire":"02/28","cardNumber":"5222769696858258","cardType":"Mastercard","currency":"GBP","iban":"GB93YU9GTP9S3UJCULWWWL"},"company":{"department":"Legal","name":"Wisozk, Schamberger and Huels","title":"Project Manager","address":{"address":"807 Eighth Street","city":"Phoenix","state":"New Jersey","stateCode":"NJ","postalCode":"75765","coordinates":{"lat":46.824227,"lng":-51.392185},"country":"United States"}},"ein":"952-671","ssn":"705-592-753","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":142,"firstName":"Aria","lastName":"Parker","maidenName":"Miller","age":28,"gender":"female","email":"aria.parker@x.dummyjson.com","phone":"+91 762-847-6884","username":"ariam","password":"ariampass","birthDate":"1997-7-6","image":"https://dummyjson.com/icon/ariam/128","bloodGroup":"AB-","height":164.79,"weight":92.15,"eyeColor":"Blue","hair":{"color":"Green","type":"Curly"},"ip":"112.164.28.147","address":{"address":"1504 Tenth Street","city":"Phoenix","state":"Alabama","stateCode":"AL","postalCode":"16573","coordinates":{"lat":56.943768,"lng":41.212736},"country":"United States"},"macAddress":"c1:1:6a:d:86:c4","university":"Stanford University","bank":{"cardExpire":"09/27","cardNumber":"6011811630030256","cardType":"Discover","currency":"INR","iban":"DE52636264791885715598"},"company":{"department":"Human Resources","name":"Oberbrunner, Mosciski and Witting","title":"Software Architect","address":{"address":"1103 Maple Street","city":"Los Angeles","state":"Kentucky","stateCode":"KY","postalCode":"37560","coordinates":{"lat":-5.555558,"lng":-6.162671},"country":"United States"}},"ein":"385-819","ssn":"889-374-959","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":188,"firstName":"Aria","lastName":"Flores","maidenName":"Martin","age":26,"gender":"female","email":"aria.flores@x.dummyjson.com","phone":"+61 415-771-8232","username":"ariamx","password":"ariamxpass","birthDate":"1999-11-8","image":"https://dummyjson.com/icon/ariamx/128","bloodGroup":"O-","height":160.06,"weight":92.02,"eyeColor":"Amber","hair":{"color":"Brown","type":"Wavy"},"ip":"86.67.36.191","address":{"address":"492 Pine Street","city":"Indianapolis","state":"Tennessee","stateCode":"TN","postalCode":"71284","coordinates":{"lat":-88.3996,"lng":22.908268},"country":"United States"},"macAddress":"9d:d1:19:e7:45:26","university":"Columbia University","bank":{"cardExpire":"07/30","cardNumber":"3568996021436297","cardType":"JCB","currency":"AUD","iban":"DE53096479676200434539"},"company":{"department":"Sales","name":"Gibson LLC","title":"Sales Manager","address":{"address":"1728 Sixth Street","city":"Fort Worth","state":"Nebraska","stateCode":"NE","postalCode":"74809","coordinates":{"lat":51.558679,"lng":-85.819219},"country":"United States"}},"ein":"784-961","ssn":"132-677-684","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":172,"firstName":"Ariana","lastName":"Ross","maidenName":"Ward","age":37,"gender":"female","email":"ariana.ross@x.dummyjson.com","phone":"+61 393-553-7155","username":"arianaw","password":"arianawpass","birthDate":"1988-9-26","image":"https://dummyjson.com/icon/arianaw/128","bloodGroup":"O-","height":164.81,"weight":50.3,"eyeColor":"Red","hair":{"color":"White","type":"Kinky"},"ip":"47.190.165.179","address":{"address":"911 First Street","city":"Chicago","state":"West Virginia","stateCode":"WV","postalCode":"59220","coordinates":{"lat":-39.772203,"lng":-90.030002},"country":"United States"},"macAddress":"e5:32:fa:4f:da:f3","university":"University of Virginia","bank":{"cardExpire":"08/27","cardNumber":"5267990819173310","cardType":"Mastercard","currency":"JPY","iban":"DE05893634226384406776"},"company":{"department":"Accounting","name":"Stiedemann LLC","title":"Engineer","address":{"address":"429 Madison Street","city":"Denver","state":"New Mexico","stateCode":"NM","postalCode":"86999","coordinates":{"lat":33.005004,"lng":125.026624},"country":"United States"}},"ein":"873-983","ssn":"479-571-715","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":173,"firstName":"Asher","lastName":"Scott","maidenName":"","age":31,"gender":"male","email":"asher.scott@x.dummyjson.com","phone":"+81 469-421-7639","username":"ashers","password":"asherspass","birthDate":"1994-8-18","image":"https://dummyjson.com/icon/ashers/128","bloodGroup":"O+","height":169.56,"weight":54.08,"eyeColor":"Blue","hair":{"color":"Blue","type":"Curly"},"ip":"150.136.12.36","address":{"address":"666 Main Street","city":"Dallas","state":"Vermont","stateCode":"VT","postalCode":"82460","coordinates":{"lat":-80.129031,"lng":-63.515107},"country":"United States"},"macAddress":"7f:1d:2a:a2:c0:29","university":"Columbia University","bank":{"cardExpire":"01/30","cardNumber":"6011589163616085","cardType":"Discover","currency":"EUR","iban":"FR915U90IRZVO9NSF11TNJ90JOZ"},"company":{"department":"Human Resources","name":"Ullrich LLC","title":"Sales Manager","address":{"address":"1640 Oak Street","city":"Washington","state":"Oklahoma","stateCode":"OK","postalCode":"29026","coordinates":{"lat":-29.790789,"lng":-43.572763},"country":"United States"}},"ein":"172-363","ssn":"744-472-971","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.3 Safari/605.1.15","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":88,"firstName":"Aubrey","lastName":"Wagner","maidenName":"","age":31,"gender":"female","email":"aubrey.wagner@x.dummyjson.com","phone":"+81 285-568-5834","username":"aubreyw","password":"aubreywpass","birthDate":"1994-4-1","image":"https://dummyjson.com/icon/aubreyw/128","bloodGroup":"B+","height":168.73,"weight":79.86,"eyeColor":"Red","hair":{"color":"Blonde","type":"Wavy"},"ip":"203.204.53.60","address":{"address":"1147 Adams Street","city":"Phoenix","state":"North Carolina","stateCode":"NC","postalCode":"72711","coordinates":{"lat":-55.796433,"lng":-163.621876},"country":"United States"},"macAddress":"5a:18:55:d7:84:b9","university":"Vanderbilt University","bank":{"cardExpire":"10/29","cardNumber":"3692710040595549","cardType":"Diners Club International","currency":"CAD","iban":"DE48679614573470291447"},"company":{"department":"Sales","name":"Cassin Group","title":"Engineer","address":{"address":"1580 Tenth Street","city":"San Jose","state":"New Jersey","stateCode":"NJ","postalCode":"33398","coordinates":{"lat":35.508597,"lng":12.058887},"country":"United States"}},"ein":"990-866","ssn":"678-854-911","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":158,"firstName":"Aubrey","lastName":"Gutierrez","maidenName":"Baker","age":37,"gender":"female","email":"aubrey.gutierrez@x.dummyjson.com","phone":"+92 881-268-9845","username":"aubreyb","password":"aubreybpass","birthDate":"1988-2-19","image":"https://dummyjson.com/icon/aubreyb/128","bloodGroup":"AB-","height":186.45,"weight":69.83,"eyeColor":"Brown","hair":{"color":"Black","type":"Wavy"},"ip":"19.183.244.21","address":{"address":"1207 Oak Street","city":"Philadelphia","state":"Connecticut","stateCode":"CT","postalCode":"78892","coordinates":{"lat":-3.033666,"lng":-35.006014},"country":"United States"},"macAddress":"41:7:7b:23:29:e9","university":"University of Illinois--Urbana-Champaign","bank":{"cardExpire":"10/29","cardNumber":"6011134098408991","cardType":"Discover","currency":"AUD","iban":"DE95703770320430230584"},"company":{"department":"Human Resources","name":"Kreiger and Sons","title":"Developer","address":{"address":"1549 Second Street","city":"Columbus","state":"Arkansas","stateCode":"AR","postalCode":"62481","coordinates":{"lat":85.690418,"lng":-48.156251},"country":"United States"}},"ein":"821-613","ssn":"642-178-241","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":205,"firstName":"Aubrey","lastName":"Garcia","maidenName":"Gray","age":29,"gender":"female","email":"aubrey.garcia@x.dummyjson.com","phone":"+1 470-576-9130","username":"aubreyg","password":"aubreygpass","birthDate":"1996-11-5","image":"https://dummyjson.com/icon/aubreyg/128","bloodGroup":"AB+","height":192.28,"weight":85.89,"eyeColor":"Brown","hair":{"color":"Red","type":"Curly"},"ip":"0.163.108.147","address":{"address":"1221 Washington Street","city":"Los Angeles","state":"South Carolina","stateCode":"SC","postalCode":"78498","coordinates":{"lat":80.449539,"lng":-142.231527},"country":"United States"},"macAddress":"fb:ae:f9:15:24:90","university":"Pepperdine University","bank":{"cardExpire":"01/29","cardNumber":"4922036660101826","cardType":"Visa","currency":"NZD","iban":"DE91641615994664908034"},"company":{"department":"Legal","name":"Moore Inc","title":"Web Developer","address":{"address":"240 Third Street","city":"San Francisco","state":"Minnesota","stateCode":"MN","postalCode":"58649","coordinates":{"lat":3.609112,"lng":-35.397672},"country":"United States"}},"ein":"428-615","ssn":"344-154-808","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":96,"firstName":"Aurora","lastName":"Lawson","maidenName":"","age":27,"gender":"female","email":"aurora.lawson@x.dummyjson.com","phone":"+92 802-452-4192","username":"auroral","password":"auroralpass","birthDate":"1998-6-16","image":"https://dummyjson.com/icon/auroral/128","bloodGroup":"O+","height":174.28,"weight":88.18,"eyeColor":"Violet","hair":{"color":"Green","type":"Wavy"},"ip":"161.244.58.227","address":{"address":"1140 Adams Street","city":"Dallas","state":"Minnesota","stateCode":"MN","postalCode":"29004","coordinates":{"lat":83.417744,"lng":-7.933044},"country":"United States"},"macAddress":"34:95:bd:59:f4:39","university":"Boston University","bank":{"cardExpire":"07/29","cardNumber":"5480171454066942","cardType":"Mastercard","currency":"GBP","iban":"GB36C9TE2MIXX12X8IJMLG"},"company":{"department":"Product Management","name":"Hudson - Marquardt","title":"Chief Information Officer","address":{"address":"164 Fifth Street","city":"Indianapolis","state":"New York","stateCode":"NY","postalCode":"27958","coordinates":{"lat":89.270633,"lng":-72.618747},"country":"United States"}},"ein":"477-337","ssn":"191-532-292","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:97.0) Gecko/20100101 Firefox/97.0","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":148,"firstName":"Aurora","lastName":"Barnes","maidenName":"Gomez","age":30,"gender":"female","email":"aurora.barnes@x.dummyjson.com","phone":"+91 403-842-9683","username":"aurorag","password":"auroragpass","birthDate":"1995-12-15","image":"https://dummyjson.com/icon/aurorag/128","bloodGroup":"B+","height":185.79,"weight":53.66,"eyeColor":"Green","hair":{"color":"Red","type":"Curly"},"ip":"204.17.198.20","address":{"address":"1184 Adams Street","city":"New York","state":"Idaho","stateCode":"ID","postalCode":"19201","coordinates":{"lat":-20.67407,"lng":107.281052},"country":"United States"},"macAddress":"8c:49:78:e2:70:b2","university":"Georgetown University","bank":{"cardExpire":"04/28","cardNumber":"3623396287064565","cardType":"Diners Club International","currency":"GBP","iban":"GB87US86D82O10U5WQ3949"},"company":{"department":"Sales","name":"Cassin Group","title":"Chief Financial Officer","address":{"address":"478 Ninth Street","city":"Phoenix","state":"Connecticut","stateCode":"CT","postalCode":"39433","coordinates":{"lat":-19.046529,"lng":48.682257},"country":"United States"}},"ein":"470-547","ssn":"310-708-861","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Edge/97.0.1072.76 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":180,"firstName":"Aurora","lastName":"Rodriguez","maidenName":"Nelson","age":32,"gender":"female","email":"aurora.rodriguez@x.dummyjson.com","phone":"+61 393-225-2755","username":"auroran","password":"auroranpass","birthDate":"1993-11-23","image":"https://dummyjson.com/icon/auroran/128","bloodGroup":"AB+","height":164.92,"weight":65.48,"eyeColor":"Brown","hair":{"color":"Black","type":"Kinky"},"ip":"127.15.107.0","address":{"address":"1388 Madison Street","city":"Chicago","state":"Missouri","stateCode":"MO","postalCode":"60765","coordinates":{"lat":11.918088,"lng":-78.222936},"country":"United States"},"macAddress":"a0:81:60:92:50:e9","university":"University of Virginia","bank":{"cardExpire":"01/29","cardNumber":"5491854809080174","cardType":"Mastercard","currency":"NZD","iban":"DE91340258026412696778"},"company":{"department":"Research and Development","name":"Runolfsson, Kohler and Welch","title":"Software Engineer","address":{"address":"1277 Third Street","city":"Chicago","state":"North Dakota","stateCode":"ND","postalCode":"37621","coordinates":{"lat":35.160252,"lng":-141.580146},"country":"United States"}},"ein":"225-878","ssn":"879-917-944","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":81,"firstName":"Austin","lastName":"Hudson","maidenName":"","age":30,"gender":"male","email":"austin.hudson@x.dummyjson.com","phone":"+81 405-412-4250","username":"austinh","password":"austinhpass","birthDate":"1995-5-1","image":"https://dummyjson.com/icon/austinh/128","bloodGroup":"A-","height":189.77,"weight":66.83,"eyeColor":"Blue","hair":{"color":"Blue","type":"Straight"},"ip":"147.130.253.116","address":{"address":"1468 Eighth Street","city":"Los Angeles","state":"Maryland","stateCode":"MD","postalCode":"64305","coordinates":{"lat":-28.392471,"lng":-44.144328},"country":"United States"},"macAddress":"e:c0:3:62:e2:d0","university":"University of Michigan--Ann Arbor","bank":{"cardExpire":"02/30","cardNumber":"6011463292832932","cardType":"Discover","currency":"GBP","iban":"GB912RDPFF9YXGMYS7IO14"},"company":{"department":"Sales","name":"Okuneva Group","title":"Legal Counsel","address":{"address":"1323 Adams Street","city":"Jacksonville","state":"Mississippi","stateCode":"MS","postalCode":"18643","coordinates":{"lat":-47.033335,"lng":-68.205081},"country":"United States"}},"ein":"536-921","ssn":"731-202-997","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":92,"firstName":"Autumn","lastName":"Gomez","maidenName":"","age":27,"gender":"female","email":"autumn.gomez@x.dummyjson.com","phone":"+1 340-455-2897","username":"autumng","password":"autumngpass","birthDate":"1998-2-1","image":"https://dummyjson.com/icon/autumng/128","bloodGroup":"A-","height":182.61,"weight":92.77,"eyeColor":"Amber","hair":{"color":"Purple","type":"Wavy"},"ip":"104.233.56.225","address":{"address":"1585 Washington Street","city":"Dallas","state":"Illinois","stateCode":"IL","postalCode":"53203","coordinates":{"lat":27.443768,"lng":-176.861979},"country":"United States"},"macAddress":"75:e4:8e:ea:ce:9d","university":"University of Chicago","bank":{"cardExpire":"09/29","cardNumber":"3618727858757814","cardType":"Diners Club International","currency":"GBP","iban":"GB512IQ7OY0FUSMWYQ1ZY7"},"company":{"department":"Product Management","name":"Kuhlman LLC","title":"Business Analyst","address":{"address":"1818 Jefferson Street","city":"Philadelphia","state":"New York","stateCode":"NY","postalCode":"69388","coordinates":{"lat":-46.202815,"lng":163.840848},"country":"United States"}},"ein":"411-642","ssn":"165-661-612","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":8,"firstName":"Ava","lastName":"Taylor","maidenName":"","age":28,"gender":"female","email":"ava.taylor@x.dummyjson.com","phone":"+1 458-853-7877","username":"avat","password":"avatpass","birthDate":"1997-8-25","image":"https://dummyjson.com/icon/avat/128","bloodGroup":"AB-","height":168.47,"weight":57.08,"eyeColor":"Hazel","hair":{"color":"Red","type":"Kinky"},"ip":"150.73.197.233","address":{"address":"1197 First Street","city":"Fort Worth","state":"Rhode Island","stateCode":"RI","postalCode":"24771","coordinates":{"lat":-81.194833,"lng":-87.948158},"country":"United States"},"macAddress":"8d:2e:c2:d6:e7:a8","university":"University of Wisconsin--Madison","bank":{"cardExpire":"08/30","cardNumber":"5349974103330333","cardType":"Mastercard","currency":"EUR","iban":"FR94ZM2MMGL1EVYQE1ZLCVCFH83"},"company":{"department":"Marketing","name":"Nikolaus Inc","title":"Chief Executive Officer","address":{"address":"930 Lincoln Street","city":"Austin","state":"Colorado","stateCode":"CO","postalCode":"47592","coordinates":{"lat":87.970083,"lng":-42.769351},"country":"United States"}},"ein":"297-762","ssn":"257-419-109","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"moderator"},{"id":54,"firstName":"Ava","lastName":"Harrison","maidenName":"","age":29,"gender":"female","email":"ava.harrison@x.dummyjson.com","phone":"+44 926-778-4653","username":"avah","password":"avahpass","birthDate":"1996-4-22","image":"https://dummyjson.com/icon/avah/128","bloodGroup":"O-","height":155.72,"weight":93.47,"eyeColor":"Hazel","hair":{"color":"Brown","type":"Curly"},"ip":"225.40.138.177","address":{"address":"1094 Adams Street","city":"San Antonio","state":"Vermont","stateCode":"VT","postalCode":"14336","coordinates":{"lat":-84.032892,"lng":-46.255902},"country":"United States"},"macAddress":"4e:2b:e4:33:7a:f8","university":"Harvard University","bank":{"cardExpire":"01/27","cardNumber":"3694482369735209","cardType":"Diners Club International","currency":"AUD","iban":"DE64412118002973670494"},"company":{"department":"Engineering","name":"Blanda - Jacobson","title":"Legal Counsel","address":{"address":"1374 Cedar Street","city":"Philadelphia","state":"Delaware","stateCode":"DE","postalCode":"21641","coordinates":{"lat":-56.564069,"lng":-134.42879},"country":"United States"}},"ein":"145-780","ssn":"621-536-422","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":121,"firstName":"Ava","lastName":"Harris","maidenName":"","age":30,"gender":"female","email":"ava.harris@x.dummyjson.com","phone":"+44 422-227-6412","username":"avahx","password":"avahxpass","birthDate":"1995-8-26","image":"https://dummyjson.com/icon/avahx/128","bloodGroup":"A-","height":199.36,"weight":63.3,"eyeColor":"Blue","hair":{"color":"Brown","type":"Wavy"},"ip":"23.127.175.229","address":{"address":"518 Elm Street","city":"San Antonio","state":"Florida","stateCode":"FL","postalCode":"35171","coordinates":{"lat":74.817644,"lng":15.72801},"country":"United States"},"macAddress":"4:c3:e9:35:23:2a","university":"University of Florida","bank":{"cardExpire":"02/30","cardNumber":"3622583668551978","cardType":"Diners Club International","currency":"JPY","iban":"DE72545287965967528178"},"company":{"department":"Marketing","name":"Lebsack Inc","title":"Engineer","address":{"address":"1495 First Street","city":"Columbus","state":"Alaska","stateCode":"AK","postalCode":"64989","coordinates":{"lat":18.943383,"lng":-136.717336},"country":"United States"}},"ein":"715-161","ssn":"906-771-261","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":16,"firstName":"Avery","lastName":"Perez","maidenName":"","age":26,"gender":"female","email":"avery.perez@x.dummyjson.com","phone":"+61 731-431-3457","username":"averyp","password":"averyppass","birthDate":"1999-3-10","image":"https://dummyjson.com/icon/averyp/128","bloodGroup":"O-","height":172.68,"weight":93.9,"eyeColor":"Brown","hair":{"color":"Green","type":"Curly"},"ip":"131.217.4.214","address":{"address":"1125 First Street","city":"Columbus","state":"Iowa","stateCode":"IA","postalCode":"30973","coordinates":{"lat":12.789127,"lng":85.792598},"country":"United States"},"macAddress":"b3:ff:f3:c5:37:46","university":"Harvard University","bank":{"cardExpire":"08/29","cardNumber":"378024038311910","cardType":"American Express","currency":"USD","iban":"DE42403186906981858976"},"company":{"department":"Accounting","name":"Herzog Inc","title":"Database Administrator","address":{"address":"183 Maple Street","city":"New York","state":"Rhode Island","stateCode":"RI","postalCode":"45238","coordinates":{"lat":-53.318189,"lng":105.835271},"country":"United States"}},"ein":"348-493","ssn":"679-523-686","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":42,"firstName":"Avery","lastName":"Carter","maidenName":"","age":29,"gender":"female","email":"avery.carter@x.dummyjson.com","phone":"+44 254-655-6112","username":"averyc","password":"averycpass","birthDate":"1996-8-21","image":"https://dummyjson.com/icon/averyc/128","bloodGroup":"B-","height":179.92,"weight":59.37,"eyeColor":"Blue","hair":{"color":"Blue","type":"Straight"},"ip":"187.69.252.251","address":{"address":"1999 Seventh Street","city":"San Diego","state":"West Virginia","stateCode":"WV","postalCode":"13916","coordinates":{"lat":-59.303292,"lng":-87.318538},"country":"United States"},"macAddress":"f0:9a:ba:d9:48:d5","university":"Yale University","bank":{"cardExpire":"09/30","cardNumber":"3617114029166871","cardType":"Diners Club International","currency":"AUD","iban":"DE93605312121879910330"},"company":{"department":"Support","name":"Schmidt - Hyatt","title":"Sales Manager","address":{"address":"979 Tenth Street","city":"San Jose","state":"New York","stateCode":"NY","postalCode":"59824","coordinates":{"lat":-5.788002,"lng":88.846665},"country":"United States"}},"ein":"854-428","ssn":"902-510-406","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"}],"total":208,"skip":0,"limit":30}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Retrieves all shopping carts associated with a specific user by their user ID.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/users/4/carts`
## Authentication
- **Required**: No
- This is a public endpoint that doesn't require authentication
## Parameters
### Path Variables
- `userId` (required) - The unique identifier of the user whose carts to retrieve
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
{
"carts": [
{
"id": 1,
"products": [
{
"id": 1,
"title": "Product Name",
"price": 549,
"quantity": 2,
"total": 1098
}
],
"total": 1098,
"discountedTotal": 985,
"userId": 1,
"totalProducts": 1,
"totalQuantity": 2
}
],
"total": 3,
"skip": 0,
"limit": 30
}
```
## Tests Included
- Validates response status code is 200
- Verifies all carts belong to specified user
- Checks carts array structure
- Confirms cart totals and product details
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDIsImV4cCI6MTc2OTk2NDgwMn0.eOl4rlRcy1_4uC78oP3cgGELQZbvAxI6k8OJ-wFOSs0 |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | bc596163-98da-4906-ba8b-6fb191bf0517 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:33 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 97 |
| x-ratelimit-reset | 1769961219 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"29-eepc+18O6U8zRJowEIQsenFBqoU" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=OPqgCWr2f9AbljWQjYbPgw5btCknoT%2BTCZUUKqcNU7uR8Ti5I5ZVOXoZTlS5PCyp3KBWi2EFXkYhHOMY7KqZ1Zo8htIfg55KT3fAT6s%3D"}]} |
| Content-Encoding | br |
| CF-RAY | 9c729f4c796a2891-AMM |
{"carts":[],"total":0,"skip":0,"limit":0}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Retrieves all posts created by a specific user by their user ID.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/users/4/posts`
## Authentication
- **Required**: No
- This is a public endpoint that doesn't require authentication
## Parameters
### Path Variables
- `userId` (required) - The unique identifier of the user whose posts to retrieve
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
{
"posts": [
{
"id": 1,
"title": "Post Title",
"body": "Post content...",
"tags": ["tag1", "tag2"],
"reactions": {
"likes": 10,
"dislikes": 2
},
"views": 150,
"userId": 1
}
],
"total": 5,
"skip": 0,
"limit": 30
}
```
## Tests Included
- Validates response status code is 200
- Verifies all posts belong to specified user
- Checks posts array structure
- Confirms post fields (title, body, tags, reactions)
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDIsImV4cCI6MTc2OTk2NDgwMn0.eOl4rlRcy1_4uC78oP3cgGELQZbvAxI6k8OJ-wFOSs0 |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 6f62e6a9-7af2-44d4-bf08-7d08a5d7abad |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:33 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 96 |
| x-ratelimit-reset | 1769961219 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"29-xwojxKfZ82dFWetrHAY/LBMOM7Y" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=i6DL8KRCsraJx2VqhXC9OQXLkvmFLUpF8TmvSlXuAoKinYrDaNhL5tbS2GUjkTlxhteMsxQ1sJhYVpeC8%2B7pldhOjbs9q47Z%2F0sdbGs%3D"}]} |
| Content-Encoding | br |
| CF-RAY | 9c729f4e0b352891-AMM |
{"posts":[],"total":0,"skip":0,"limit":0}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Creates a new user in the system with the provided user details.
## Method & Endpoint
- **Method**: `POST`
- **Endpoint**: `https://dummyjson.com/users/add`
## Authentication
- **Required**: No
- This is a public endpoint for demonstration purposes
## Parameters
### Request Body (JSON)
```json
{
"firstName": "John",
"lastName": "Doe",
"email": "john.doe@example.com",
"username": "johndoe",
"password": "password123",
"age": 30,
"gender": "male",
"phone": "+1-555-123-4567"
}
```
**Required Fields**:
- `firstName` - User's first name
- `lastName` - User's last name
- `email` - User's email address
- `username` - Unique username
- `password` - User's password
**Optional Fields**:
- `age`, `gender`, `phone`, `birthDate`, `address`, `company`
## Expected Response
- **Status Code**: `201 Created`
- **Response Structure**: Returns the created user with an assigned ID
```json
{
"id": 209,
"firstName": "John",
"lastName": "Doe",
"email": "john.doe@example.com",
"username": "johndoe",
...
}
```
## Tests Included
- Validates response status code is 201
- Verifies user ID is assigned
- Checks all submitted fields are returned
- Confirms user creation timestamp
| Header Name | Header Value |
|---|---|
| Content-Type | application/json |
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDIsImV4cCI6MTc2OTk2NDgwMn0.eOl4rlRcy1_4uC78oP3cgGELQZbvAxI6k8OJ-wFOSs0 |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | a64af90d-01af-4480-9dda-4f37eecf24d9 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 70 |
{
"firstName": "Muhammad",
"lastName": "Ovi",
"age": 250
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:33 GMT |
| Content-Type | application/json; charset=utf-8 |
| Content-Length | 769 |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 95 |
| x-ratelimit-reset | 1769961220 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"301-gKnmafr9l9B8nywhCgSqj6WVp/E" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=ZGQNDRXIZ8TFd7zaqXet0vf16%2FAe%2FUg3ag%2Fq3tpsd0MEeQeRhAxLzvXiV%2FXSPSW9WiZ38GJW6853WXUx2%2FWo%2FRD48H%2FPZMnS16CdvQY%3D"}]} |
| CF-RAY | 9c729f4fbcf62891-AMM |
{"id":209,"firstName":"Muhammad","lastName":"Ovi","maidenName":"","age":250,"gender":"","email":"","phone":"","username":"","password":"","birthDate":"","image":"","bloodGroup":"","height":null,"weight":null,"eyeColor":"","hair":{"color":"","type":""},"ip":"","address":{"address":"","city":"","state":"","stateCode":"","postalCode":"","coordinates":{"lat":null,"lng":null},"country":""},"macAddress":"","university":"","bank":{"cardExpire":"","cardNumber":"","cardType":"","currency":"","iban":""},"company":{"department":"","name":"","title":"","address":{"address":"","city":"","state":"","stateCode":"","postalCode":"","coordinates":{"lat":null,"lng":null},"country":""}},"ein":"","ssn":"","userAgent":"","crypto":{"coin":"","wallet":"","network":""},"role":"user"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 201 | 1 | 0 | 0 |
| firstName and lastName are correct | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 3 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Updates an existing user's information by their unique identifier.
## Method & Endpoint
- **Method**: `PUT`
- **Endpoint**: `https://dummyjson.com/users/4`
## Authentication
- **Required**: No
- This is a public endpoint for demonstration purposes
## Parameters
### Path Variables
- `userId` (required) - The unique identifier of the user to update
### Request Body (JSON)
```json
{
"firstName": "Jane",
"lastName": "Smith",
"email": "jane.smith@example.com",
"age": 32,
"phone": "+1-555-987-6543"
}
```
**Note**: Only include fields you want to update. Unspecified fields remain unchanged.
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**: Returns the updated user with all fields
```json
{
"id": 1,
"firstName": "Jane",
"lastName": "Smith",
"email": "jane.smith@example.com",
"age": 32,
"phone": "+1-555-987-6543",
...
}
```
## Tests Included
- Validates response status code is 200
- Verifies updated fields match request
- Checks user ID remains unchanged
- Confirms other fields are preserved
| Header Name | Header Value |
|---|---|
| Content-Type | application/json |
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDIsImV4cCI6MTc2OTk2NDgwMn0.eOl4rlRcy1_4uC78oP3cgGELQZbvAxI6k8OJ-wFOSs0 |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 4e993d47-3459-451a-a678-0212fe16743c |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 29 |
{
"lastName": "Owais"
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:33 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 94 |
| x-ratelimit-reset | 1769961220 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"577-AaYYXx8pEPShiBPHOWYz6WVHMB4" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=V65R9h%2BlznTi5Ablv2DYXpezHbQe0LoHirfPcBVsB8ARCoUCY8jP4%2BW6foawk%2BAf8CkA7e7N3T901gVlUKaPPjNUwayjFaiGbroULd4%3D"}]} |
| CF-RAY | 9c729f510e712891-AMM |
{"id":4,"firstName":"James","lastName":"Owais","maidenName":"","age":46,"gender":"male","email":"james.davis@x.dummyjson.com","phone":"+49 614-958-9364","username":"jamesd","password":"jamesdpass","birthDate":"1979-5-4","image":"https://dummyjson.com/icon/jamesd/128","bloodGroup":"AB+","height":193.31,"weight":62.1,"eyeColor":"Amber","hair":{"color":"Blonde","type":"Straight"},"ip":"101.118.131.66","address":{"address":"238 Jefferson Street","city":"Seattle","state":"Pennsylvania","stateCode":"PA","postalCode":"68354","coordinates":{"lat":16.782513,"lng":-139.34723},"country":"United States"},"macAddress":"10:7d:df:1f:97:58","university":"University of Southern California","bank":{"cardExpire":"07/30","cardNumber":"5303440212268149","cardType":"Mastercard","currency":"CAD","iban":"DE01300746880579852937"},"company":{"department":"Support","name":"Pagac and Sons","title":"Research Analyst","address":{"address":"1622 Lincoln Street","city":"Fort Worth","state":"Pennsylvania","stateCode":"PA","postalCode":"27768","coordinates":{"lat":54.91193,"lng":-79.498328},"country":"United States"}},"ein":"904-810","ssn":"116-951-314","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"admin"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Deletes a specific user from the system by their unique identifier.
## Method & Endpoint
- **Method**: `DELETE`
- **Endpoint**: `https://dummyjson.com/users/4`
## Authentication
- **Required**: No
- This is a public endpoint for demonstration purposes
## Parameters
### Path Variables
- `userId` (required) - The unique identifier of the user to delete
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**: Returns the deleted user information with deletion confirmation
```json
{
"id": 1,
"firstName": "Emily",
"lastName": "Johnson",
"email": "emily.johnson@x.dummyjson.com",
"username": "emilys",
"isDeleted": true,
"deletedOn": "2024-01-01T12:00:00.000Z",
...
}
```
## Tests Included
- Validates response status code is 200
- Verifies `isDeleted` flag is true
- Checks deletion timestamp is present
- Confirms deleted user details are returned
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDIsImV4cCI6MTc2OTk2NDgwMn0.eOl4rlRcy1_4uC78oP3cgGELQZbvAxI6k8OJ-wFOSs0 |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 5a0b3973-ca0f-4bef-b675-0eb5cdf9269f |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:34 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 99 |
| x-ratelimit-reset | 1769961223 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"5af-Zb3xD0o8MiRW0J2gMdZhuSlwzGc" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=pfMsBEsCxRF%2BEE8h8ytUlIAZ0Dy%2FC%2F8%2BGWZQ2BzHKeONYxEyCMvBXPTq%2Fj42fJIG5ShZKgOgN%2FrLOXN962xq5OYwHUj8ZaAxbpT%2FKP8%3D"}]} |
| CF-RAY | 9c729f52a84e2891-AMM |
{"id":4,"firstName":"James","lastName":"Davis","maidenName":"","age":46,"gender":"male","email":"james.davis@x.dummyjson.com","phone":"+49 614-958-9364","username":"jamesd","password":"jamesdpass","birthDate":"1979-5-4","image":"https://dummyjson.com/icon/jamesd/128","bloodGroup":"AB+","height":193.31,"weight":62.1,"eyeColor":"Amber","hair":{"color":"Blonde","type":"Straight"},"ip":"101.118.131.66","address":{"address":"238 Jefferson Street","city":"Seattle","state":"Pennsylvania","stateCode":"PA","postalCode":"68354","coordinates":{"lat":16.782513,"lng":-139.34723},"country":"United States"},"macAddress":"10:7d:df:1f:97:58","university":"University of Southern California","bank":{"cardExpire":"07/30","cardNumber":"5303440212268149","cardType":"Mastercard","currency":"CAD","iban":"DE01300746880579852937"},"company":{"department":"Support","name":"Pagac and Sons","title":"Research Analyst","address":{"address":"1622 Lincoln Street","city":"Fort Worth","state":"Pennsylvania","stateCode":"PA","postalCode":"27768","coordinates":{"lat":54.91193,"lng":-79.498328},"country":"United States"}},"ein":"904-810","ssn":"116-951-314","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"admin","isDeleted":true,"deletedOn":"2026-02-01T15:53:33.935Z"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
# Login User and Get Tokens
## Overview
This endpoint authenticates users with the DummyJSON API and returns access tokens for subsequent authenticated requests. Upon successful authentication, the user receives both an access token and refresh token, along with their profile information.
---
## Request Details
### Endpoint
- **URL**: `https://dummyjson.com/auth/login`
- **Method**: `POST`
- **Content-Type**: `application/json`
### Required Body Parameters
| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `username` | string | Yes | The user's username for authentication |
| `password` | string | Yes | The user's password for authentication |
### Example Request Body
```json
{
"username": "emilys",
"password": "emilyspass"
}
```
---
## Response Structure
### Success Response (200 OK)
The API returns a JSON object containing authentication tokens and user profile information:
| Field | Type | Description |
|-------|------|-------------|
| `accessToken` | string | JWT token used for authenticating subsequent API requests |
| `refreshToken` | string | Token used to refresh the access token when it expires |
| `id` | number | Unique identifier for the authenticated user |
| `username` | string | The user's username |
| `email` | string | The user's email address |
| `firstName` | string | The user's first name |
| `lastName` | string | The user's last name |
| `gender` | string | The user's gender |
| `image` | string | URL to the user's profile image |
### Example Response
```json
{
"accessToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
"refreshToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
"id": 1,
"username": "emilys",
"email": "emily.johnson@x.dummyjson.com",
"firstName": "Emily",
"lastName": "Johnson",
"gender": "female",
"image": "https://dummyjson.com/icon/emilys/128"
}
```
---
## Authentication Flow
1. **Send Login Request**: Submit username and password to the `/auth/login` endpoint
2. **Receive Tokens**: Upon successful authentication, receive `accessToken` and `refreshToken`
3. **Automatic Storage**: The `accessToken` is automatically extracted from the response and stored in the `eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDIsImV4cCI6MTc2OTk2NDgwMn0.eOl4rlRcy1_4uC78oP3cgGELQZbvAxI6k8OJ-wFOSs0` environment variable via the post-response script
4. **Use Token**: The stored token is then available for use in subsequent authenticated requests via the `eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDIsImV4cCI6MTc2OTk2NDgwMn0.eOl4rlRcy1_4uC78oP3cgGELQZbvAxI6k8OJ-wFOSs0` variable
5. **Token Usage**: Include the access token in the `Authorization` header as `Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDIsImV4cCI6MTc2OTk2NDgwMn0.eOl4rlRcy1_4uC78oP3cgGELQZbvAxI6k8OJ-wFOSs0` for protected endpoints
---
## Automated Tests
This request includes comprehensive automated tests that validate the response:
### Test Suite
1. **Status Code Validation**
- Verifies the response status code is `200 OK`
- Ensures successful authentication
2. **Access Token Validation**
- Checks that the `accessToken` field exists in the response
- Confirms the token is returned for authentication
3. **Required Fields Validation**
- Validates presence of essential fields: `id`, `username`, `accessToken`
- Ensures complete user data is returned
4. **Response Time Check**
- Verifies the API responds within 2000ms (2 seconds)
- Monitors performance and ensures acceptable response times
All tests run automatically after the request is sent, providing immediate feedback on the authentication process.
---
## Integration with Authentication Workflow
This endpoint is the **entry point** for the authentication workflow in this collection:
1. **First Step**: This is typically the first request to execute when working with authenticated endpoints
2. **Token Generation**: Generates the access token required for protected resources
3. **Environment Setup**: Automatically configures the environment with the necessary authentication credentials
4. **Subsequent Requests**: Other requests in the collection (like "Get Current auth User", "Refresh auth Session") depend on the token generated here
5. **Session Management**: The refresh token can be used with the "Refresh auth Session" endpoint to obtain a new access token without re-authenticating
---
## Notes
- **Test Credentials**: The example uses test credentials (`emilys` / `emilyspass`) from the DummyJSON demo API
- **Token Expiration**: Access tokens may expire after a certain period; use the refresh token to obtain a new one
- **Security**: In production environments, always use HTTPS and never hardcode credentials
- **Environment Variables**: Ensure the `https://dummyjson.com` variable is set to `https://dummyjson.com` in your active environment
| Header Name | Header Value |
|---|---|
| Content-Type | application/json |
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMDIsImV4cCI6MTc2OTk2NDgwMn0.eOl4rlRcy1_4uC78oP3cgGELQZbvAxI6k8OJ-wFOSs0 |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 0bd770eb-4446-4a13-a4fd-d0889aa90015 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 69 |
{
"username": "emilys",
"password": "emilyspass"
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:34 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 93 |
| x-ratelimit-reset | 1769961220 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| Set-Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc2OTk2NDgxNH0.uuohp2mmjoHfFSzONdqq4-X1oN1EKoS3diOfBuRRnzw; Max-Age=3600; Path=/; Expires=Sun, 01 Feb 2026 16:53:34 GMT; HttpOnly; Secure |
| Set-Cookie | refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc3MjU1MzIxNH0.LZL0vutKADwuToKtiMUv4mQRr36Om2xhN7o_PeCKfUY; Max-Age=3600; Path=/; Expires=Sun, 01 Feb 2026 16:53:34 GMT; HttpOnly; Secure |
| etag | W/"3a2-UUsxhPDpRgIsdknpU32szyt900s" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=p3dWA%2B%2BKeslq07KsSy52z7p97owg8026Tsde4bgrOymay0EL0XRRQ%2BJq6gv0OMJxMQIoXIoSQvpdNtjnW6%2BqafDXt0IZG%2BHfqM7IVFo%3D"}]} |
| Content-Encoding | br |
| CF-RAY | 9c729f545a862891-AMM |
{"accessToken":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc2OTk2NDgxNH0.uuohp2mmjoHfFSzONdqq4-X1oN1EKoS3diOfBuRRnzw","refreshToken":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc3MjU1MzIxNH0.LZL0vutKADwuToKtiMUv4mQRr36Om2xhN7o_PeCKfUY","id":1,"username":"emilys","email":"emily.johnson@x.dummyjson.com","firstName":"Emily","lastName":"Johnson","gender":"female","image":"https://dummyjson.com/icon/emilys/128"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Access token exists | 1 | 0 | 0 |
| Required fields exist | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 4 | 0 | 0 |
| Test Name | Assertion Error |
|---|
# Get Authenticated User
## Description
This endpoint retrieves the complete profile information of the currently authenticated user. It returns detailed user data including personal information, contact details, address, company information, and account metadata.
## Authentication
**Required**: Bearer Token
This endpoint requires authentication via a Bearer token in the Authorization header. The token must be obtained first by logging in through the `/auth/login` endpoint.
```
Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc2OTk2NDgxNH0.uuohp2mmjoHfFSzONdqq4-X1oN1EKoS3diOfBuRRnzw
```
## Request
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/auth/me`
- **Headers**:
- `Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc2OTk2NDgxNH0.uuohp2mmjoHfFSzONdqq4-X1oN1EKoS3diOfBuRRnzw`
## Response
### Success Response (200 OK)
Returns a JSON object containing the authenticated user's complete profile:
```json
{
"id": 1,
"firstName": "Emily",
"lastName": "Johnson",
"maidenName": "Smith",
"age": 29,
"gender": "female",
"email": "emily.johnson@x.dummyjson.com",
"phone": "+81 965-431-3024",
"username": "emilys",
"birthDate": "1996-5-30",
"image": "https://dummyjson.com/icon/emilys/128",
"bloodGroup": "O-",
"height": 193.24,
"weight": 63.16,
"eyeColor": "Green",
"hair": {
"color": "Brown",
"type": "Curly"
},
"address": {
"address": "626 Main Street",
"city": "Phoenix",
"state": "Mississippi",
"stateCode": "MS",
"postalCode": "29112",
"coordinates": {
"lat": -77.16213,
"lng": -92.084824
},
"country": "United States"
},
"company": {
"department": "Engineering",
"name": "Dooley, Kozey and Cronin",
"title": "Sales Manager",
"address": { ... }
},
"bank": {
"cardExpire": "05/28",
"cardNumber": "3693233511855044",
"cardType": "Diners Club International",
"currency": "GBP",
"iban": "GB74MH2UZLR9TRPHYNU8F8"
},
"role": "admin"
}
```
### Response Fields
| Field | Type | Description |
|-------|------|-------------|
| `id` | integer | Unique user identifier |
| `username` | string | User's login username |
| `firstName` | string | User's first name |
| `lastName` | string | User's last name |
| `email` | string | User's email address |
| `phone` | string | User's phone number |
| `age` | integer | User's age |
| `gender` | string | User's gender |
| `birthDate` | string | User's date of birth |
| `image` | string | URL to user's profile image |
| `address` | object | User's address information including coordinates |
| `company` | object | User's company and employment details |
| `bank` | object | User's banking information |
| `role` | string | User's role/permission level |
## Use Cases
1. **Profile Display**: Fetch user data to display on a profile page or dashboard
2. **Session Validation**: Verify that the current authentication token is valid and retrieve associated user
3. **Personalization**: Get user preferences and information to customize the application experience
4. **Authorization Checks**: Retrieve user role and permissions for access control
5. **User Context**: Obtain user details for logging, analytics, or audit trails
## Example Usage
### JavaScript (Fetch API)
```javascript
const response = await fetch('https://dummyjson.com/auth/me', {
method: 'GET',
headers: {
'Authorization': `Bearer ${accessToken}`,
'Content-Type': 'application/json'
}
});
const userData = await response.json();
console.log(`Welcome, ${userData.firstName}!`);
```
### cURL
```bash
curl -X GET 'https://dummyjson.com/auth/me' \
-H 'Authorization: Bearer YOUR_ACCESS_TOKEN'
```
## Notes
- **Token Expiration**: If the Bearer token has expired, this endpoint will return an authentication error. Use the `/auth/refresh` endpoint to obtain a new token.
- **Sensitive Data**: The response includes sensitive information like banking details. Ensure proper security measures when handling this data.
- **Response Time**: Expected response time is under 2 seconds (validated by automated tests).
- **Required Fields**: The response always includes `id` and `username` fields (validated by automated tests).
- **No Parameters**: This endpoint does not accept any query parameters or request body.
## Error Responses
### 401 Unauthorized
Returned when the Bearer token is missing, invalid, or expired.
```json
{
"message": "Authentication required"
}
```
### 403 Forbidden
Returned when the token is valid but lacks necessary permissions.
## Related Endpoints
- `POST /auth/login` - Obtain access token
- `POST /auth/refresh` - Refresh expired token
- `PUT /users/{userId}` - Update user information
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc2OTk2NDgxNH0.uuohp2mmjoHfFSzONdqq4-X1oN1EKoS3diOfBuRRnzw |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 797c7874-ea3d-4815-bd83-91a80ab3c809 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc2OTk2NDgxNH0.uuohp2mmjoHfFSzONdqq4-X1oN1EKoS3diOfBuRRnzw; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc3MjU1MzIxNH0.LZL0vutKADwuToKtiMUv4mQRr36Om2xhN7o_PeCKfUY |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:34 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 98 |
| x-ratelimit-reset | 1769961223 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"58f-CoL/KoXlW3x1PtqQr3wqPsXj6DE" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=QTAXsXftfCz7eWHE3jCQ6%2F1RoDGP1EE%2BN8sTSBohgvCc3mG8EYp1Hyj%2FllpCR9PO6Uet%2F4%2BAn418KYJk9wbZTCJSzt%2BMixQGxWuCuJg%3D"}]} |
| CF-RAY | 9c729f564cad2891-AMM |
{"id":1,"firstName":"Emily","lastName":"Johnson","maidenName":"Smith","age":29,"gender":"female","email":"emily.johnson@x.dummyjson.com","phone":"+81 965-431-3024","username":"emilys","password":"emilyspass","birthDate":"1996-5-30","image":"https://dummyjson.com/icon/emilys/128","bloodGroup":"O-","height":193.24,"weight":63.16,"eyeColor":"Green","hair":{"color":"Brown","type":"Curly"},"ip":"42.48.100.32","address":{"address":"626 Main Street","city":"Phoenix","state":"Mississippi","stateCode":"MS","postalCode":"29112","coordinates":{"lat":-77.16213,"lng":-92.084824},"country":"United States"},"macAddress":"47:fa:41:18:ec:eb","university":"University of Wisconsin--Madison","bank":{"cardExpire":"05/28","cardNumber":"3693233511855044","cardType":"Diners Club International","currency":"GBP","iban":"GB74MH2UZLR9TRPHYNU8F8"},"company":{"department":"Engineering","name":"Dooley, Kozey and Cronin","title":"Sales Manager","address":{"address":"263 Tenth Street","city":"San Francisco","state":"Wisconsin","stateCode":"WI","postalCode":"37657","coordinates":{"lat":71.814525,"lng":-161.150263},"country":"United States"}},"ein":"977-175","ssn":"900-590-289","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"admin"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| User content is correct | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 3 | 0 | 0 |
| Test Name | Assertion Error |
|---|
# Refresh Authentication Session
## Overview
This endpoint refreshes an existing authentication session by generating a new access token and refresh token pair. Use this endpoint when your current access token is about to expire or has expired, allowing you to maintain an authenticated session without requiring the user to log in again.
---
## Endpoint Details
**Method:** `POST`
**Path:** `https://dummyjson.com/auth/refresh`
---
## Request Body
The request requires a JSON payload with the following parameters:
| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `refreshToken` | string | Yes | The current valid refresh token (or access token) used to generate new tokens |
| `expiresInMins` | integer | Yes | The desired expiration time for the new access token in minutes (e.g., 30) |
### Example Request Body
```json
{
"refreshToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc2OTk2NDgxNH0.uuohp2mmjoHfFSzONdqq4-X1oN1EKoS3diOfBuRRnzw",
"expiresInMins": 30
}
```
---
## Response Format
### Success Response (200 OK)
Returns a JSON object containing new authentication tokens:
```json
{
"accessToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
"refreshToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."
}
```
| Field | Type | Description |
|-------|------|-------------|
| `accessToken` | string | New JWT access token for authenticated requests |
| `refreshToken` | string | New refresh token for future token refresh operations |
---
## Authentication Requirements
- Requires a valid refresh token (or access token) in the request body
- No additional authentication headers required for this endpoint
- The provided token must not be expired or invalid
---
## Use Cases
### When to Use This Endpoint
1. **Token Expiration Prevention**: Proactively refresh tokens before they expire to maintain uninterrupted access
2. **Expired Token Recovery**: Obtain new tokens when your access token has expired
3. **Session Extension**: Extend user sessions without requiring re-authentication
4. **Security Best Practices**: Regularly rotate tokens to minimize security risks
### Typical Workflow
```
1. User logs in → Receives accessToken and refreshToken
2. User makes authenticated requests using accessToken
3. Before accessToken expires → Call /auth/refresh
4. Receive new accessToken and refreshToken
5. Update stored tokens and continue making requests
```
---
## Important Notes
### Token Expiration
- Access tokens have a limited lifespan defined by `expiresInMins`
- The default expiration is typically 30 minutes
- Refresh tokens generally have a longer lifespan than access tokens
- Always store the new tokens returned from this endpoint
### Best Practices
- **Automatic Refresh**: Implement automatic token refresh logic in your application
- **Token Storage**: Securely store both access and refresh tokens (use environment variables in Postman)
- **Error Handling**: If refresh fails, redirect users to login again
- **Token Rotation**: Update both tokens after each refresh for enhanced security
### Error Scenarios
If the refresh token is invalid or expired, you will receive an error response and must authenticate again using the `/auth/login` endpoint.
---
## Related Endpoints
- **Login**: `POST https://dummyjson.com/auth/login` - Initial authentication to obtain tokens
- **Get Current User**: `GET https://dummyjson.com/auth/me` - Verify token validity and get user info
| Header Name | Header Value |
|---|---|
| Content-Type | application/json |
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc2OTk2NDgxNH0.uuohp2mmjoHfFSzONdqq4-X1oN1EKoS3diOfBuRRnzw |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | d1c0b3ef-3638-4b5a-82a2-1c7ba4ab5c79 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 414 |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc2OTk2NDgxNH0.uuohp2mmjoHfFSzONdqq4-X1oN1EKoS3diOfBuRRnzw; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc3MjU1MzIxNH0.LZL0vutKADwuToKtiMUv4mQRr36Om2xhN7o_PeCKfUY |
{
"refreshToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc2OTk2NDgxNH0.uuohp2mmjoHfFSzONdqq4-X1oN1EKoS3diOfBuRRnzw",
"expiresInMins": 30
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:34 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 95 |
| x-ratelimit-reset | 1769961217 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| Set-Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc2OTk2MzAxNH0.u-5rlixn4JRTk12Tro8TNtUk3c24CZ3602naTGMIVzc; Max-Age=1800; Path=/; Expires=Sun, 01 Feb 2026 16:23:34 GMT; HttpOnly; Secure |
| Set-Cookie | refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc3MjU1MzIxNH0.LZL0vutKADwuToKtiMUv4mQRr36Om2xhN7o_PeCKfUY; Max-Age=1800; Path=/; Expires=Sun, 01 Feb 2026 16:23:34 GMT; HttpOnly; Secure |
| etag | W/"2f4-zvDn4avKQF42XgH6imDI3DkkDRs" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=mG%2BE1%2FX9cj0EcNiFnhc6g82nMnyDxP6SqnYwXYeX1ca5ThccpjPVJvJYbRNsqeL2JNykiKEE3GMMtjuGVjng8iPVtjzzSBSp1z8J0M4%3D"}]} |
| Content-Encoding | br |
| CF-RAY | 9c729f57de8e2891-AMM |
{"accessToken":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc2OTk2MzAxNH0.u-5rlixn4JRTk12Tro8TNtUk3c24CZ3602naTGMIVzc","refreshToken":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc3MjU1MzIxNH0.LZL0vutKADwuToKtiMUv4mQRr36Om2xhN7o_PeCKfUY"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Access token is present | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 3 | 0 | 0 |
| Test Name | Assertion Error |
|---|
# Negative Test: Refresh Authentication Session with Invalid Token
## Overview
This is a **negative test case** designed to validate the API's error handling when attempting to refresh an authentication session using an invalid or expired refresh token.
## Purpose
Tests the authentication refresh endpoint's ability to properly reject and handle invalid refresh token requests, ensuring the API maintains security standards by not allowing unauthorized session refreshes.
## Expected Behavior
- **Status Code**: `401 Unauthorized` or `403 Forbidden`
- **Response Body**: Should contain an error message indicating the token is invalid
- **Security**: The API must reject the request and not generate a new access token
## Request Details
### Endpoint
`POST https://dummyjson.com/auth/refresh`
### Request Body Parameters
| Parameter | Type | Value | Description |
|-----------|------|-------|-------------|
| `refreshToken` | string | `"expired_invalid_token_xyz"` | An intentionally invalid/expired refresh token |
| `expiresInMins` | integer | `30` | Requested token expiration time in minutes |
### Test Scenario
This request deliberately sends an invalid refresh token (`expired_invalid_token_xyz`) to verify the API properly rejects unauthorized refresh attempts.
## Test Validations
The following automated tests are executed on the response:
1. **Status Code Validation**: Verifies the response status code is either `401` or `403`
2. **Error Message Validation**: Confirms the response contains an error message field that is a string
## Use Case & Importance
### Security Validation
This negative test is critical for API security because it:
- **Prevents Token Forgery**: Ensures attackers cannot use fabricated tokens to gain unauthorized access
- **Validates Token Expiration**: Confirms expired tokens are properly rejected
- **Error Handling**: Verifies appropriate error messages are returned to clients
- **Session Security**: Protects against session hijacking attempts
### Real-World Scenarios
This test simulates situations where:
- A user's refresh token has expired
- An attacker attempts to use a stolen or guessed token
- A client application has cached an old/invalid token
- Network issues caused token corruption
By validating proper rejection of invalid tokens, this test ensures the authentication system maintains its security integrity and provides clear feedback for troubleshooting legitimate authentication issues.
| Header Name | Header Value |
|---|---|
| Content-Type | application/json |
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc2OTk2NDgxNH0.uuohp2mmjoHfFSzONdqq4-X1oN1EKoS3diOfBuRRnzw |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 3044cb11-ed13-4d95-8db8-3ebb64f7af09 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 81 |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc2OTk2MzAxNH0.u-5rlixn4JRTk12Tro8TNtUk3c24CZ3602naTGMIVzc; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc3MjU1MzIxNH0.LZL0vutKADwuToKtiMUv4mQRr36Om2xhN7o_PeCKfUY |
{
"refreshToken": "expired_invalid_token_xyz",
"expiresInMins": 30
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:35 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 97 |
| x-ratelimit-reset | 1769961223 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"23-pPrdIf6OEYUEvqJKlUDSyBAT260" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=1O4Fh2aX%2FcRqZTELntOaUM1MhTcEI%2BROZiIS%2FfRGvDd%2BeB39s2QNCtT1rZDFnOmll3Osht9bSeJSuNnUmore%2FOBTUwLVEmNaNkJdTtM%3D"}]} |
| Content-Encoding | br |
| CF-RAY | 9c729f5998602891-AMM |
{"message":"Invalid refresh token"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 401 or 403 | 1 | 0 | 0 |
| Response has error message | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
# Get All Products
## Overview
This endpoint retrieves a complete list of all products available in the e-commerce catalog. It returns comprehensive product information including pricing, inventory, specifications, and customer reviews.
## Request Details
**Method:** `GET`
**URL:** `https://dummyjson.com/products`
**Authentication:** Not required
**Query Parameters:** None (base endpoint)
### Optional Query Parameters
While the base endpoint returns all products, you can use the following query parameters to customize the response:
- `limit` - Limit the number of products returned (e.g., `?limit=10`)
- `skip` - Skip a number of products for pagination (e.g., `?skip=10`)
- `select` - Select specific fields to return (e.g., `?select=title,price`)
- `sortBy` - Sort products by a specific field (e.g., `?sortBy=price`)
- `order` - Sort order: `asc` or `desc` (e.g., `?order=asc`)
## Response Structure
The endpoint returns a JSON object with the following structure:
```json
{
"products": [
{
"id": 1,
"title": "Product Name",
"description": "Product description",
"category": "Category name",
"price": 99.99,
"discountPercentage": 10.5,
"rating": 4.5,
"stock": 100,
"tags": ["tag1", "tag2"],
"brand": "Brand Name",
"sku": "SKU-CODE",
"weight": 5,
"dimensions": {
"width": 10.5,
"height": 15.2,
"depth": 8.3
},
"warrantyInformation": "1 year warranty",
"shippingInformation": "Ships in 1-2 business days",
"availabilityStatus": "In Stock",
"reviews": [
{
"rating": 5,
"comment": "Great product!",
"date": "2025-04-30T09:41:02.053Z",
"reviewerName": "John Doe",
"reviewerEmail": "john.doe@example.com"
}
],
"returnPolicy": "30 days return policy",
"minimumOrderQuantity": 1,
"meta": {
"createdAt": "2025-04-30T09:41:02.053Z",
"updatedAt": "2025-04-30T09:41:02.053Z",
"barcode": "1234567890123",
"qrCode": "https://example.com/qr-code.png"
},
"images": ["https://example.com/image1.jpg"],
"thumbnail": "https://example.com/thumbnail.jpg"
}
],
"total": 100,
"skip": 0,
"limit": 30
}
```
### Response Fields
- **products** (array): Array of product objects
- **total** (number): Total number of products available
- **skip** (number): Number of products skipped (for pagination)
- **limit** (number): Maximum number of products returned
### Product Object Fields
- **id**: Unique product identifier
- **title**: Product name
- **description**: Detailed product description
- **category**: Product category
- **price**: Product price in USD
- **discountPercentage**: Current discount percentage
- **rating**: Average customer rating (0-5)
- **stock**: Available inventory quantity
- **tags**: Array of product tags for categorization
- **brand**: Product brand name
- **sku**: Stock Keeping Unit identifier
- **weight**: Product weight
- **dimensions**: Physical dimensions (width, height, depth)
- **warrantyInformation**: Warranty details
- **shippingInformation**: Shipping time and details
- **availabilityStatus**: Current availability status
- **reviews**: Array of customer reviews with ratings and comments
- **returnPolicy**: Return policy information
- **minimumOrderQuantity**: Minimum quantity required for purchase
- **meta**: Metadata including creation date, barcode, and QR code
- **images**: Array of product image URLs
- **thumbnail**: Main product thumbnail URL
## Example Use Cases
### 1. Display Product Catalog
Retrieve all products to display in a product listing page or catalog view.
### 2. Inventory Management
Fetch complete product list to check stock levels and availability across all items.
### 3. Data Analysis
Pull all product data for analytics, reporting, or business intelligence purposes.
### 4. Search Index Building
Retrieve all products to build or update a search index for the e-commerce platform.
### 5. Product Comparison
Get complete product information to enable comparison features across multiple products.
## Response Validation
This endpoint includes automated tests that verify:
- ✅ Status code is 200 (OK)
- ✅ Response contains a `products` property
- ✅ `products` is an array
- ✅ Response time is under 2000ms
## Notes
- **Performance**: This endpoint returns all products by default. For large catalogs, consider using pagination parameters (`limit` and `skip`) to improve performance.
- **No Authentication Required**: This is a public endpoint that doesn't require authentication.
- **Rate Limiting**: Be mindful of API rate limits when making frequent requests.
- **Caching**: Consider implementing client-side caching for product data to reduce API calls.
- **Related Endpoints**:
- Use `/products/{id}` to get a single product by ID
- Use `/products/search?q={query}` to search for specific products
- Use `/products/category/{category}` to filter by category
- Use `/products/categories` to get all available categories
## Status Codes
- **200 OK**: Successfully retrieved products
- **500 Internal Server Error**: Server error occurred
## Example Request
```bash
GET https://dummyjson.com/products
```
## Example Response (Truncated)
```json
{
"products": [
{
"id": 1,
"title": "Essence Mascara Lash Princess",
"category": "beauty",
"price": 9.99,
"rating": 2.56,
"stock": 99
},
{
"id": 2,
"title": "Eyeshadow Palette with Mirror",
"category": "beauty",
"price": 19.99,
"rating": 2.86,
"stock": 34
}
],
"total": 194,
"skip": 0,
"limit": 30
}
```
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc2OTk2NDgxNH0.uuohp2mmjoHfFSzONdqq4-X1oN1EKoS3diOfBuRRnzw |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 66d94c8f-ddf4-4dd4-b058-c1af8f29130b |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc2OTk2MzAxNH0.u-5rlixn4JRTk12Tro8TNtUk3c24CZ3602naTGMIVzc; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc3MjU1MzIxNH0.LZL0vutKADwuToKtiMUv4mQRr36Om2xhN7o_PeCKfUY |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:35 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 99 |
| x-ratelimit-reset | 1769448742 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"ac3a-uk0FDUI0X0lS5liyUbIxqA7L7F4" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| Age | 512482 |
| Cache-Control | no-store |
| cf-cache-status | HIT |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=fNLTyj0mpy%2B6H61JjI1FwfyR9%2FMebunVlQ6wrUoaitpDC0DNgkFjPcg5sj1BbhejPDaO%2FZ0cEHTu4YUzAXlHP0dMdYPOu77ce1jA2Ok%3D"}]} |
| CF-RAY | 9c729f5b3a192891-AMM |
{"products":[{"id":1,"title":"Essence Mascara Lash Princess","description":"The Essence Mascara Lash Princess is a popular mascara known for its volumizing and lengthening effects. Achieve dramatic lashes with this long-lasting and cruelty-free formula.","category":"beauty","price":9.99,"discountPercentage":10.48,"rating":2.56,"stock":99,"tags":["beauty","mascara"],"brand":"Essence","sku":"BEA-ESS-ESS-001","weight":4,"dimensions":{"width":15.14,"height":13.08,"depth":22.99},"warrantyInformation":"1 week warranty","shippingInformation":"Ships in 3-5 business days","availabilityStatus":"In Stock","reviews":[{"rating":3,"comment":"Would not recommend!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Eleanor Collins","reviewerEmail":"eleanor.collins@x.dummyjson.com"},{"rating":4,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Lucas Gordon","reviewerEmail":"lucas.gordon@x.dummyjson.com"},{"rating":5,"comment":"Highly impressed!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Eleanor Collins","reviewerEmail":"eleanor.collins@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":48,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"5784719087687","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/beauty/essence-mascara-lash-princess/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/beauty/essence-mascara-lash-princess/thumbnail.webp"},{"id":2,"title":"Eyeshadow Palette with Mirror","description":"The Eyeshadow Palette with Mirror offers a versatile range of eyeshadow shades for creating stunning eye looks. With a built-in mirror, it's convenient for on-the-go makeup application.","category":"beauty","price":19.99,"discountPercentage":18.19,"rating":2.86,"stock":34,"tags":["beauty","eyeshadow"],"brand":"Glamour Beauty","sku":"BEA-GLA-EYE-002","weight":9,"dimensions":{"width":9.26,"height":22.47,"depth":27.67},"warrantyInformation":"1 year warranty","shippingInformation":"Ships in 2 weeks","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Great product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Savannah Gomez","reviewerEmail":"savannah.gomez@x.dummyjson.com"},{"rating":4,"comment":"Awesome product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Christian Perez","reviewerEmail":"christian.perez@x.dummyjson.com"},{"rating":1,"comment":"Poor quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Nicholas Bailey","reviewerEmail":"nicholas.bailey@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":20,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"9170275171413","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/beauty/eyeshadow-palette-with-mirror/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/beauty/eyeshadow-palette-with-mirror/thumbnail.webp"},{"id":3,"title":"Powder Canister","description":"The Powder Canister is a finely milled setting powder designed to set makeup and control shine. With a lightweight and translucent formula, it provides a smooth and matte finish.","category":"beauty","price":14.99,"discountPercentage":9.84,"rating":4.64,"stock":89,"tags":["beauty","face powder"],"brand":"Velvet Touch","sku":"BEA-VEL-POW-003","weight":8,"dimensions":{"width":29.27,"height":27.93,"depth":20.59},"warrantyInformation":"3 months warranty","shippingInformation":"Ships in 1-2 business days","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Would buy again!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Alexander Jones","reviewerEmail":"alexander.jones@x.dummyjson.com"},{"rating":5,"comment":"Highly impressed!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Elijah Cruz","reviewerEmail":"elijah.cruz@x.dummyjson.com"},{"rating":1,"comment":"Very dissatisfied!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Avery Perez","reviewerEmail":"avery.perez@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":22,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"8418883906837","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/beauty/powder-canister/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/beauty/powder-canister/thumbnail.webp"},{"id":4,"title":"Red Lipstick","description":"The Red Lipstick is a classic and bold choice for adding a pop of color to your lips. With a creamy and pigmented formula, it provides a vibrant and long-lasting finish.","category":"beauty","price":12.99,"discountPercentage":12.16,"rating":4.36,"stock":91,"tags":["beauty","lipstick"],"brand":"Chic Cosmetics","sku":"BEA-CHI-LIP-004","weight":1,"dimensions":{"width":18.11,"height":28.38,"depth":22.17},"warrantyInformation":"3 year warranty","shippingInformation":"Ships in 1 week","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Great product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Liam Garcia","reviewerEmail":"liam.garcia@x.dummyjson.com"},{"rating":5,"comment":"Great product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Ruby Andrews","reviewerEmail":"ruby.andrews@x.dummyjson.com"},{"rating":5,"comment":"Would buy again!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Clara Berry","reviewerEmail":"clara.berry@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":40,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"9467746727219","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/beauty/red-lipstick/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/beauty/red-lipstick/thumbnail.webp"},{"id":5,"title":"Red Nail Polish","description":"The Red Nail Polish offers a rich and glossy red hue for vibrant and polished nails. With a quick-drying formula, it provides a salon-quality finish at home.","category":"beauty","price":8.99,"discountPercentage":11.44,"rating":4.32,"stock":79,"tags":["beauty","nail polish"],"brand":"Nail Couture","sku":"BEA-NAI-NAI-005","weight":8,"dimensions":{"width":21.63,"height":16.48,"depth":29.84},"warrantyInformation":"1 month warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":2,"comment":"Poor quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Benjamin Wilson","reviewerEmail":"benjamin.wilson@x.dummyjson.com"},{"rating":5,"comment":"Great product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Liam Smith","reviewerEmail":"liam.smith@x.dummyjson.com"},{"rating":1,"comment":"Very unhappy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Clara Berry","reviewerEmail":"clara.berry@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":22,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"4063010628104","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/beauty/red-nail-polish/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/beauty/red-nail-polish/thumbnail.webp"},{"id":6,"title":"Calvin Klein CK One","description":"CK One by Calvin Klein is a classic unisex fragrance, known for its fresh and clean scent. It's a versatile fragrance suitable for everyday wear.","category":"fragrances","price":49.99,"discountPercentage":1.89,"rating":4.37,"stock":29,"tags":["fragrances","perfumes"],"brand":"Calvin Klein","sku":"FRA-CAL-CAL-006","weight":7,"dimensions":{"width":29.36,"height":27.76,"depth":20.72},"warrantyInformation":"1 week warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":2,"comment":"Very disappointed!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Layla Young","reviewerEmail":"layla.young@x.dummyjson.com"},{"rating":4,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Daniel Cook","reviewerEmail":"daniel.cook@x.dummyjson.com"},{"rating":3,"comment":"Not as described!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Jacob Cooper","reviewerEmail":"jacob.cooper@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":9,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"2451534060749","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/fragrances/calvin-klein-ck-one/1.webp","https://cdn.dummyjson.com/product-images/fragrances/calvin-klein-ck-one/2.webp","https://cdn.dummyjson.com/product-images/fragrances/calvin-klein-ck-one/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/fragrances/calvin-klein-ck-one/thumbnail.webp"},{"id":7,"title":"Chanel Coco Noir Eau De","description":"Coco Noir by Chanel is an elegant and mysterious fragrance, featuring notes of grapefruit, rose, and sandalwood. Perfect for evening occasions.","category":"fragrances","price":129.99,"discountPercentage":16.51,"rating":4.26,"stock":58,"tags":["fragrances","perfumes"],"brand":"Chanel","sku":"FRA-CHA-CHA-007","weight":7,"dimensions":{"width":24.5,"height":25.7,"depth":25.98},"warrantyInformation":"3 year warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Highly impressed!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Ruby Andrews","reviewerEmail":"ruby.andrews@x.dummyjson.com"},{"rating":5,"comment":"Awesome product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Leah Henderson","reviewerEmail":"leah.henderson@x.dummyjson.com"},{"rating":5,"comment":"Very happy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Xavier Wright","reviewerEmail":"xavier.wright@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"4091737746820","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/fragrances/chanel-coco-noir-eau-de/1.webp","https://cdn.dummyjson.com/product-images/fragrances/chanel-coco-noir-eau-de/2.webp","https://cdn.dummyjson.com/product-images/fragrances/chanel-coco-noir-eau-de/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/fragrances/chanel-coco-noir-eau-de/thumbnail.webp"},{"id":8,"title":"Dior J'adore","description":"J'adore by Dior is a luxurious and floral fragrance, known for its blend of ylang-ylang, rose, and jasmine. It embodies femininity and sophistication.","category":"fragrances","price":89.99,"discountPercentage":14.72,"rating":3.8,"stock":98,"tags":["fragrances","perfumes"],"brand":"Dior","sku":"FRA-DIO-DIO-008","weight":4,"dimensions":{"width":27.67,"height":28.28,"depth":11.83},"warrantyInformation":"1 week warranty","shippingInformation":"Ships in 2 weeks","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Great value for money!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Nicholas Bailey","reviewerEmail":"nicholas.bailey@x.dummyjson.com"},{"rating":4,"comment":"Great value for money!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Penelope Harper","reviewerEmail":"penelope.harper@x.dummyjson.com"},{"rating":4,"comment":"Great product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Emma Miller","reviewerEmail":"emma.miller@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":10,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"1445086097250","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/fragrances/dior-j'adore/1.webp","https://cdn.dummyjson.com/product-images/fragrances/dior-j'adore/2.webp","https://cdn.dummyjson.com/product-images/fragrances/dior-j'adore/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/fragrances/dior-j'adore/thumbnail.webp"},{"id":9,"title":"Dolce Shine Eau de","description":"Dolce Shine by Dolce & Gabbana is a vibrant and fruity fragrance, featuring notes of mango, jasmine, and blonde woods. It's a joyful and youthful scent.","category":"fragrances","price":69.99,"discountPercentage":0.62,"rating":3.96,"stock":4,"tags":["fragrances","perfumes"],"brand":"Dolce & Gabbana","sku":"FRA-DOL-DOL-009","weight":6,"dimensions":{"width":27.28,"height":29.88,"depth":18.3},"warrantyInformation":"3 year warranty","shippingInformation":"Ships in 1 month","availabilityStatus":"Low Stock","reviews":[{"rating":4,"comment":"Would buy again!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Mateo Bennett","reviewerEmail":"mateo.bennett@x.dummyjson.com"},{"rating":4,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Nolan Gonzalez","reviewerEmail":"nolan.gonzalez@x.dummyjson.com"},{"rating":5,"comment":"Very happy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Aurora Lawson","reviewerEmail":"aurora.lawson@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":2,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"3023868210708","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/fragrances/dolce-shine-eau-de/1.webp","https://cdn.dummyjson.com/product-images/fragrances/dolce-shine-eau-de/2.webp","https://cdn.dummyjson.com/product-images/fragrances/dolce-shine-eau-de/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/fragrances/dolce-shine-eau-de/thumbnail.webp"},{"id":10,"title":"Gucci Bloom Eau de","description":"Gucci Bloom by Gucci is a floral and captivating fragrance, with notes of tuberose, jasmine, and Rangoon creeper. It's a modern and romantic scent.","category":"fragrances","price":79.99,"discountPercentage":14.39,"rating":2.74,"stock":91,"tags":["fragrances","perfumes"],"brand":"Gucci","sku":"FRA-GUC-GUC-010","weight":7,"dimensions":{"width":20.92,"height":21.68,"depth":11.2},"warrantyInformation":"6 months warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":1,"comment":"Very dissatisfied!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Cameron Perez","reviewerEmail":"cameron.perez@x.dummyjson.com"},{"rating":5,"comment":"Very happy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Daniel Cook","reviewerEmail":"daniel.cook@x.dummyjson.com"},{"rating":4,"comment":"Highly impressed!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Addison Wright","reviewerEmail":"addison.wright@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":2,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"3170832177880","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/fragrances/gucci-bloom-eau-de/1.webp","https://cdn.dummyjson.com/product-images/fragrances/gucci-bloom-eau-de/2.webp","https://cdn.dummyjson.com/product-images/fragrances/gucci-bloom-eau-de/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/fragrances/gucci-bloom-eau-de/thumbnail.webp"},{"id":11,"title":"Annibale Colombo Bed","description":"The Annibale Colombo Bed is a luxurious and elegant bed frame, crafted with high-quality materials for a comfortable and stylish bedroom.","category":"furniture","price":1899.99,"discountPercentage":8.57,"rating":4.77,"stock":88,"tags":["furniture","beds"],"brand":"Annibale Colombo","sku":"FUR-ANN-ANN-011","weight":10,"dimensions":{"width":28.16,"height":25.36,"depth":17.28},"warrantyInformation":"1 year warranty","shippingInformation":"Ships in 1 month","availabilityStatus":"In Stock","reviews":[{"rating":2,"comment":"Would not recommend!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Christopher West","reviewerEmail":"christopher.west@x.dummyjson.com"},{"rating":4,"comment":"Highly impressed!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Vivian Carter","reviewerEmail":"vivian.carter@x.dummyjson.com"},{"rating":1,"comment":"Poor quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Mason Wright","reviewerEmail":"mason.wright@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"3610757456581","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/furniture/annibale-colombo-bed/1.webp","https://cdn.dummyjson.com/product-images/furniture/annibale-colombo-bed/2.webp","https://cdn.dummyjson.com/product-images/furniture/annibale-colombo-bed/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/furniture/annibale-colombo-bed/thumbnail.webp"},{"id":12,"title":"Annibale Colombo Sofa","description":"The Annibale Colombo Sofa is a sophisticated and comfortable seating option, featuring exquisite design and premium upholstery for your living room.","category":"furniture","price":2499.99,"discountPercentage":14.4,"rating":3.92,"stock":60,"tags":["furniture","sofas"],"brand":"Annibale Colombo","sku":"FUR-ANN-ANN-012","weight":6,"dimensions":{"width":12.75,"height":20.55,"depth":19.06},"warrantyInformation":"Lifetime warranty","shippingInformation":"Ships in 1 week","availabilityStatus":"In Stock","reviews":[{"rating":3,"comment":"Very unhappy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Christian Perez","reviewerEmail":"christian.perez@x.dummyjson.com"},{"rating":5,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Lillian Bishop","reviewerEmail":"lillian.bishop@x.dummyjson.com"},{"rating":1,"comment":"Poor quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Lillian Simmons","reviewerEmail":"lillian.simmons@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"1777662847736","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/furniture/annibale-colombo-sofa/1.webp","https://cdn.dummyjson.com/product-images/furniture/annibale-colombo-sofa/2.webp","https://cdn.dummyjson.com/product-images/furniture/annibale-colombo-sofa/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/furniture/annibale-colombo-sofa/thumbnail.webp"},{"id":13,"title":"Bedside Table African Cherry","description":"The Bedside Table in African Cherry is a stylish and functional addition to your bedroom, providing convenient storage space and a touch of elegance.","category":"furniture","price":299.99,"discountPercentage":19.09,"rating":2.87,"stock":64,"tags":["furniture","bedside tables"],"brand":"Furniture Co.","sku":"FUR-FUR-BED-013","weight":2,"dimensions":{"width":13.47,"height":24.99,"depth":27.35},"warrantyInformation":"5 year warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Aaliyah Hanson","reviewerEmail":"aaliyah.hanson@x.dummyjson.com"},{"rating":4,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Liam Smith","reviewerEmail":"liam.smith@x.dummyjson.com"},{"rating":4,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Avery Barnes","reviewerEmail":"avery.barnes@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":3,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"6441287925979","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/furniture/bedside-table-african-cherry/1.webp","https://cdn.dummyjson.com/product-images/furniture/bedside-table-african-cherry/2.webp","https://cdn.dummyjson.com/product-images/furniture/bedside-table-african-cherry/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/furniture/bedside-table-african-cherry/thumbnail.webp"},{"id":14,"title":"Knoll Saarinen Executive Conference Chair","description":"The Knoll Saarinen Executive Conference Chair is a modern and ergonomic chair, perfect for your office or conference room with its timeless design.","category":"furniture","price":499.99,"discountPercentage":2.01,"rating":4.88,"stock":26,"tags":["furniture","office chairs"],"brand":"Knoll","sku":"FUR-KNO-KNO-014","weight":10,"dimensions":{"width":13.81,"height":7.5,"depth":5.62},"warrantyInformation":"2 year warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":2,"comment":"Waste of money!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Ella Cook","reviewerEmail":"ella.cook@x.dummyjson.com"},{"rating":2,"comment":"Very dissatisfied!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Clara Berry","reviewerEmail":"clara.berry@x.dummyjson.com"},{"rating":5,"comment":"Would buy again!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Elena Long","reviewerEmail":"elena.long@x.dummyjson.com"}],"returnPolicy":"60 days return policy","minimumOrderQuantity":5,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"8919386859966","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/furniture/knoll-saarinen-executive-conference-chair/1.webp","https://cdn.dummyjson.com/product-images/furniture/knoll-saarinen-executive-conference-chair/2.webp","https://cdn.dummyjson.com/product-images/furniture/knoll-saarinen-executive-conference-chair/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/furniture/knoll-saarinen-executive-conference-chair/thumbnail.webp"},{"id":15,"title":"Wooden Bathroom Sink With Mirror","description":"The Wooden Bathroom Sink with Mirror is a unique and stylish addition to your bathroom, featuring a wooden sink countertop and a matching mirror.","category":"furniture","price":799.99,"discountPercentage":8.8,"rating":3.59,"stock":7,"tags":["furniture","bathroom"],"brand":"Bath Trends","sku":"FUR-BAT-WOO-015","weight":10,"dimensions":{"width":7.98,"height":8.88,"depth":28.46},"warrantyInformation":"3 year warranty","shippingInformation":"Ships in 3-5 business days","availabilityStatus":"Low Stock","reviews":[{"rating":4,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Logan Torres","reviewerEmail":"logan.torres@x.dummyjson.com"},{"rating":5,"comment":"Very pleased!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Aria Parker","reviewerEmail":"aria.parker@x.dummyjson.com"},{"rating":3,"comment":"Poor quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Dylan Wells","reviewerEmail":"dylan.wells@x.dummyjson.com"}],"returnPolicy":"60 days return policy","minimumOrderQuantity":2,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"1958104402873","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/furniture/wooden-bathroom-sink-with-mirror/1.webp","https://cdn.dummyjson.com/product-images/furniture/wooden-bathroom-sink-with-mirror/2.webp","https://cdn.dummyjson.com/product-images/furniture/wooden-bathroom-sink-with-mirror/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/furniture/wooden-bathroom-sink-with-mirror/thumbnail.webp"},{"id":16,"title":"Apple","description":"Fresh and crisp apples, perfect for snacking or incorporating into various recipes.","category":"groceries","price":1.99,"discountPercentage":12.62,"rating":4.19,"stock":8,"tags":["fruits"],"sku":"GRO-BRD-APP-016","weight":9,"dimensions":{"width":13.66,"height":11.01,"depth":9.73},"warrantyInformation":"3 year warranty","shippingInformation":"Ships in 2 weeks","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Sophia Brown","reviewerEmail":"sophia.brown@x.dummyjson.com"},{"rating":1,"comment":"Very dissatisfied!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Scarlett Bowman","reviewerEmail":"scarlett.bowman@x.dummyjson.com"},{"rating":3,"comment":"Very unhappy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"William Gonzalez","reviewerEmail":"william.gonzalez@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":7,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"7962803553314","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/apple/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/apple/thumbnail.webp"},{"id":17,"title":"Beef Steak","description":"High-quality beef steak, great for grilling or cooking to your preferred level of doneness.","category":"groceries","price":12.99,"discountPercentage":9.61,"rating":4.47,"stock":86,"tags":["meat"],"sku":"GRO-BRD-BEE-017","weight":10,"dimensions":{"width":18.9,"height":5.77,"depth":18.57},"warrantyInformation":"3 year warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":3,"comment":"Would not recommend!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Eleanor Tyler","reviewerEmail":"eleanor.tyler@x.dummyjson.com"},{"rating":4,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Alexander Jones","reviewerEmail":"alexander.jones@x.dummyjson.com"},{"rating":5,"comment":"Great value for money!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Natalie Harris","reviewerEmail":"natalie.harris@x.dummyjson.com"}],"returnPolicy":"60 days return policy","minimumOrderQuantity":43,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"5640063409695","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/beef-steak/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/beef-steak/thumbnail.webp"},{"id":18,"title":"Cat Food","description":"Nutritious cat food formulated to meet the dietary needs of your feline friend.","category":"groceries","price":8.99,"discountPercentage":9.58,"rating":3.13,"stock":46,"tags":["pet supplies","cat food"],"sku":"GRO-BRD-FOO-018","weight":10,"dimensions":{"width":18.08,"height":9.26,"depth":21.86},"warrantyInformation":"1 year warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":3,"comment":"Would not recommend!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Noah Lewis","reviewerEmail":"noah.lewis@x.dummyjson.com"},{"rating":3,"comment":"Very unhappy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Ruby Andrews","reviewerEmail":"ruby.andrews@x.dummyjson.com"},{"rating":2,"comment":"Very disappointed!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Ethan Thompson","reviewerEmail":"ethan.thompson@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":18,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"1483991328610","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/cat-food/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/cat-food/thumbnail.webp"},{"id":19,"title":"Chicken Meat","description":"Fresh and tender chicken meat, suitable for various culinary preparations.","category":"groceries","price":9.99,"discountPercentage":13.7,"rating":3.19,"stock":97,"tags":["meat"],"sku":"GRO-BRD-CHI-019","weight":1,"dimensions":{"width":11.03,"height":22.11,"depth":16.01},"warrantyInformation":"1 year warranty","shippingInformation":"Ships in 1 month","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Great product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Mateo Bennett","reviewerEmail":"mateo.bennett@x.dummyjson.com"},{"rating":4,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Jackson Evans","reviewerEmail":"jackson.evans@x.dummyjson.com"},{"rating":3,"comment":"Not worth the price!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Sadie Morales","reviewerEmail":"sadie.morales@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":22,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"8829514594521","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/chicken-meat/1.webp","https://cdn.dummyjson.com/product-images/groceries/chicken-meat/2.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/chicken-meat/thumbnail.webp"},{"id":20,"title":"Cooking Oil","description":"Versatile cooking oil suitable for frying, sautéing, and various culinary applications.","category":"groceries","price":4.99,"discountPercentage":9.33,"rating":4.8,"stock":10,"tags":["cooking essentials"],"sku":"GRO-BRD-COO-020","weight":5,"dimensions":{"width":19.95,"height":27.54,"depth":24.86},"warrantyInformation":"Lifetime warranty","shippingInformation":"Ships in 1-2 business days","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Very happy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Victoria McDonald","reviewerEmail":"victoria.mcdonald@x.dummyjson.com"},{"rating":2,"comment":"Would not recommend!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Hazel Evans","reviewerEmail":"hazel.evans@x.dummyjson.com"},{"rating":5,"comment":"Would buy again!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Zoe Bennett","reviewerEmail":"zoe.bennett@x.dummyjson.com"}],"returnPolicy":"30 days return policy","minimumOrderQuantity":46,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"4874727824518","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/cooking-oil/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/cooking-oil/thumbnail.webp"},{"id":21,"title":"Cucumber","description":"Crisp and hydrating cucumbers, ideal for salads, snacks, or as a refreshing side.","category":"groceries","price":1.49,"discountPercentage":0.16,"rating":4.07,"stock":84,"tags":["vegetables"],"sku":"GRO-BRD-CUC-021","weight":4,"dimensions":{"width":12.8,"height":28.38,"depth":21.34},"warrantyInformation":"2 year warranty","shippingInformation":"Ships in 1-2 business days","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Great product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Lincoln Kelly","reviewerEmail":"lincoln.kelly@x.dummyjson.com"},{"rating":4,"comment":"Great value for money!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Savannah Gomez","reviewerEmail":"savannah.gomez@x.dummyjson.com"},{"rating":2,"comment":"Poor quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"James Davis","reviewerEmail":"james.davis@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":2,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"5300066378225","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/cucumber/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/cucumber/thumbnail.webp"},{"id":22,"title":"Dog Food","description":"Specially formulated dog food designed to provide essential nutrients for your canine companion.","category":"groceries","price":10.99,"discountPercentage":10.27,"rating":4.55,"stock":71,"tags":["pet supplies","dog food"],"sku":"GRO-BRD-FOO-022","weight":10,"dimensions":{"width":16.93,"height":27.15,"depth":9.29},"warrantyInformation":"No warranty","shippingInformation":"Ships in 1-2 business days","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Nicholas Edwards","reviewerEmail":"nicholas.edwards@x.dummyjson.com"},{"rating":5,"comment":"Awesome product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Zachary Lee","reviewerEmail":"zachary.lee@x.dummyjson.com"},{"rating":4,"comment":"Great product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Nova Cooper","reviewerEmail":"nova.cooper@x.dummyjson.com"}],"returnPolicy":"60 days return policy","minimumOrderQuantity":43,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"5906686116469","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/dog-food/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/dog-food/thumbnail.webp"},{"id":23,"title":"Eggs","description":"Fresh eggs, a versatile ingredient for baking, cooking, or breakfast.","category":"groceries","price":2.99,"discountPercentage":11.05,"rating":2.53,"stock":9,"tags":["dairy"],"sku":"GRO-BRD-EGG-023","weight":2,"dimensions":{"width":11.42,"height":7.44,"depth":16.95},"warrantyInformation":"1 week warranty","shippingInformation":"Ships in 1 week","availabilityStatus":"In Stock","reviews":[{"rating":3,"comment":"Disappointing product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Penelope King","reviewerEmail":"penelope.king@x.dummyjson.com"},{"rating":3,"comment":"Poor quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Eleanor Tyler","reviewerEmail":"eleanor.tyler@x.dummyjson.com"},{"rating":4,"comment":"Very pleased!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Benjamin Foster","reviewerEmail":"benjamin.foster@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":32,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"3478638588469","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/eggs/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/eggs/thumbnail.webp"},{"id":24,"title":"Fish Steak","description":"Quality fish steak, suitable for grilling, baking, or pan-searing.","category":"groceries","price":14.99,"discountPercentage":4.23,"rating":3.78,"stock":74,"tags":["seafood"],"sku":"GRO-BRD-FIS-024","weight":6,"dimensions":{"width":14.95,"height":26.31,"depth":11.27},"warrantyInformation":"1 month warranty","shippingInformation":"Ships in 3-5 business days","availabilityStatus":"In Stock","reviews":[{"rating":2,"comment":"Would not buy again!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Caleb Perkins","reviewerEmail":"caleb.perkins@x.dummyjson.com"},{"rating":5,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Isabella Jackson","reviewerEmail":"isabella.jackson@x.dummyjson.com"},{"rating":4,"comment":"Great value for money!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Nathan Dixon","reviewerEmail":"nathan.dixon@x.dummyjson.com"}],"returnPolicy":"60 days return policy","minimumOrderQuantity":50,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"9595036192098","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/fish-steak/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/fish-steak/thumbnail.webp"},{"id":25,"title":"Green Bell Pepper","description":"Fresh and vibrant green bell pepper, perfect for adding color and flavor to your dishes.","category":"groceries","price":1.29,"discountPercentage":0.16,"rating":3.25,"stock":33,"tags":["vegetables"],"sku":"GRO-BRD-GRE-025","weight":2,"dimensions":{"width":15.33,"height":26.65,"depth":14.44},"warrantyInformation":"1 month warranty","shippingInformation":"Ships in 1 week","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Avery Carter","reviewerEmail":"avery.carter@x.dummyjson.com"},{"rating":3,"comment":"Would not recommend!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Henry Hill","reviewerEmail":"henry.hill@x.dummyjson.com"},{"rating":5,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Addison Wright","reviewerEmail":"addison.wright@x.dummyjson.com"}],"returnPolicy":"30 days return policy","minimumOrderQuantity":12,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"2365227493323","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/green-bell-pepper/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/green-bell-pepper/thumbnail.webp"},{"id":26,"title":"Green Chili Pepper","description":"Spicy green chili pepper, ideal for adding heat to your favorite recipes.","category":"groceries","price":0.99,"discountPercentage":1,"rating":3.66,"stock":3,"tags":["vegetables"],"sku":"GRO-BRD-GRE-026","weight":7,"dimensions":{"width":15.38,"height":18.12,"depth":19.92},"warrantyInformation":"2 year warranty","shippingInformation":"Ships in 1 week","availabilityStatus":"Low Stock","reviews":[{"rating":4,"comment":"Great product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Luna Russell","reviewerEmail":"luna.russell@x.dummyjson.com"},{"rating":1,"comment":"Waste of money!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Noah Lewis","reviewerEmail":"noah.lewis@x.dummyjson.com"},{"rating":3,"comment":"Very disappointed!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Clara Berry","reviewerEmail":"clara.berry@x.dummyjson.com"}],"returnPolicy":"30 days return policy","minimumOrderQuantity":39,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"9335000538563","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/green-chili-pepper/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/green-chili-pepper/thumbnail.webp"},{"id":27,"title":"Honey Jar","description":"Pure and natural honey in a convenient jar, perfect for sweetening beverages or drizzling over food.","category":"groceries","price":6.99,"discountPercentage":14.4,"rating":3.97,"stock":34,"tags":["condiments"],"sku":"GRO-BRD-HON-027","weight":2,"dimensions":{"width":9.28,"height":21.72,"depth":17.74},"warrantyInformation":"1 month warranty","shippingInformation":"Ships in 1-2 business days","availabilityStatus":"In Stock","reviews":[{"rating":1,"comment":"Very disappointed!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Autumn Gomez","reviewerEmail":"autumn.gomez@x.dummyjson.com"},{"rating":4,"comment":"Highly impressed!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Benjamin Wilson","reviewerEmail":"benjamin.wilson@x.dummyjson.com"},{"rating":2,"comment":"Very disappointed!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Nicholas Edwards","reviewerEmail":"nicholas.edwards@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":47,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"6354306346329","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/honey-jar/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/honey-jar/thumbnail.webp"},{"id":28,"title":"Ice Cream","description":"Creamy and delicious ice cream, available in various flavors for a delightful treat.","category":"groceries","price":5.49,"discountPercentage":8.69,"rating":3.39,"stock":27,"tags":["desserts"],"sku":"GRO-BRD-CRE-028","weight":1,"dimensions":{"width":14.83,"height":15.07,"depth":24.2},"warrantyInformation":"1 month warranty","shippingInformation":"Ships in 2 weeks","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Very pleased!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Elijah Cruz","reviewerEmail":"elijah.cruz@x.dummyjson.com"},{"rating":4,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Jace Smith","reviewerEmail":"jace.smith@x.dummyjson.com"},{"rating":5,"comment":"Highly impressed!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Sadie Morales","reviewerEmail":"sadie.morales@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":42,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"0788954559076","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/ice-cream/1.webp","https://cdn.dummyjson.com/product-images/groceries/ice-cream/2.webp","https://cdn.dummyjson.com/product-images/groceries/ice-cream/3.webp","https://cdn.dummyjson.com/product-images/groceries/ice-cream/4.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/ice-cream/thumbnail.webp"},{"id":29,"title":"Juice","description":"Refreshing fruit juice, packed with vitamins and great for staying hydrated.","category":"groceries","price":3.99,"discountPercentage":12.06,"rating":3.94,"stock":50,"tags":["beverages"],"sku":"GRO-BRD-JUI-029","weight":1,"dimensions":{"width":18.56,"height":21.46,"depth":28.02},"warrantyInformation":"6 months warranty","shippingInformation":"Ships in 1 week","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Nolan Gonzalez","reviewerEmail":"nolan.gonzalez@x.dummyjson.com"},{"rating":4,"comment":"Would buy again!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Bella Grant","reviewerEmail":"bella.grant@x.dummyjson.com"},{"rating":5,"comment":"Awesome product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Aria Flores","reviewerEmail":"aria.flores@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":25,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"6936112580956","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/juice/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/juice/thumbnail.webp"},{"id":30,"title":"Kiwi","description":"Nutrient-rich kiwi, perfect for snacking or adding a tropical twist to your dishes.","category":"groceries","price":2.49,"discountPercentage":15.22,"rating":4.93,"stock":99,"tags":["fruits"],"sku":"GRO-BRD-KIW-030","weight":5,"dimensions":{"width":19.4,"height":18.67,"depth":17.13},"warrantyInformation":"6 months warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Emily Brown","reviewerEmail":"emily.brown@x.dummyjson.com"},{"rating":2,"comment":"Would not buy again!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Jackson Morales","reviewerEmail":"jackson.morales@x.dummyjson.com"},{"rating":4,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Nora Russell","reviewerEmail":"nora.russell@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":30,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"2530169917252","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/kiwi/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/kiwi/thumbnail.webp"}],"total":194,"skip":0,"limit":30}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Products content is correct | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 3 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Retrieves detailed information about a specific product by its unique identifier.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/products/20`
## Authentication
- **Required**: No
- This is a public endpoint that doesn't require authentication
## Parameters
### Path Variables
- `productId` (required) - The unique identifier of the product to retrieve
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
{
"id": 1,
"title": "Product Name",
"description": "Product description",
"price": 549,
"discountPercentage": 12.96,
"rating": 4.69,
"stock": 94,
"brand": "Brand Name",
"category": "Category Name",
"thumbnail": "image_url",
"images": ["image1_url", "image2_url"]
}
```
## Tests Included
- Validates response status code is 200
- Verifies product object structure and required fields
- Checks data types for numeric and string fields
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc2OTk2NDgxNH0.uuohp2mmjoHfFSzONdqq4-X1oN1EKoS3diOfBuRRnzw |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 5f29d0bb-02e9-4f2c-a273-8a3258edcd48 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc2OTk2MzAxNH0.u-5rlixn4JRTk12Tro8TNtUk3c24CZ3602naTGMIVzc; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc3MjU1MzIxNH0.LZL0vutKADwuToKtiMUv4mQRr36Om2xhN7o_PeCKfUY |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:35 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 95 |
| x-ratelimit-reset | 1769961219 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"55c-epT06uXY62/BP4rliBoJwBxhmRc" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=Ssh4CVcJX%2Bua0xMBEs4Rl5qLIjiAHQXKeeA19xoWZSYgv0YPSuVcQ%2FIOc3JoeNVoKMQOD9F5mI4p1ENALZm6ztMju7zGcI7VAfW%2B6H0%3D"}]} |
| CF-RAY | 9c729f5c0b3a2891-AMM |
{"id":20,"title":"Cooking Oil","description":"Versatile cooking oil suitable for frying, sautéing, and various culinary applications.","category":"groceries","price":4.99,"discountPercentage":9.33,"rating":4.8,"stock":10,"tags":["cooking essentials"],"sku":"GRO-BRD-COO-020","weight":5,"dimensions":{"width":19.95,"height":27.54,"depth":24.86},"warrantyInformation":"Lifetime warranty","shippingInformation":"Ships in 1-2 business days","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Very happy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Victoria McDonald","reviewerEmail":"victoria.mcdonald@x.dummyjson.com"},{"rating":2,"comment":"Would not recommend!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Hazel Evans","reviewerEmail":"hazel.evans@x.dummyjson.com"},{"rating":5,"comment":"Would buy again!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Zoe Bennett","reviewerEmail":"zoe.bennett@x.dummyjson.com"}],"returnPolicy":"30 days return policy","minimumOrderQuantity":46,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"4874727824518","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/cooking-oil/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/cooking-oil/thumbnail.webp"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Searches for products based on a query string, returning all products that match the search criteria.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/products/search?q=phone`
## Authentication
- **Required**: No
- This is a public endpoint that doesn't require authentication
## Parameters
### Query Parameters
- `q` (required) - The search query string to find matching products
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
{
"products": [
{
"id": 1,
"title": "Product Name",
"description": "Product description",
"price": 549,
"category": "Category Name",
...
}
],
"total": 4,
"skip": 0,
"limit": 30
}
```
## Tests Included
- Validates response status code is 200
- Verifies products array exists
- Checks pagination metadata (total, skip, limit)
- Confirms search results match query criteria
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc2OTk2NDgxNH0.uuohp2mmjoHfFSzONdqq4-X1oN1EKoS3diOfBuRRnzw |
| Content-Type | text/plain |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 3cc06746-42a8-4800-a555-83f3ffd8e0dd |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 61 |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc2OTk2MzAxNH0.u-5rlixn4JRTk12Tro8TNtUk3c24CZ3602naTGMIVzc; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc3MjU1MzIxNH0.LZL0vutKADwuToKtiMUv4mQRr36Om2xhN7o_PeCKfUY |
{
"username": "emilys",
"password": "emilyspass"
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:35 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 94 |
| x-ratelimit-reset | 1769961219 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"91a2-RFRCC1oz+o2Uvyk0nOQo9Pf5Q2g" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=2KHSwv%2BgXc12N0Qx4euswWASbq2xeP0IaoQG6BSy9pOoVACYQcgg4TxL%2F1bESYdd7oecVMkU36D36y8HMX7UJSqdjJG%2F8XIh1oevjz4%3D"}]} |
| CF-RAY | 9c729f5d8cf62891-AMM |
{"products":[{"id":101,"title":"Apple AirPods Max Silver","description":"The Apple AirPods Max in Silver are premium over-ear headphones with high-fidelity audio, adaptive EQ, and active noise cancellation. Experience immersive sound in style.","category":"mobile-accessories","price":549.99,"discountPercentage":13.67,"rating":3.47,"stock":59,"tags":["electronics","over-ear headphones"],"brand":"Apple","sku":"MOB-APP-APP-101","weight":2,"dimensions":{"width":24.88,"height":14.9,"depth":27.54},"warrantyInformation":"No warranty","shippingInformation":"Ships in 2 weeks","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Henry Adams","reviewerEmail":"henry.adams@x.dummyjson.com"},{"rating":4,"comment":"Very happy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Elijah Cruz","reviewerEmail":"elijah.cruz@x.dummyjson.com"},{"rating":4,"comment":"Would buy again!","date":"2025-04-30T09:41:02.053Z","reviewerName":"William Lopez","reviewerEmail":"william.lopez@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"4062176053732","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/mobile-accessories/apple-airpods-max-silver/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/mobile-accessories/apple-airpods-max-silver/thumbnail.webp"},{"id":104,"title":"Apple iPhone Charger","description":"The Apple iPhone Charger is a high-quality charger designed for fast and efficient charging of your iPhone. Ensure your device stays powered up and ready to go.","category":"mobile-accessories","price":19.99,"discountPercentage":18.52,"rating":4.15,"stock":31,"tags":["electronics","chargers"],"brand":"Apple","sku":"MOB-APP-APP-104","weight":1,"dimensions":{"width":13.63,"height":26.25,"depth":5.95},"warrantyInformation":"1 year warranty","shippingInformation":"Ships in 2 weeks","availabilityStatus":"In Stock","reviews":[{"rating":1,"comment":"Very disappointed!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Sadie Morales","reviewerEmail":"sadie.morales@x.dummyjson.com"},{"rating":5,"comment":"Great product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Lily Torres","reviewerEmail":"lily.torres@x.dummyjson.com"},{"rating":2,"comment":"Waste of money!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Luke Cooper","reviewerEmail":"luke.cooper@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":14,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"0879776541417","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/mobile-accessories/apple-iphone-charger/1.webp","https://cdn.dummyjson.com/product-images/mobile-accessories/apple-iphone-charger/2.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/mobile-accessories/apple-iphone-charger/thumbnail.webp"},{"id":105,"title":"Apple MagSafe Battery Pack","description":"The Apple MagSafe Battery Pack is a portable and convenient way to add extra battery life to your MagSafe-compatible iPhone. Attach it magnetically for a secure connection.","category":"mobile-accessories","price":99.99,"discountPercentage":17.17,"rating":3.62,"stock":1,"tags":["electronics","power banks"],"brand":"Apple","sku":"MOB-APP-APP-105","weight":6,"dimensions":{"width":15.4,"height":11.89,"depth":19.67},"warrantyInformation":"2 year warranty","shippingInformation":"Ships overnight","availabilityStatus":"Low Stock","reviews":[{"rating":2,"comment":"Would not recommend!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Stella Morris","reviewerEmail":"stella.morris@x.dummyjson.com"},{"rating":2,"comment":"Not as described!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Henry Adams","reviewerEmail":"henry.adams@x.dummyjson.com"},{"rating":5,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Cameron Burke","reviewerEmail":"cameron.burke@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":4,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"5157424897794","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/mobile-accessories/apple-magsafe-battery-pack/1.webp","https://cdn.dummyjson.com/product-images/mobile-accessories/apple-magsafe-battery-pack/2.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/mobile-accessories/apple-magsafe-battery-pack/thumbnail.webp"},{"id":107,"title":"Beats Flex Wireless Earphones","description":"The Beats Flex Wireless Earphones offer a comfortable and versatile audio experience. With magnetic earbuds and up to 12 hours of battery life, they are ideal for everyday use.","category":"mobile-accessories","price":49.99,"discountPercentage":5.73,"rating":4.24,"stock":50,"tags":["electronics","wireless earphones"],"brand":"Beats","sku":"MOB-BEA-BEA-107","weight":8,"dimensions":{"width":17.86,"height":25.74,"depth":23.09},"warrantyInformation":"1 year warranty","shippingInformation":"Ships in 1-2 business days","availabilityStatus":"In Stock","reviews":[{"rating":2,"comment":"Disappointing product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"William Gonzalez","reviewerEmail":"william.gonzalez@x.dummyjson.com"},{"rating":5,"comment":"Very pleased!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Gabriel Mitchell","reviewerEmail":"gabriel.mitchell@x.dummyjson.com"},{"rating":2,"comment":"Not worth the price!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Gabriel Adams","reviewerEmail":"gabriel.adams@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":17,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"1741271692174","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/mobile-accessories/beats-flex-wireless-earphones/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/mobile-accessories/beats-flex-wireless-earphones/thumbnail.webp"},{"id":108,"title":"iPhone 12 Silicone Case with MagSafe Plum","description":"The iPhone 12 Silicone Case with MagSafe in Plum is a stylish and protective case designed for the iPhone 12. It features MagSafe technology for easy attachment of accessories.","category":"mobile-accessories","price":29.99,"discountPercentage":13.85,"rating":3.62,"stock":69,"tags":["electronics","phone accessories"],"brand":"Apple","sku":"MOB-APP-IPH-108","weight":7,"dimensions":{"width":12.49,"height":11.29,"depth":23.52},"warrantyInformation":"3 months warranty","shippingInformation":"Ships in 3-5 business days","availabilityStatus":"In Stock","reviews":[{"rating":2,"comment":"Would not buy again!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Penelope King","reviewerEmail":"penelope.king@x.dummyjson.com"},{"rating":5,"comment":"Great value for money!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Isabella Anderson","reviewerEmail":"isabella.anderson@x.dummyjson.com"},{"rating":5,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Claire Foster","reviewerEmail":"claire.foster@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":4,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"8156838251449","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/mobile-accessories/iphone-12-silicone-case-with-magsafe-plum/1.webp","https://cdn.dummyjson.com/product-images/mobile-accessories/iphone-12-silicone-case-with-magsafe-plum/2.webp","https://cdn.dummyjson.com/product-images/mobile-accessories/iphone-12-silicone-case-with-magsafe-plum/3.webp","https://cdn.dummyjson.com/product-images/mobile-accessories/iphone-12-silicone-case-with-magsafe-plum/4.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/mobile-accessories/iphone-12-silicone-case-with-magsafe-plum/thumbnail.webp"},{"id":110,"title":"Selfie Lamp with iPhone","description":"The Selfie Lamp with iPhone is a portable and adjustable LED light designed to enhance your selfies and video calls. Attach it to your iPhone for well-lit photos.","category":"mobile-accessories","price":14.99,"discountPercentage":19.4,"rating":3.55,"stock":58,"tags":["electronics","selfie accessories"],"brand":"GadgetMaster","sku":"MOB-GAD-SEL-110","weight":10,"dimensions":{"width":5.26,"height":13.84,"depth":22.83},"warrantyInformation":"Lifetime warranty","shippingInformation":"Ships in 2 weeks","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Luke Cooper","reviewerEmail":"luke.cooper@x.dummyjson.com"},{"rating":3,"comment":"Poor quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Caleb Perkins","reviewerEmail":"caleb.perkins@x.dummyjson.com"},{"rating":4,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Benjamin Wilson","reviewerEmail":"benjamin.wilson@x.dummyjson.com"}],"returnPolicy":"60 days return policy","minimumOrderQuantity":22,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"4372781189895","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/mobile-accessories/selfie-lamp-with-iphone/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/mobile-accessories/selfie-lamp-with-iphone/thumbnail.webp"},{"id":111,"title":"Selfie Stick Monopod","description":"The Selfie Stick Monopod is a extendable and foldable device for capturing the perfect selfie or group photo. Compatible with smartphones and cameras.","category":"mobile-accessories","price":12.99,"discountPercentage":19.12,"rating":3.88,"stock":11,"tags":["electronics","selfie accessories"],"brand":"SnapTech","sku":"MOB-SNA-SEL-111","weight":2,"dimensions":{"width":24.76,"height":26.38,"depth":21.39},"warrantyInformation":"3 year warranty","shippingInformation":"Ships in 1-2 business days","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Great product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Ryan Graham","reviewerEmail":"ryan.graham@x.dummyjson.com"},{"rating":4,"comment":"Great product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Nora Russell","reviewerEmail":"nora.russell@x.dummyjson.com"},{"rating":1,"comment":"Very dissatisfied!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Luna Perez","reviewerEmail":"luna.perez@x.dummyjson.com"}],"returnPolicy":"30 days return policy","minimumOrderQuantity":8,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"7063982050226","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/mobile-accessories/selfie-stick-monopod/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/mobile-accessories/selfie-stick-monopod/thumbnail.webp"},{"id":121,"title":"iPhone 5s","description":"The iPhone 5s is a classic smartphone known for its compact design and advanced features during its release. While it's an older model, it still provides a reliable user experience.","category":"smartphones","price":199.99,"discountPercentage":12.91,"rating":2.83,"stock":25,"tags":["smartphones","apple"],"brand":"Apple","sku":"SMA-APP-IPH-121","weight":2,"dimensions":{"width":5.29,"height":18.38,"depth":17.72},"warrantyInformation":"Lifetime warranty","shippingInformation":"Ships in 1 month","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Jace Smith","reviewerEmail":"jace.smith@x.dummyjson.com"},{"rating":1,"comment":"Not as described!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Logan Torres","reviewerEmail":"logan.torres@x.dummyjson.com"},{"rating":5,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Harper Kelly","reviewerEmail":"harper.kelly@x.dummyjson.com"}],"returnPolicy":"60 days return policy","minimumOrderQuantity":3,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"8814683940853","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/iphone-5s/1.webp","https://cdn.dummyjson.com/product-images/smartphones/iphone-5s/2.webp","https://cdn.dummyjson.com/product-images/smartphones/iphone-5s/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/iphone-5s/thumbnail.webp"},{"id":122,"title":"iPhone 6","description":"The iPhone 6 is a stylish and capable smartphone with a larger display and improved performance. It introduced new features and design elements, making it a popular choice in its time.","category":"smartphones","price":299.99,"discountPercentage":6.69,"rating":3.41,"stock":60,"tags":["smartphones","apple"],"brand":"Apple","sku":"SMA-APP-IPH-122","weight":7,"dimensions":{"width":11,"height":9.1,"depth":9.67},"warrantyInformation":"1 month warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":3,"comment":"Disappointing product!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Stella Morris","reviewerEmail":"stella.morris@x.dummyjson.com"},{"rating":4,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Nolan Gonzalez","reviewerEmail":"nolan.gonzalez@x.dummyjson.com"},{"rating":5,"comment":"Great value for money!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Benjamin Foster","reviewerEmail":"benjamin.foster@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":5,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"9922357685013","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/iphone-6/1.webp","https://cdn.dummyjson.com/product-images/smartphones/iphone-6/2.webp","https://cdn.dummyjson.com/product-images/smartphones/iphone-6/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/iphone-6/thumbnail.webp"},{"id":123,"title":"iPhone 13 Pro","description":"The iPhone 13 Pro is a cutting-edge smartphone with a powerful camera system, high-performance chip, and stunning display. It offers advanced features for users who demand top-notch technology.","category":"smartphones","price":1099.99,"discountPercentage":9.37,"rating":4.12,"stock":56,"tags":["smartphones","apple"],"brand":"Apple","sku":"SMA-APP-IPH-123","weight":8,"dimensions":{"width":12.63,"height":5.28,"depth":14.29},"warrantyInformation":"3 year warranty","shippingInformation":"Ships in 2 weeks","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Would buy again!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Christian Perez","reviewerEmail":"christian.perez@x.dummyjson.com"},{"rating":3,"comment":"Not worth the price!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Liam Gonzalez","reviewerEmail":"liam.gonzalez@x.dummyjson.com"},{"rating":5,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Tristan Scott","reviewerEmail":"tristan.scott@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"4998438802308","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/iphone-13-pro/1.webp","https://cdn.dummyjson.com/product-images/smartphones/iphone-13-pro/2.webp","https://cdn.dummyjson.com/product-images/smartphones/iphone-13-pro/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/iphone-13-pro/thumbnail.webp"},{"id":124,"title":"iPhone X","description":"The iPhone X is a flagship smartphone featuring a bezel-less OLED display, facial recognition technology (Face ID), and impressive performance. It represents a milestone in iPhone design and innovation.","category":"smartphones","price":899.99,"discountPercentage":19.59,"rating":2.51,"stock":37,"tags":["smartphones","apple"],"brand":"Apple","sku":"SMA-APP-IPH-124","weight":1,"dimensions":{"width":21.88,"height":24.19,"depth":14.19},"warrantyInformation":"3 months warranty","shippingInformation":"Ships in 3-5 business days","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Tyler Davis","reviewerEmail":"tyler.davis@x.dummyjson.com"},{"rating":5,"comment":"Great product!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Aria Parker","reviewerEmail":"aria.parker@x.dummyjson.com"},{"rating":2,"comment":"Not as described!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Lily Torres","reviewerEmail":"lily.torres@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":2,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"3034949322264","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/iphone-x/1.webp","https://cdn.dummyjson.com/product-images/smartphones/iphone-x/2.webp","https://cdn.dummyjson.com/product-images/smartphones/iphone-x/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/iphone-x/thumbnail.webp"},{"id":125,"title":"Oppo A57","description":"The Oppo A57 is a mid-range smartphone known for its sleek design and capable features. It offers a balance of performance and affordability, making it a popular choice.","category":"smartphones","price":249.99,"discountPercentage":2.43,"rating":3.94,"stock":19,"tags":["smartphones","oppo"],"brand":"Oppo","sku":"SMA-OPP-OPP-125","weight":5,"dimensions":{"width":7.2,"height":10.74,"depth":23.68},"warrantyInformation":"Lifetime warranty","shippingInformation":"Ships in 3-5 business days","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Scarlett Wright","reviewerEmail":"scarlett.wright@x.dummyjson.com"},{"rating":5,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Jacob Cooper","reviewerEmail":"jacob.cooper@x.dummyjson.com"},{"rating":2,"comment":"Poor quality!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Zoe Nicholson","reviewerEmail":"zoe.nicholson@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":3,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"0651223722522","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/oppo-a57/1.webp","https://cdn.dummyjson.com/product-images/smartphones/oppo-a57/2.webp","https://cdn.dummyjson.com/product-images/smartphones/oppo-a57/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/oppo-a57/thumbnail.webp"},{"id":126,"title":"Oppo F19 Pro Plus","description":"The Oppo F19 Pro Plus is a feature-rich smartphone with a focus on camera capabilities. It boasts advanced photography features and a powerful performance for a premium user experience.","category":"smartphones","price":399.99,"discountPercentage":18.64,"rating":3.51,"stock":78,"tags":["smartphones","oppo"],"brand":"Oppo","sku":"SMA-OPP-OPP-126","weight":6,"dimensions":{"width":6.78,"height":25.17,"depth":8.4},"warrantyInformation":"3 year warranty","shippingInformation":"Ships in 1 week","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Very happy with my purchase!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Emily Johnson","reviewerEmail":"emily.johnson@x.dummyjson.com"},{"rating":5,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Jaxon Barnes","reviewerEmail":"jaxon.barnes@x.dummyjson.com"},{"rating":4,"comment":"Would buy again!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Nova Cooper","reviewerEmail":"nova.cooper@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"8576893968169","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/oppo-f19-pro-plus/1.webp","https://cdn.dummyjson.com/product-images/smartphones/oppo-f19-pro-plus/2.webp","https://cdn.dummyjson.com/product-images/smartphones/oppo-f19-pro-plus/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/oppo-f19-pro-plus/thumbnail.webp"},{"id":127,"title":"Oppo K1","description":"The Oppo K1 series offers a range of smartphones with various features and specifications. Known for their stylish design and reliable performance, the Oppo K1 series caters to diverse user preferences.","category":"smartphones","price":299.99,"discountPercentage":18.29,"rating":4.25,"stock":55,"tags":["smartphones","oppo"],"brand":"Oppo","sku":"SMA-OPP-OPP-127","weight":5,"dimensions":{"width":13.89,"height":10.63,"depth":16.6},"warrantyInformation":"1 month warranty","shippingInformation":"Ships in 1-2 business days","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Very pleased!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Christopher West","reviewerEmail":"christopher.west@x.dummyjson.com"},{"rating":4,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Mia Miller","reviewerEmail":"mia.miller@x.dummyjson.com"},{"rating":2,"comment":"Very dissatisfied!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Ella Adams","reviewerEmail":"ella.adams@x.dummyjson.com"}],"returnPolicy":"30 days return policy","minimumOrderQuantity":5,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"3106827888743","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/oppo-k1/1.webp","https://cdn.dummyjson.com/product-images/smartphones/oppo-k1/2.webp","https://cdn.dummyjson.com/product-images/smartphones/oppo-k1/3.webp","https://cdn.dummyjson.com/product-images/smartphones/oppo-k1/4.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/oppo-k1/thumbnail.webp"},{"id":128,"title":"Realme C35","description":"The Realme C35 is a budget-friendly smartphone with a focus on providing essential features for everyday use. It offers a reliable performance and user-friendly experience.","category":"smartphones","price":149.99,"discountPercentage":15.3,"rating":4.2,"stock":48,"tags":["smartphones","realme"],"brand":"Realme","sku":"SMA-REA-REA-128","weight":2,"dimensions":{"width":25.28,"height":8.14,"depth":29.53},"warrantyInformation":"3 year warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Great product!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Penelope King","reviewerEmail":"penelope.king@x.dummyjson.com"},{"rating":2,"comment":"Very unhappy with my purchase!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Asher Scott","reviewerEmail":"asher.scott@x.dummyjson.com"},{"rating":4,"comment":"Highly impressed!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Henry Adams","reviewerEmail":"henry.adams@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":3,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"7825844344364","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/realme-c35/1.webp","https://cdn.dummyjson.com/product-images/smartphones/realme-c35/2.webp","https://cdn.dummyjson.com/product-images/smartphones/realme-c35/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/realme-c35/thumbnail.webp"},{"id":129,"title":"Realme X","description":"The Realme X is a mid-range smartphone known for its sleek design and impressive display. It offers a good balance of performance and camera capabilities for users seeking a quality device.","category":"smartphones","price":299.99,"discountPercentage":6.95,"rating":3.7,"stock":12,"tags":["smartphones","realme"],"brand":"Realme","sku":"SMA-REA-REA-129","weight":4,"dimensions":{"width":25.59,"height":21.42,"depth":12.75},"warrantyInformation":"1 month warranty","shippingInformation":"Ships in 3-5 business days","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Would buy again!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Hazel Evans","reviewerEmail":"hazel.evans@x.dummyjson.com"},{"rating":5,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Brayden Fleming","reviewerEmail":"brayden.fleming@x.dummyjson.com"},{"rating":5,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Madison Stewart","reviewerEmail":"madison.stewart@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":3,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"4948452391831","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/realme-x/1.webp","https://cdn.dummyjson.com/product-images/smartphones/realme-x/2.webp","https://cdn.dummyjson.com/product-images/smartphones/realme-x/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/realme-x/thumbnail.webp"},{"id":130,"title":"Realme XT","description":"The Realme XT is a feature-rich smartphone with a focus on camera technology. It comes equipped with advanced camera sensors, delivering high-quality photos and videos for photography enthusiasts.","category":"smartphones","price":349.99,"discountPercentage":11.51,"rating":4.58,"stock":80,"tags":["smartphones","realme"],"brand":"Realme","sku":"SMA-REA-REA-130","weight":3,"dimensions":{"width":24.98,"height":26.73,"depth":6.5},"warrantyInformation":"3 year warranty","shippingInformation":"Ships in 1 month","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Emily Brown","reviewerEmail":"emily.brown@x.dummyjson.com"},{"rating":3,"comment":"Not as described!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Ella Cook","reviewerEmail":"ella.cook@x.dummyjson.com"},{"rating":5,"comment":"Would buy again!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Layla Sullivan","reviewerEmail":"layla.sullivan@x.dummyjson.com"}],"returnPolicy":"60 days return policy","minimumOrderQuantity":3,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"6151817227632","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/realme-xt/1.webp","https://cdn.dummyjson.com/product-images/smartphones/realme-xt/2.webp","https://cdn.dummyjson.com/product-images/smartphones/realme-xt/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/realme-xt/thumbnail.webp"},{"id":131,"title":"Samsung Galaxy S7","description":"The Samsung Galaxy S7 is a flagship smartphone known for its sleek design and advanced features. It features a high-resolution display, powerful camera, and robust performance.","category":"smartphones","price":299.99,"discountPercentage":19.55,"rating":3.3,"stock":67,"tags":["smartphones","samsung galaxy"],"brand":"Samsung","sku":"SMA-SAM-SAM-131","weight":10,"dimensions":{"width":13.55,"height":24.24,"depth":5.63},"warrantyInformation":"3 months warranty","shippingInformation":"Ships in 3-5 business days","availabilityStatus":"In Stock","reviews":[{"rating":1,"comment":"Not as described!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Julian James","reviewerEmail":"julian.james@x.dummyjson.com"},{"rating":4,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Lucas Gordon","reviewerEmail":"lucas.gordon@x.dummyjson.com"},{"rating":4,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Ava Taylor","reviewerEmail":"ava.taylor@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"7557912146622","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s7/1.webp","https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s7/2.webp","https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s7/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s7/thumbnail.webp"},{"id":132,"title":"Samsung Galaxy S8","description":"The Samsung Galaxy S8 is a premium smartphone with an Infinity Display, offering a stunning visual experience. It boasts advanced camera capabilities and cutting-edge technology.","category":"smartphones","price":499.99,"discountPercentage":19.45,"rating":4.4,"stock":0,"tags":["smartphones","samsung galaxy"],"brand":"Samsung","sku":"SMA-SAM-SAM-132","weight":6,"dimensions":{"width":23.05,"height":26.88,"depth":15.73},"warrantyInformation":"2 year warranty","shippingInformation":"Ships in 1 week","availabilityStatus":"Out of Stock","reviews":[{"rating":4,"comment":"Highly impressed!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Owen Fisher","reviewerEmail":"owen.fisher@x.dummyjson.com"},{"rating":4,"comment":"Highly impressed!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Clara Berry","reviewerEmail":"clara.berry@x.dummyjson.com"},{"rating":4,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Tyler Davis","reviewerEmail":"tyler.davis@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":4,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"5995499013336","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s8/1.webp","https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s8/2.webp","https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s8/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s8/thumbnail.webp"},{"id":133,"title":"Samsung Galaxy S10","description":"The Samsung Galaxy S10 is a flagship device featuring a dynamic AMOLED display, versatile camera system, and powerful performance. It represents innovation and excellence in smartphone technology.","category":"smartphones","price":699.99,"discountPercentage":5.59,"rating":3.06,"stock":19,"tags":["smartphones","samsung galaxy"],"brand":"Samsung","sku":"SMA-SAM-SAM-133","weight":9,"dimensions":{"width":27.41,"height":15.26,"depth":27.02},"warrantyInformation":"No warranty","shippingInformation":"Ships in 2 weeks","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Tristan Scott","reviewerEmail":"tristan.scott@x.dummyjson.com"},{"rating":5,"comment":"Would buy again!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Christopher West","reviewerEmail":"christopher.west@x.dummyjson.com"},{"rating":2,"comment":"Would not recommend!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Amelia Perez","reviewerEmail":"amelia.perez@x.dummyjson.com"}],"returnPolicy":"30 days return policy","minimumOrderQuantity":2,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"4676898229465","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s10/1.webp","https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s10/2.webp","https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s10/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s10/thumbnail.webp"},{"id":134,"title":"Vivo S1","description":"The Vivo S1 is a stylish and mid-range smartphone offering a blend of design and performance. It features a vibrant display, capable camera system, and reliable functionality.","category":"smartphones","price":249.99,"discountPercentage":10.17,"rating":3.5,"stock":50,"tags":["smartphones","vivo"],"brand":"Vivo","sku":"SMA-VIV-VIV-134","weight":4,"dimensions":{"width":14.06,"height":11.79,"depth":6.78},"warrantyInformation":"6 months warranty","shippingInformation":"Ships in 3-5 business days","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Samantha Martinez","reviewerEmail":"samantha.martinez@x.dummyjson.com"},{"rating":3,"comment":"Very disappointed!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Logan Lee","reviewerEmail":"logan.lee@x.dummyjson.com"},{"rating":4,"comment":"Would buy again!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Sophia Jones","reviewerEmail":"sophia.jones@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"8575699153333","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/vivo-s1/1.webp","https://cdn.dummyjson.com/product-images/smartphones/vivo-s1/2.webp","https://cdn.dummyjson.com/product-images/smartphones/vivo-s1/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/vivo-s1/thumbnail.webp"},{"id":135,"title":"Vivo V9","description":"The Vivo V9 is a smartphone known for its sleek design and emphasis on capturing high-quality selfies. It features a notch display, dual-camera setup, and a modern design.","category":"smartphones","price":299.99,"discountPercentage":17.67,"rating":3.6,"stock":82,"tags":["smartphones","vivo"],"brand":"Vivo","sku":"SMA-VIV-VIV-135","weight":4,"dimensions":{"width":19.85,"height":21.83,"depth":13.04},"warrantyInformation":"2 year warranty","shippingInformation":"Ships in 1 month","availabilityStatus":"In Stock","reviews":[{"rating":2,"comment":"Very unhappy with my purchase!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Logan Lawson","reviewerEmail":"logan.lawson@x.dummyjson.com"},{"rating":5,"comment":"Awesome product!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Layla Young","reviewerEmail":"layla.young@x.dummyjson.com"},{"rating":4,"comment":"Great value for money!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Asher Scott","reviewerEmail":"asher.scott@x.dummyjson.com"}],"returnPolicy":"60 days return policy","minimumOrderQuantity":2,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"4295398764784","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/vivo-v9/1.webp","https://cdn.dummyjson.com/product-images/smartphones/vivo-v9/2.webp","https://cdn.dummyjson.com/product-images/smartphones/vivo-v9/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/vivo-v9/thumbnail.webp"},{"id":136,"title":"Vivo X21","description":"The Vivo X21 is a premium smartphone with a focus on cutting-edge technology. It features an in-display fingerprint sensor, a high-resolution display, and advanced camera capabilities.","category":"smartphones","price":499.99,"discountPercentage":17.41,"rating":4.26,"stock":7,"tags":["smartphones","vivo"],"brand":"Vivo","sku":"SMA-VIV-VIV-136","weight":10,"dimensions":{"width":22.49,"height":21.62,"depth":27.88},"warrantyInformation":"1 year warranty","shippingInformation":"Ships in 1-2 business days","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Very pleased!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Liam Gonzalez","reviewerEmail":"liam.gonzalez@x.dummyjson.com"},{"rating":4,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Aurora Barnes","reviewerEmail":"aurora.barnes@x.dummyjson.com"},{"rating":2,"comment":"Not as described!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Evelyn Walker","reviewerEmail":"evelyn.walker@x.dummyjson.com"}],"returnPolicy":"60 days return policy","minimumOrderQuantity":3,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"9944308291810","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/vivo-x21/1.webp","https://cdn.dummyjson.com/product-images/smartphones/vivo-x21/2.webp","https://cdn.dummyjson.com/product-images/smartphones/vivo-x21/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/vivo-x21/thumbnail.webp"}],"total":23,"skip":0,"limit":23}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response has products array | 1 | 0 | 0 |
| Search result is not empty | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 4 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Retrieves a paginated list of products with specific fields selected, demonstrating pagination and field filtering capabilities.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/products?limit=10&skip=10&select=title,price`
## Authentication
- **Required**: No
- This is a public endpoint that doesn't require authentication
## Parameters
### Query Parameters
- `limit` (optional) - Number of products to return (default: 30)
- `skip` (optional) - Number of products to skip for pagination (default: 0)
- `select` (optional) - Comma-separated list of fields to include in response
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
{
"products": [
{
"id": 11,
"title": "Product Name",
"price": 549
}
],
"total": 194,
"skip": 10,
"limit": 10
}
```
## Tests Included
- Validates response status code is 200
- Verifies correct number of products returned (limit)
- Checks pagination offset (skip)
- Confirms only selected fields are present in response
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc2OTk2NDgxNH0.uuohp2mmjoHfFSzONdqq4-X1oN1EKoS3diOfBuRRnzw |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 17471050-c89c-49c4-be8b-a6d2f23c88db |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc2OTk2MzAxNH0.u-5rlixn4JRTk12Tro8TNtUk3c24CZ3602naTGMIVzc; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc3MjU1MzIxNH0.LZL0vutKADwuToKtiMUv4mQRr36Om2xhN7o_PeCKfUY |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:36 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 93 |
| x-ratelimit-reset | 1769961219 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"24c-Ixzqnac0wdL7dYxmEYVxYgj0DEw" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=ohVHpc6%2FZIZnpYDXPF35bjulTj2BUrmKCmYSjnTjqgutlBJQ9aB0uiHjkN9K96s8aJWlPG8pdGTwk952uGegzzujn8qhez7o51TSKNs%3D"}]} |
| Content-Encoding | br |
| CF-RAY | 9c729f5f3edb2891-AMM |
{"products":[{"id":11,"title":"Annibale Colombo Bed","price":1899.99},{"id":12,"title":"Annibale Colombo Sofa","price":2499.99},{"id":13,"title":"Bedside Table African Cherry","price":299.99},{"id":14,"title":"Knoll Saarinen Executive Conference Chair","price":499.99},{"id":15,"title":"Wooden Bathroom Sink With Mirror","price":799.99},{"id":16,"title":"Apple","price":1.99},{"id":17,"title":"Beef Steak","price":12.99},{"id":18,"title":"Cat Food","price":8.99},{"id":19,"title":"Chicken Meat","price":9.99},{"id":20,"title":"Cooking Oil","price":4.99}],"total":194,"skip":10,"limit":10}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc2OTk2NDgxNH0.uuohp2mmjoHfFSzONdqq4-X1oN1EKoS3diOfBuRRnzw |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 8006b125-3373-4dd4-bfdb-3c82a79fb328 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc2OTk2MzAxNH0.u-5rlixn4JRTk12Tro8TNtUk3c24CZ3602naTGMIVzc; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc3MjU1MzIxNH0.LZL0vutKADwuToKtiMUv4mQRr36Om2xhN7o_PeCKfUY |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:36 GMT |
| Content-Type | application/json; charset=utf-8 |
| Content-Length | 47 |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 96 |
| x-ratelimit-reset | 1769961223 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"2f-Dm0cDEBeWcz70gE8IkcQnAojjLY" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=Qd1VH%2FAQMOSlU5cEKWUxvhfTJnS2IPTYfjH0ADnIq1VbPIcU5r4hUsLmU3D5R9%2BmaS896lAiGL0PH1cize%2FznbCb%2B960ASulosBKZR4%3D"}]} |
| CF-RAY | 9c729f60d8ad2891-AMM |
{"message":"Invalid 'skip' - must be a number"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 400 for invalid limit or skip | 1 | 0 | 0 |
| Error message is returned | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Retrieves all products sorted by a specific field in ascending or descending order.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/products?sortBy=title&order=asc`
## Authentication
- **Required**: No
- This is a public endpoint that doesn't require authentication
## Parameters
### Query Parameters
- `sortBy` (optional) - Field name to sort by (e.g., title, price, rating)
- `order` (optional) - Sort order: `asc` (ascending) or `desc` (descending)
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
{
"products": [
{
"id": 1,
"title": "A Product Name",
"price": 549,
...
}
],
"total": 194,
"skip": 0,
"limit": 30
}
```
## Tests Included
- Validates response status code is 200
- Verifies products array is sorted correctly
- Checks sort order matches requested order (asc/desc)
- Confirms all product fields are present
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc2OTk2NDgxNH0.uuohp2mmjoHfFSzONdqq4-X1oN1EKoS3diOfBuRRnzw |
| Content-Type | text/plain |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 43d41fea-cc61-46dc-af86-c712c016c380 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 61 |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc2OTk2MzAxNH0.u-5rlixn4JRTk12Tro8TNtUk3c24CZ3602naTGMIVzc; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc3MjU1MzIxNH0.LZL0vutKADwuToKtiMUv4mQRr36Om2xhN7o_PeCKfUY |
{
"username": "emilys",
"password": "emilyspass"
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:36 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 95 |
| x-ratelimit-reset | 1769961223 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"bb19-WvfGDU1qnETYvaDH9O+xwBDBd50" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=09ppRFaOV6YgB2LiKa1XioWPi1BYN9lsjH7v8mcGxyed7Je%2B3uAoFWqT6Ki9Hux6RhoCQCAnkwVmu3jPx%2Faa%2FAmawXZTj%2BoBrQqRkhI%3D"}]} |
| CF-RAY | 9c729f628a6d2891-AMM |
{"products":[{"id":167,"title":"300 Touring","description":"The 300 Touring is a stylish and comfortable sedan, known for its luxurious features and smooth performance.","category":"vehicle","price":28999.99,"discountPercentage":3.98,"rating":4.05,"stock":54,"tags":["sedans","vehicles"],"brand":"Chrysler","sku":"VEH-CHR-TOU-167","weight":9,"dimensions":{"width":19.2,"height":26.17,"depth":17.28},"warrantyInformation":"3 year warranty","shippingInformation":"Ships in 2 weeks","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Very pleased!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Luna Russell","reviewerEmail":"luna.russell@x.dummyjson.com"},{"rating":5,"comment":"Great product!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Harper Garcia","reviewerEmail":"harper.garcia@x.dummyjson.com"},{"rating":2,"comment":"Not as described!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Harper Turner","reviewerEmail":"harper.turner@x.dummyjson.com"}],"returnPolicy":"30 days return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"6337799339397","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/vehicle/300-touring/1.webp","https://cdn.dummyjson.com/product-images/vehicle/300-touring/2.webp","https://cdn.dummyjson.com/product-images/vehicle/300-touring/3.webp","https://cdn.dummyjson.com/product-images/vehicle/300-touring/4.webp","https://cdn.dummyjson.com/product-images/vehicle/300-touring/5.webp","https://cdn.dummyjson.com/product-images/vehicle/300-touring/6.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/vehicle/300-touring/thumbnail.webp"},{"id":99,"title":"Amazon Echo Plus","description":"The Amazon Echo Plus is a smart speaker with built-in Alexa voice control. It features premium sound quality and serves as a hub for controlling smart home devices.","category":"mobile-accessories","price":99.99,"discountPercentage":12.07,"rating":4.99,"stock":61,"tags":["electronics","smart speakers"],"brand":"Amazon","sku":"MOB-AMA-AMA-099","weight":5,"dimensions":{"width":12.68,"height":15.24,"depth":27.46},"warrantyInformation":"6 months warranty","shippingInformation":"Ships in 1 week","availabilityStatus":"In Stock","reviews":[{"rating":2,"comment":"Would not recommend!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Chloe Morales","reviewerEmail":"chloe.morales@x.dummyjson.com"},{"rating":3,"comment":"Very disappointed!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Mateo Perez","reviewerEmail":"mateo.perez@x.dummyjson.com"},{"rating":4,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Evelyn Walker","reviewerEmail":"evelyn.walker@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":9,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"2256117192038","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/mobile-accessories/amazon-echo-plus/1.webp","https://cdn.dummyjson.com/product-images/mobile-accessories/amazon-echo-plus/2.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/mobile-accessories/amazon-echo-plus/thumbnail.webp"},{"id":137,"title":"American Football","description":"The American Football is a classic ball used in American football games. It is designed for throwing and catching, making it an essential piece of equipment for the sport.","category":"sports-accessories","price":19.99,"discountPercentage":4.93,"rating":4.91,"stock":53,"tags":["sports equipment","american football"],"sku":"SPO-BRD-AME-137","weight":2,"dimensions":{"width":6.88,"height":5.82,"depth":21.96},"warrantyInformation":"6 months warranty","shippingInformation":"Ships in 1 month","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Awesome product!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Scarlett Bowman","reviewerEmail":"scarlett.bowman@x.dummyjson.com"},{"rating":4,"comment":"Would buy again!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Tristan Scott","reviewerEmail":"tristan.scott@x.dummyjson.com"},{"rating":4,"comment":"Very pleased!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Eleanor Tyler","reviewerEmail":"eleanor.tyler@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"0984311727547","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/sports-accessories/american-football/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/sports-accessories/american-football/thumbnail.webp"},{"id":11,"title":"Annibale Colombo Bed","description":"The Annibale Colombo Bed is a luxurious and elegant bed frame, crafted with high-quality materials for a comfortable and stylish bedroom.","category":"furniture","price":1899.99,"discountPercentage":8.57,"rating":4.77,"stock":88,"tags":["furniture","beds"],"brand":"Annibale Colombo","sku":"FUR-ANN-ANN-011","weight":10,"dimensions":{"width":28.16,"height":25.36,"depth":17.28},"warrantyInformation":"1 year warranty","shippingInformation":"Ships in 1 month","availabilityStatus":"In Stock","reviews":[{"rating":2,"comment":"Would not recommend!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Christopher West","reviewerEmail":"christopher.west@x.dummyjson.com"},{"rating":4,"comment":"Highly impressed!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Vivian Carter","reviewerEmail":"vivian.carter@x.dummyjson.com"},{"rating":1,"comment":"Poor quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Mason Wright","reviewerEmail":"mason.wright@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"3610757456581","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/furniture/annibale-colombo-bed/1.webp","https://cdn.dummyjson.com/product-images/furniture/annibale-colombo-bed/2.webp","https://cdn.dummyjson.com/product-images/furniture/annibale-colombo-bed/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/furniture/annibale-colombo-bed/thumbnail.webp"},{"id":12,"title":"Annibale Colombo Sofa","description":"The Annibale Colombo Sofa is a sophisticated and comfortable seating option, featuring exquisite design and premium upholstery for your living room.","category":"furniture","price":2499.99,"discountPercentage":14.4,"rating":3.92,"stock":60,"tags":["furniture","sofas"],"brand":"Annibale Colombo","sku":"FUR-ANN-ANN-012","weight":6,"dimensions":{"width":12.75,"height":20.55,"depth":19.06},"warrantyInformation":"Lifetime warranty","shippingInformation":"Ships in 1 week","availabilityStatus":"In Stock","reviews":[{"rating":3,"comment":"Very unhappy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Christian Perez","reviewerEmail":"christian.perez@x.dummyjson.com"},{"rating":5,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Lillian Bishop","reviewerEmail":"lillian.bishop@x.dummyjson.com"},{"rating":1,"comment":"Poor quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Lillian Simmons","reviewerEmail":"lillian.simmons@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"1777662847736","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/furniture/annibale-colombo-sofa/1.webp","https://cdn.dummyjson.com/product-images/furniture/annibale-colombo-sofa/2.webp","https://cdn.dummyjson.com/product-images/furniture/annibale-colombo-sofa/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/furniture/annibale-colombo-sofa/thumbnail.webp"},{"id":16,"title":"Apple","description":"Fresh and crisp apples, perfect for snacking or incorporating into various recipes.","category":"groceries","price":1.99,"discountPercentage":12.62,"rating":4.19,"stock":8,"tags":["fruits"],"sku":"GRO-BRD-APP-016","weight":9,"dimensions":{"width":13.66,"height":11.01,"depth":9.73},"warrantyInformation":"3 year warranty","shippingInformation":"Ships in 2 weeks","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Sophia Brown","reviewerEmail":"sophia.brown@x.dummyjson.com"},{"rating":1,"comment":"Very dissatisfied!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Scarlett Bowman","reviewerEmail":"scarlett.bowman@x.dummyjson.com"},{"rating":3,"comment":"Very unhappy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"William Gonzalez","reviewerEmail":"william.gonzalez@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":7,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"7962803553314","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/apple/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/apple/thumbnail.webp"},{"id":101,"title":"Apple AirPods Max Silver","description":"The Apple AirPods Max in Silver are premium over-ear headphones with high-fidelity audio, adaptive EQ, and active noise cancellation. Experience immersive sound in style.","category":"mobile-accessories","price":549.99,"discountPercentage":13.67,"rating":3.47,"stock":59,"tags":["electronics","over-ear headphones"],"brand":"Apple","sku":"MOB-APP-APP-101","weight":2,"dimensions":{"width":24.88,"height":14.9,"depth":27.54},"warrantyInformation":"No warranty","shippingInformation":"Ships in 2 weeks","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Henry Adams","reviewerEmail":"henry.adams@x.dummyjson.com"},{"rating":4,"comment":"Very happy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Elijah Cruz","reviewerEmail":"elijah.cruz@x.dummyjson.com"},{"rating":4,"comment":"Would buy again!","date":"2025-04-30T09:41:02.053Z","reviewerName":"William Lopez","reviewerEmail":"william.lopez@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"4062176053732","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/mobile-accessories/apple-airpods-max-silver/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/mobile-accessories/apple-airpods-max-silver/thumbnail.webp"},{"id":100,"title":"Apple Airpods","description":"The Apple Airpods offer a seamless wireless audio experience. With easy pairing, high-quality sound, and Siri integration, they are perfect for on-the-go listening.","category":"mobile-accessories","price":129.99,"discountPercentage":15.54,"rating":4.15,"stock":67,"tags":["electronics","wireless earphones"],"brand":"Apple","sku":"MOB-APP-APP-100","weight":4,"dimensions":{"width":25.79,"height":18.38,"depth":11.53},"warrantyInformation":"3 year warranty","shippingInformation":"Ships in 3-5 business days","availabilityStatus":"In Stock","reviews":[{"rating":3,"comment":"Would not buy again!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Christopher West","reviewerEmail":"christopher.west@x.dummyjson.com"},{"rating":5,"comment":"Great product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Emma Wilson","reviewerEmail":"emma.wilson@x.dummyjson.com"},{"rating":4,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Xavier Wright","reviewerEmail":"xavier.wright@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":4,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"1104115683955","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/mobile-accessories/apple-airpods/1.webp","https://cdn.dummyjson.com/product-images/mobile-accessories/apple-airpods/2.webp","https://cdn.dummyjson.com/product-images/mobile-accessories/apple-airpods/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/mobile-accessories/apple-airpods/thumbnail.webp"},{"id":102,"title":"Apple Airpower Wireless Charger","description":"The Apple AirPower Wireless Charger provides a convenient way to charge your compatible Apple devices wirelessly. Simply place your devices on the charging mat for effortless charging.","category":"mobile-accessories","price":79.99,"discountPercentage":4.48,"rating":3.68,"stock":1,"tags":["electronics","wireless chargers"],"brand":"Apple","sku":"MOB-APP-APP-102","weight":5,"dimensions":{"width":25.25,"height":25.44,"depth":10.98},"warrantyInformation":"2 year warranty","shippingInformation":"Ships in 1 week","availabilityStatus":"Low Stock","reviews":[{"rating":5,"comment":"Would buy again!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Christian Perez","reviewerEmail":"christian.perez@x.dummyjson.com"},{"rating":4,"comment":"Awesome product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Ruby Andrews","reviewerEmail":"ruby.andrews@x.dummyjson.com"},{"rating":3,"comment":"Not worth the price!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Harper Turner","reviewerEmail":"harper.turner@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":7,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"3323662242939","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/mobile-accessories/apple-airpower-wireless-charger/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/mobile-accessories/apple-airpower-wireless-charger/thumbnail.webp"},{"id":103,"title":"Apple HomePod Mini Cosmic Grey","description":"The Apple HomePod Mini in Cosmic Grey is a compact smart speaker that delivers impressive audio and integrates seamlessly with the Apple ecosystem for a smart home experience.","category":"mobile-accessories","price":99.99,"discountPercentage":18.1,"rating":4.62,"stock":27,"tags":["electronics","smart speakers"],"brand":"Apple","sku":"MOB-APP-APP-103","weight":10,"dimensions":{"width":16.02,"height":29.2,"depth":19.81},"warrantyInformation":"3 months warranty","shippingInformation":"Ships in 1 month","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Great product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Max Russell","reviewerEmail":"max.russell@x.dummyjson.com"},{"rating":3,"comment":"Would not buy again!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Isaac Lawrence","reviewerEmail":"isaac.lawrence@x.dummyjson.com"},{"rating":4,"comment":"Very pleased!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Avery Carter","reviewerEmail":"avery.carter@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":8,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"6135642608024","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/mobile-accessories/apple-homepod-mini-cosmic-grey/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/mobile-accessories/apple-homepod-mini-cosmic-grey/thumbnail.webp"},{"id":78,"title":"Apple MacBook Pro 14 Inch Space Grey","description":"The MacBook Pro 14 Inch in Space Grey is a powerful and sleek laptop, featuring Apple's M1 Pro chip for exceptional performance and a stunning Retina display.","category":"laptops","price":1999.99,"discountPercentage":4.69,"rating":3.65,"stock":24,"tags":["laptops","apple"],"brand":"Apple","sku":"LAP-APP-APP-078","weight":9,"dimensions":{"width":20.03,"height":9.54,"depth":14.82},"warrantyInformation":"3 year warranty","shippingInformation":"Ships in 2 weeks","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Very happy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Hazel Evans","reviewerEmail":"hazel.evans@x.dummyjson.com"},{"rating":5,"comment":"Very happy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Christopher West","reviewerEmail":"christopher.west@x.dummyjson.com"},{"rating":4,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Aubrey Garcia","reviewerEmail":"aubrey.garcia@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"5275211560367","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/laptops/apple-macbook-pro-14-inch-space-grey/1.webp","https://cdn.dummyjson.com/product-images/laptops/apple-macbook-pro-14-inch-space-grey/2.webp","https://cdn.dummyjson.com/product-images/laptops/apple-macbook-pro-14-inch-space-grey/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/laptops/apple-macbook-pro-14-inch-space-grey/thumbnail.webp"},{"id":105,"title":"Apple MagSafe Battery Pack","description":"The Apple MagSafe Battery Pack is a portable and convenient way to add extra battery life to your MagSafe-compatible iPhone. Attach it magnetically for a secure connection.","category":"mobile-accessories","price":99.99,"discountPercentage":17.17,"rating":3.62,"stock":1,"tags":["electronics","power banks"],"brand":"Apple","sku":"MOB-APP-APP-105","weight":6,"dimensions":{"width":15.4,"height":11.89,"depth":19.67},"warrantyInformation":"2 year warranty","shippingInformation":"Ships overnight","availabilityStatus":"Low Stock","reviews":[{"rating":2,"comment":"Would not recommend!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Stella Morris","reviewerEmail":"stella.morris@x.dummyjson.com"},{"rating":2,"comment":"Not as described!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Henry Adams","reviewerEmail":"henry.adams@x.dummyjson.com"},{"rating":5,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Cameron Burke","reviewerEmail":"cameron.burke@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":4,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"5157424897794","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/mobile-accessories/apple-magsafe-battery-pack/1.webp","https://cdn.dummyjson.com/product-images/mobile-accessories/apple-magsafe-battery-pack/2.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/mobile-accessories/apple-magsafe-battery-pack/thumbnail.webp"},{"id":106,"title":"Apple Watch Series 4 Gold","description":"The Apple Watch Series 4 in Gold is a stylish and advanced smartwatch with features like heart rate monitoring, fitness tracking, and a beautiful Retina display.","category":"mobile-accessories","price":349.99,"discountPercentage":12.02,"rating":2.74,"stock":33,"tags":["electronics","smartwatches"],"brand":"Apple","sku":"MOB-APP-APP-106","weight":6,"dimensions":{"width":27.69,"height":28.03,"depth":7.11},"warrantyInformation":"6 months warranty","shippingInformation":"Ships in 1 month","availabilityStatus":"In Stock","reviews":[{"rating":3,"comment":"Very unhappy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Chloe Morales","reviewerEmail":"chloe.morales@x.dummyjson.com"},{"rating":4,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Ava Harrison","reviewerEmail":"ava.harrison@x.dummyjson.com"},{"rating":4,"comment":"Would buy again!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Nicholas Bailey","reviewerEmail":"nicholas.bailey@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":3,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"3921248718888","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/mobile-accessories/apple-watch-series-4-gold/1.webp","https://cdn.dummyjson.com/product-images/mobile-accessories/apple-watch-series-4-gold/2.webp","https://cdn.dummyjson.com/product-images/mobile-accessories/apple-watch-series-4-gold/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/mobile-accessories/apple-watch-series-4-gold/thumbnail.webp"},{"id":104,"title":"Apple iPhone Charger","description":"The Apple iPhone Charger is a high-quality charger designed for fast and efficient charging of your iPhone. Ensure your device stays powered up and ready to go.","category":"mobile-accessories","price":19.99,"discountPercentage":18.52,"rating":4.15,"stock":31,"tags":["electronics","chargers"],"brand":"Apple","sku":"MOB-APP-APP-104","weight":1,"dimensions":{"width":13.63,"height":26.25,"depth":5.95},"warrantyInformation":"1 year warranty","shippingInformation":"Ships in 2 weeks","availabilityStatus":"In Stock","reviews":[{"rating":1,"comment":"Very disappointed!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Sadie Morales","reviewerEmail":"sadie.morales@x.dummyjson.com"},{"rating":5,"comment":"Great product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Lily Torres","reviewerEmail":"lily.torres@x.dummyjson.com"},{"rating":2,"comment":"Waste of money!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Luke Cooper","reviewerEmail":"luke.cooper@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":14,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"0879776541417","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/mobile-accessories/apple-iphone-charger/1.webp","https://cdn.dummyjson.com/product-images/mobile-accessories/apple-iphone-charger/2.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/mobile-accessories/apple-iphone-charger/thumbnail.webp"},{"id":79,"title":"Asus Zenbook Pro Dual Screen Laptop","description":"The Asus Zenbook Pro Dual Screen Laptop is a high-performance device with dual screens, providing productivity and versatility for creative professionals.","category":"laptops","price":1799.99,"discountPercentage":11.14,"rating":3.95,"stock":45,"tags":["laptops"],"brand":"Asus","sku":"LAP-ASU-ASU-079","weight":9,"dimensions":{"width":16.6,"height":11.49,"depth":10.89},"warrantyInformation":"3 year warranty","shippingInformation":"Ships in 1 month","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Very happy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Michael Johnson","reviewerEmail":"michael.johnson@x.dummyjson.com"},{"rating":5,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Zoe Bennett","reviewerEmail":"zoe.bennett@x.dummyjson.com"},{"rating":4,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Mila Hernandez","reviewerEmail":"mila.hernandez@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"7392988535158","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/laptops/asus-zenbook-pro-dual-screen-laptop/1.webp","https://cdn.dummyjson.com/product-images/laptops/asus-zenbook-pro-dual-screen-laptop/2.webp","https://cdn.dummyjson.com/product-images/laptops/asus-zenbook-pro-dual-screen-laptop/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/laptops/asus-zenbook-pro-dual-screen-laptop/thumbnail.webp"},{"id":118,"title":"Attitude Super Leaves Hand Soap","description":"Attitude Super Leaves Hand Soap is a natural and nourishing hand soap enriched with the goodness of super leaves. It cleanses and moisturizes your hands, leaving them feeling fresh and soft.","category":"skin-care","price":8.99,"discountPercentage":18.49,"rating":3.19,"stock":94,"tags":["personal care","hand soap"],"brand":"Attitude","sku":"SKI-ATT-ATT-118","weight":1,"dimensions":{"width":14.05,"height":8.3,"depth":16.62},"warrantyInformation":"6 months warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Liam Garcia","reviewerEmail":"liam.garcia@x.dummyjson.com"},{"rating":4,"comment":"Great product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Victoria McDonald","reviewerEmail":"victoria.mcdonald@x.dummyjson.com"},{"rating":5,"comment":"Very happy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Hannah Robinson","reviewerEmail":"hannah.robinson@x.dummyjson.com"}],"returnPolicy":"60 days return policy","minimumOrderQuantity":41,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"3566048905322","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/skin-care/attitude-super-leaves-hand-soap/1.webp","https://cdn.dummyjson.com/product-images/skin-care/attitude-super-leaves-hand-soap/2.webp","https://cdn.dummyjson.com/product-images/skin-care/attitude-super-leaves-hand-soap/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/skin-care/attitude-super-leaves-hand-soap/thumbnail.webp"},{"id":48,"title":"Bamboo Spatula","description":"The Bamboo Spatula is a versatile kitchen tool made from eco-friendly bamboo. Ideal for flipping, stirring, and serving various dishes.","category":"kitchen-accessories","price":7.99,"discountPercentage":2.84,"rating":3.27,"stock":37,"tags":["kitchen tools","utensils"],"sku":"KIT-BRD-BAM-048","weight":3,"dimensions":{"width":21.32,"height":23.03,"depth":25.94},"warrantyInformation":"1 month warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Awesome product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Lucas Ramirez","reviewerEmail":"lucas.ramirez@x.dummyjson.com"},{"rating":5,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Caleb Perkins","reviewerEmail":"caleb.perkins@x.dummyjson.com"},{"rating":4,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Nolan Gonzalez","reviewerEmail":"nolan.gonzalez@x.dummyjson.com"}],"returnPolicy":"60 days return policy","minimumOrderQuantity":29,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"3988181417733","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/kitchen-accessories/bamboo-spatula/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/kitchen-accessories/bamboo-spatula/thumbnail.webp"},{"id":138,"title":"Baseball Ball","description":"The Baseball Ball is a standard baseball used in baseball games. It features a durable leather cover and is designed for pitching, hitting, and fielding in the game of baseball.","category":"sports-accessories","price":8.99,"discountPercentage":1.71,"rating":2.57,"stock":100,"tags":["sports equipment","baseball"],"sku":"SPO-BRD-BAS-138","weight":5,"dimensions":{"width":14.42,"height":22.65,"depth":15.89},"warrantyInformation":"6 months warranty","shippingInformation":"Ships in 1 week","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Scarlett Wright","reviewerEmail":"scarlett.wright@x.dummyjson.com"},{"rating":4,"comment":"Great value for money!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Carter Baker","reviewerEmail":"carter.baker@x.dummyjson.com"},{"rating":1,"comment":"Poor quality!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Aria Flores","reviewerEmail":"aria.flores@x.dummyjson.com"}],"returnPolicy":"30 days return policy","minimumOrderQuantity":11,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"8981184448425","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/sports-accessories/baseball-ball/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/sports-accessories/baseball-ball/thumbnail.webp"},{"id":139,"title":"Baseball Glove","description":"The Baseball Glove is a protective glove worn by baseball players. It is designed to catch and field the baseball, providing players with comfort and control during the game.","category":"sports-accessories","price":24.99,"discountPercentage":2.9,"rating":3.96,"stock":22,"tags":["sports equipment","baseball"],"sku":"SPO-BRD-BAS-139","weight":1,"dimensions":{"width":23.84,"height":11.12,"depth":5.85},"warrantyInformation":"Lifetime warranty","shippingInformation":"Ships in 2 weeks","availabilityStatus":"In Stock","reviews":[{"rating":1,"comment":"Very unhappy with my purchase!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Hazel Gardner","reviewerEmail":"hazel.gardner@x.dummyjson.com"},{"rating":4,"comment":"Great value for money!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Scarlett Wright","reviewerEmail":"scarlett.wright@x.dummyjson.com"},{"rating":3,"comment":"Would not recommend!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Nathan Reed","reviewerEmail":"nathan.reed@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":8,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"1607433635330","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/sports-accessories/baseball-glove/1.webp","https://cdn.dummyjson.com/product-images/sports-accessories/baseball-glove/2.webp","https://cdn.dummyjson.com/product-images/sports-accessories/baseball-glove/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/sports-accessories/baseball-glove/thumbnail.webp"},{"id":140,"title":"Basketball","description":"The Basketball is a standard ball used in basketball games. It is designed for dribbling, shooting, and passing in the game of basketball, suitable for both indoor and outdoor play.","category":"sports-accessories","price":14.99,"discountPercentage":7.44,"rating":4.66,"stock":75,"tags":["sports equipment","basketball"],"sku":"SPO-BRD-BAS-140","weight":7,"dimensions":{"width":27.86,"height":10.64,"depth":18.75},"warrantyInformation":"1 year warranty","shippingInformation":"Ships in 1 week","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Mia Rodriguez","reviewerEmail":"mia.rodriguez@x.dummyjson.com"},{"rating":2,"comment":"Would not buy again!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Ella Adams","reviewerEmail":"ella.adams@x.dummyjson.com"},{"rating":4,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Aubrey Garcia","reviewerEmail":"aubrey.garcia@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":11,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"3219724919696","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/sports-accessories/basketball/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/sports-accessories/basketball/thumbnail.webp"},{"id":141,"title":"Basketball Rim","description":"The Basketball Rim is a sturdy hoop and net assembly mounted on a basketball backboard. It provides a target for shooting and scoring in the game of basketball.","category":"sports-accessories","price":39.99,"discountPercentage":7.74,"rating":4.6,"stock":43,"tags":["sports equipment","basketball"],"sku":"SPO-BRD-BAS-141","weight":1,"dimensions":{"width":15.83,"height":20.87,"depth":7.27},"warrantyInformation":"3 months warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Mason Wright","reviewerEmail":"mason.wright@x.dummyjson.com"},{"rating":5,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Tristan Scott","reviewerEmail":"tristan.scott@x.dummyjson.com"},{"rating":1,"comment":"Would not buy again!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Max Parker","reviewerEmail":"max.parker@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":9,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"6916173283925","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/sports-accessories/basketball-rim/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/sports-accessories/basketball-rim/thumbnail.webp"},{"id":107,"title":"Beats Flex Wireless Earphones","description":"The Beats Flex Wireless Earphones offer a comfortable and versatile audio experience. With magnetic earbuds and up to 12 hours of battery life, they are ideal for everyday use.","category":"mobile-accessories","price":49.99,"discountPercentage":5.73,"rating":4.24,"stock":50,"tags":["electronics","wireless earphones"],"brand":"Beats","sku":"MOB-BEA-BEA-107","weight":8,"dimensions":{"width":17.86,"height":25.74,"depth":23.09},"warrantyInformation":"1 year warranty","shippingInformation":"Ships in 1-2 business days","availabilityStatus":"In Stock","reviews":[{"rating":2,"comment":"Disappointing product!","date":"2025-04-30T09:41:02.053Z","reviewerName":"William Gonzalez","reviewerEmail":"william.gonzalez@x.dummyjson.com"},{"rating":5,"comment":"Very pleased!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Gabriel Mitchell","reviewerEmail":"gabriel.mitchell@x.dummyjson.com"},{"rating":2,"comment":"Not worth the price!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Gabriel Adams","reviewerEmail":"gabriel.adams@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":17,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"1741271692174","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/mobile-accessories/beats-flex-wireless-earphones/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/mobile-accessories/beats-flex-wireless-earphones/thumbnail.webp"},{"id":13,"title":"Bedside Table African Cherry","description":"The Bedside Table in African Cherry is a stylish and functional addition to your bedroom, providing convenient storage space and a touch of elegance.","category":"furniture","price":299.99,"discountPercentage":19.09,"rating":2.87,"stock":64,"tags":["furniture","bedside tables"],"brand":"Furniture Co.","sku":"FUR-FUR-BED-013","weight":2,"dimensions":{"width":13.47,"height":24.99,"depth":27.35},"warrantyInformation":"5 year warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Aaliyah Hanson","reviewerEmail":"aaliyah.hanson@x.dummyjson.com"},{"rating":4,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Liam Smith","reviewerEmail":"liam.smith@x.dummyjson.com"},{"rating":4,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Avery Barnes","reviewerEmail":"avery.barnes@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":3,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"6441287925979","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/furniture/bedside-table-african-cherry/1.webp","https://cdn.dummyjson.com/product-images/furniture/bedside-table-african-cherry/2.webp","https://cdn.dummyjson.com/product-images/furniture/bedside-table-african-cherry/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/furniture/bedside-table-african-cherry/thumbnail.webp"},{"id":17,"title":"Beef Steak","description":"High-quality beef steak, great for grilling or cooking to your preferred level of doneness.","category":"groceries","price":12.99,"discountPercentage":9.61,"rating":4.47,"stock":86,"tags":["meat"],"sku":"GRO-BRD-BEE-017","weight":10,"dimensions":{"width":18.9,"height":5.77,"depth":18.57},"warrantyInformation":"3 year warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":3,"comment":"Would not recommend!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Eleanor Tyler","reviewerEmail":"eleanor.tyler@x.dummyjson.com"},{"rating":4,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Alexander Jones","reviewerEmail":"alexander.jones@x.dummyjson.com"},{"rating":5,"comment":"Great value for money!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Natalie Harris","reviewerEmail":"natalie.harris@x.dummyjson.com"}],"returnPolicy":"60 days return policy","minimumOrderQuantity":43,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"5640063409695","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/beef-steak/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/beef-steak/thumbnail.webp"},{"id":185,"title":"Black & Brown Slipper","description":"The Black & Brown Slipper is a comfortable and stylish choice for casual wear. Featuring a blend of black and brown colors, it adds a touch of sophistication to your relaxation.","category":"womens-shoes","price":19.99,"discountPercentage":3.33,"rating":2.53,"stock":3,"tags":["footwear","slippers"],"brand":"Comfort Trends","sku":"WOM-COM-BLA-185","weight":5,"dimensions":{"width":21.35,"height":26.21,"depth":17},"warrantyInformation":"Lifetime warranty","shippingInformation":"Ships in 1 month","availabilityStatus":"Low Stock","reviews":[{"rating":5,"comment":"Highly impressed!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Isaac Lawrence","reviewerEmail":"isaac.lawrence@x.dummyjson.com"},{"rating":2,"comment":"Not worth the price!","date":"2025-04-30T09:41:02.054Z","reviewerName":"William Gonzalez","reviewerEmail":"william.gonzalez@x.dummyjson.com"},{"rating":4,"comment":"Very happy with my purchase!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Sophia Jones","reviewerEmail":"sophia.jones@x.dummyjson.com"}],"returnPolicy":"60 days return policy","minimumOrderQuantity":47,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"5732146194724","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/womens-shoes/black-&-brown-slipper/1.webp","https://cdn.dummyjson.com/product-images/womens-shoes/black-&-brown-slipper/2.webp","https://cdn.dummyjson.com/product-images/womens-shoes/black-&-brown-slipper/3.webp","https://cdn.dummyjson.com/product-images/womens-shoes/black-&-brown-slipper/4.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/womens-shoes/black-&-brown-slipper/thumbnail.webp"},{"id":49,"title":"Black Aluminium Cup","description":"The Black Aluminium Cup is a stylish and durable cup suitable for both hot and cold beverages. Its sleek black design adds a modern touch to your drinkware collection.","category":"kitchen-accessories","price":5.99,"discountPercentage":15.65,"rating":4.46,"stock":75,"tags":["drinkware","cups"],"sku":"KIT-BRD-BLA-049","weight":7,"dimensions":{"width":5.88,"height":5.11,"depth":10.03},"warrantyInformation":"1 year warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":3,"comment":"Very disappointed!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Alexander Hernandez","reviewerEmail":"alexander.hernandez@x.dummyjson.com"},{"rating":5,"comment":"Great value for money!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Aurora Rodriguez","reviewerEmail":"aurora.rodriguez@x.dummyjson.com"},{"rating":1,"comment":"Not worth the price!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Benjamin Foster","reviewerEmail":"benjamin.foster@x.dummyjson.com"}],"returnPolicy":"30 days return policy","minimumOrderQuantity":48,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"5606164195748","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/kitchen-accessories/black-aluminium-cup/1.webp","https://cdn.dummyjson.com/product-images/kitchen-accessories/black-aluminium-cup/2.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/kitchen-accessories/black-aluminium-cup/thumbnail.webp"},{"id":154,"title":"Black Sun Glasses","description":"The Black Sun Glasses are a classic and stylish choice, featuring a sleek black frame and tinted lenses. They provide both UV protection and a fashionable look.","category":"sunglasses","price":29.99,"discountPercentage":4.94,"rating":4.41,"stock":60,"tags":["eyewear","sunglasses"],"brand":"Fashion Shades","sku":"SUN-FAS-BLA-154","weight":1,"dimensions":{"width":18.51,"height":15.69,"depth":10.11},"warrantyInformation":"No warranty","shippingInformation":"Ships in 1-2 business days","availabilityStatus":"In Stock","reviews":[{"rating":3,"comment":"Would not recommend!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Jonathan Pierce","reviewerEmail":"jonathan.pierce@x.dummyjson.com"},{"rating":2,"comment":"Disappointing product!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Owen Fisher","reviewerEmail":"owen.fisher@x.dummyjson.com"},{"rating":4,"comment":"Very happy with my purchase!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Samantha Martinez","reviewerEmail":"samantha.martinez@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":17,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"1045032983803","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/sunglasses/black-sun-glasses/1.webp","https://cdn.dummyjson.com/product-images/sunglasses/black-sun-glasses/2.webp","https://cdn.dummyjson.com/product-images/sunglasses/black-sun-glasses/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/sunglasses/black-sun-glasses/thumbnail.webp"},{"id":50,"title":"Black Whisk","description":"The Black Whisk is a kitchen essential for whisking and beating ingredients. Its ergonomic handle and sleek design make it a practical and stylish tool.","category":"kitchen-accessories","price":9.99,"discountPercentage":10.24,"rating":3.9,"stock":73,"tags":["kitchen tools","utensils"],"sku":"KIT-BRD-BLA-050","weight":1,"dimensions":{"width":13.03,"height":5.99,"depth":20.64},"warrantyInformation":"3 months warranty","shippingInformation":"Ships in 1 month","availabilityStatus":"In Stock","reviews":[{"rating":3,"comment":"Not worth the price!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Cameron Perez","reviewerEmail":"cameron.perez@x.dummyjson.com"},{"rating":1,"comment":"Waste of money!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Benjamin Foster","reviewerEmail":"benjamin.foster@x.dummyjson.com"},{"rating":5,"comment":"Very pleased!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Paisley Bell","reviewerEmail":"paisley.bell@x.dummyjson.com"}],"returnPolicy":"30 days return policy","minimumOrderQuantity":40,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"3112495795209","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/kitchen-accessories/black-whisk/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/kitchen-accessories/black-whisk/thumbnail.webp"},{"id":177,"title":"Black Women's Gown","description":"The Black Women's Gown is an elegant and timeless evening gown. With a sleek black design, it's perfect for formal events and special occasions, exuding sophistication and style.","category":"womens-dresses","price":129.99,"discountPercentage":10.48,"rating":3.64,"stock":25,"tags":["clothing","gowns"],"sku":"WOM-BRD-BLA-177","weight":2,"dimensions":{"width":7.86,"height":9.02,"depth":25.82},"warrantyInformation":"Lifetime warranty","shippingInformation":"Ships in 1 week","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Great value for money!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Ethan Fletcher","reviewerEmail":"ethan.fletcher@x.dummyjson.com"},{"rating":3,"comment":"Very dissatisfied!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Julian Newton","reviewerEmail":"julian.newton@x.dummyjson.com"},{"rating":5,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Savannah Gomez","reviewerEmail":"savannah.gomez@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":5,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"0630346013554","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/womens-dresses/black-women's-gown/1.webp","https://cdn.dummyjson.com/product-images/womens-dresses/black-women's-gown/2.webp","https://cdn.dummyjson.com/product-images/womens-dresses/black-women's-gown/3.webp","https://cdn.dummyjson.com/product-images/womens-dresses/black-women's-gown/4.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/womens-dresses/black-women's-gown/thumbnail.webp"},{"id":83,"title":"Blue & Black Check Shirt","description":"The Blue & Black Check Shirt is a stylish and comfortable men's shirt featuring a classic check pattern. Made from high-quality fabric, it's suitable for both casual and semi-formal occasions.","category":"mens-shirts","price":29.99,"discountPercentage":15.35,"rating":3.64,"stock":38,"tags":["clothing","men's shirts"],"brand":"Fashion Trends","sku":"MEN-FAS-BLU-083","weight":4,"dimensions":{"width":27.49,"height":23.73,"depth":28.61},"warrantyInformation":"3 year warranty","shippingInformation":"Ships in 3-5 business days","availabilityStatus":"In Stock","reviews":[{"rating":1,"comment":"Waste of money!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Logan Lee","reviewerEmail":"logan.lee@x.dummyjson.com"},{"rating":5,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Zachary Lee","reviewerEmail":"zachary.lee@x.dummyjson.com"},{"rating":4,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Aurora Rodriguez","reviewerEmail":"aurora.rodriguez@x.dummyjson.com"}],"returnPolicy":"30 days return policy","minimumOrderQuantity":18,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"7148674604957","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/mens-shirts/blue-&-black-check-shirt/1.webp","https://cdn.dummyjson.com/product-images/mens-shirts/blue-&-black-check-shirt/2.webp","https://cdn.dummyjson.com/product-images/mens-shirts/blue-&-black-check-shirt/3.webp","https://cdn.dummyjson.com/product-images/mens-shirts/blue-&-black-check-shirt/4.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/mens-shirts/blue-&-black-check-shirt/thumbnail.webp"}],"total":194,"skip":0,"limit":30}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| undefined | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 3 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Retrieves a complete list of all available product categories in the system.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/products/categories`
## Authentication
- **Required**: No
- This is a public endpoint that doesn't require authentication
## Parameters
- No parameters required
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
[
{
"slug": "beauty",
"name": "Beauty",
"url": "https://dummyjson.com/products/category/beauty"
},
{
"slug": "fragrances",
"name": "Fragrances",
"url": "https://dummyjson.com/products/category/fragrances"
}
]
```
## Tests Included
- Validates response status code is 200
- Verifies response is an array
- Checks each category has required fields (slug, name, url)
- Confirms categories are not empty
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc2OTk2NDgxNH0.uuohp2mmjoHfFSzONdqq4-X1oN1EKoS3diOfBuRRnzw |
| Content-Type | text/plain |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | bd18e354-c2e7-420d-8703-aa784eb38cea |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 61 |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc2OTk2MzAxNH0.u-5rlixn4JRTk12Tro8TNtUk3c24CZ3602naTGMIVzc; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc3MjU1MzIxNH0.LZL0vutKADwuToKtiMUv4mQRr36Om2xhN7o_PeCKfUY |
{
"username": "emilys",
"password": "emilyspass"
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:36 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 94 |
| x-ratelimit-reset | 1769961223 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"9d0-QmRzWSDU7v9xEumlsVypMgUm22A" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=nl997a8Kbo4VF4G72mygGk25nv24kW1s9WAo8xUf36SBMCbvgHyJxpDdAZfeyJAU1w0hm8NrK5yMxvcq8IXBDgpeEUQTIWJDhREBd%2Bc%3D"}]} |
| CF-RAY | 9c729f643c112891-AMM |
[{"slug":"beauty","name":"Beauty","url":"https://dummyjson.com/products/category/beauty"},{"slug":"fragrances","name":"Fragrances","url":"https://dummyjson.com/products/category/fragrances"},{"slug":"furniture","name":"Furniture","url":"https://dummyjson.com/products/category/furniture"},{"slug":"groceries","name":"Groceries","url":"https://dummyjson.com/products/category/groceries"},{"slug":"home-decoration","name":"Home Decoration","url":"https://dummyjson.com/products/category/home-decoration"},{"slug":"kitchen-accessories","name":"Kitchen Accessories","url":"https://dummyjson.com/products/category/kitchen-accessories"},{"slug":"laptops","name":"Laptops","url":"https://dummyjson.com/products/category/laptops"},{"slug":"mens-shirts","name":"Mens Shirts","url":"https://dummyjson.com/products/category/mens-shirts"},{"slug":"mens-shoes","name":"Mens Shoes","url":"https://dummyjson.com/products/category/mens-shoes"},{"slug":"mens-watches","name":"Mens Watches","url":"https://dummyjson.com/products/category/mens-watches"},{"slug":"mobile-accessories","name":"Mobile Accessories","url":"https://dummyjson.com/products/category/mobile-accessories"},{"slug":"motorcycle","name":"Motorcycle","url":"https://dummyjson.com/products/category/motorcycle"},{"slug":"skin-care","name":"Skin Care","url":"https://dummyjson.com/products/category/skin-care"},{"slug":"smartphones","name":"Smartphones","url":"https://dummyjson.com/products/category/smartphones"},{"slug":"sports-accessories","name":"Sports Accessories","url":"https://dummyjson.com/products/category/sports-accessories"},{"slug":"sunglasses","name":"Sunglasses","url":"https://dummyjson.com/products/category/sunglasses"},{"slug":"tablets","name":"Tablets","url":"https://dummyjson.com/products/category/tablets"},{"slug":"tops","name":"Tops","url":"https://dummyjson.com/products/category/tops"},{"slug":"vehicle","name":"Vehicle","url":"https://dummyjson.com/products/category/vehicle"},{"slug":"womens-bags","name":"Womens Bags","url":"https://dummyjson.com/products/category/womens-bags"},{"slug":"womens-dresses","name":"Womens Dresses","url":"https://dummyjson.com/products/category/womens-dresses"},{"slug":"womens-jewellery","name":"Womens Jewellery","url":"https://dummyjson.com/products/category/womens-jewellery"},{"slug":"womens-shoes","name":"Womens Shoes","url":"https://dummyjson.com/products/category/womens-shoes"},{"slug":"womens-watches","name":"Womens Watches","url":"https://dummyjson.com/products/category/womens-watches"}]
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Retrieves a simplified list of product category names/slugs without additional metadata.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/products/category-list`
## Authentication
- **Required**: No
- This is a public endpoint that doesn't require authentication
## Parameters
- No parameters required
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
[
"beauty",
"fragrances",
"furniture",
"groceries",
"home-decoration",
"kitchen-accessories"
]
```
## Tests Included
- Validates response status code is 200
- Verifies response is an array of strings
- Checks array contains category names
- Confirms list is not empty
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc2OTk2NDgxNH0.uuohp2mmjoHfFSzONdqq4-X1oN1EKoS3diOfBuRRnzw |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 9c6b6cdb-ad47-47dc-b3e1-2c9a1a16d21a |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc2OTk2MzAxNH0.u-5rlixn4JRTk12Tro8TNtUk3c24CZ3602naTGMIVzc; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc3MjU1MzIxNH0.LZL0vutKADwuToKtiMUv4mQRr36Om2xhN7o_PeCKfUY |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:37 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 99 |
| x-ratelimit-reset | 1769961227 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"156-8GSmapwnkZIOOiVZRKE52oLajsg" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=Ia0ajGyoz%2F6mDnpZOgZdmJ6EOToTlM%2F2Q5BMsGxTOL6j%2BgvW15TxWsdaSiOYKml4tXmZ56eV1H1AHWI5WBEeBPdoLxpNXD8fcW0Pvsk%3D"}]} |
| Content-Encoding | br |
| CF-RAY | 9c729f65adf72891-AMM |
["beauty","fragrances","furniture","groceries","home-decoration","kitchen-accessories","laptops","mens-shirts","mens-shoes","mens-watches","mobile-accessories","motorcycle","skin-care","smartphones","sports-accessories","sunglasses","tablets","tops","vehicle","womens-bags","womens-dresses","womens-jewellery","womens-shoes","womens-watches"]
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc2OTk2NDgxNH0.uuohp2mmjoHfFSzONdqq4-X1oN1EKoS3diOfBuRRnzw |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 57e469da-6cbf-4b35-969a-531727dd87cb |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc2OTk2MzAxNH0.u-5rlixn4JRTk12Tro8TNtUk3c24CZ3602naTGMIVzc; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc3MjU1MzIxNH0.LZL0vutKADwuToKtiMUv4mQRr36Om2xhN7o_PeCKfUY |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:37 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 92 |
| x-ratelimit-reset | 1769961220 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"38-zuKX0Tdz5jj2uKVDzDwMn/UTK0c" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=fpBIrpmEPcVM%2B3z6GgTOw7ZvYxDCCX7Fy3Ze0gJ4XLtu43iGIeOkDEfRtuwpVOWZQ9NsZEnHgkQlZOlXvV2e%2FHIAHu4IJTAaG26cRI0%3D"}]} |
| Content-Encoding | br |
| CF-RAY | 9c729f675f832891-AMM |
{"message":"Product with id 'category-array' not found"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 404 | 1 | 0 | 0 |
| Response has error or empty products array | 1 | 0 | 0 |
| Error message exists | 1 | 0 | 0 |
| Total | 3 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Retrieves all products that belong to a specific category.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/products/category/smartphones`
## Authentication
- **Required**: No
- This is a public endpoint that doesn't require authentication
## Parameters
### Path Variables
- `category` (required) - The category slug to filter products by (e.g., smartphones, laptops, beauty)
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
{
"products": [
{
"id": 1,
"title": "Product Name",
"category": "smartphones",
"price": 549,
...
}
],
"total": 5,
"skip": 0,
"limit": 30
}
```
## Tests Included
- Validates response status code is 200
- Verifies all products belong to requested category
- Checks products array structure
- Confirms pagination metadata is present
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc2OTk2NDgxNH0.uuohp2mmjoHfFSzONdqq4-X1oN1EKoS3diOfBuRRnzw |
| Content-Type | text/plain |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 191bf338-3d72-4d42-8f11-572f310a1e2d |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 61 |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc2OTk2MzAxNH0.u-5rlixn4JRTk12Tro8TNtUk3c24CZ3602naTGMIVzc; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc3MjU1MzIxNH0.LZL0vutKADwuToKtiMUv4mQRr36Om2xhN7o_PeCKfUY |
{
"username": "emilys",
"password": "emilyspass"
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:37 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 93 |
| x-ratelimit-reset | 1769961223 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"65a9-15t+98sxzVSOrDMD753lm6EmGiw" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=ZTN93jj%2BTRWXN8XETA6LENYfOLJQ7RqY00pAlH5AQVIYG6212abcPenxXoqDmSUunyRbkVpA%2BdbDVT0VTGVTfOS30e7lI2kqFrrGt0c%3D"}]} |
| CF-RAY | 9c729f68f9d02891-AMM |
{"products":[{"id":121,"title":"iPhone 5s","description":"The iPhone 5s is a classic smartphone known for its compact design and advanced features during its release. While it's an older model, it still provides a reliable user experience.","category":"smartphones","price":199.99,"discountPercentage":12.91,"rating":2.83,"stock":25,"tags":["smartphones","apple"],"brand":"Apple","sku":"SMA-APP-IPH-121","weight":2,"dimensions":{"width":5.29,"height":18.38,"depth":17.72},"warrantyInformation":"Lifetime warranty","shippingInformation":"Ships in 1 month","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Jace Smith","reviewerEmail":"jace.smith@x.dummyjson.com"},{"rating":1,"comment":"Not as described!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Logan Torres","reviewerEmail":"logan.torres@x.dummyjson.com"},{"rating":5,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Harper Kelly","reviewerEmail":"harper.kelly@x.dummyjson.com"}],"returnPolicy":"60 days return policy","minimumOrderQuantity":3,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"8814683940853","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/iphone-5s/1.webp","https://cdn.dummyjson.com/product-images/smartphones/iphone-5s/2.webp","https://cdn.dummyjson.com/product-images/smartphones/iphone-5s/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/iphone-5s/thumbnail.webp"},{"id":122,"title":"iPhone 6","description":"The iPhone 6 is a stylish and capable smartphone with a larger display and improved performance. It introduced new features and design elements, making it a popular choice in its time.","category":"smartphones","price":299.99,"discountPercentage":6.69,"rating":3.41,"stock":60,"tags":["smartphones","apple"],"brand":"Apple","sku":"SMA-APP-IPH-122","weight":7,"dimensions":{"width":11,"height":9.1,"depth":9.67},"warrantyInformation":"1 month warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":3,"comment":"Disappointing product!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Stella Morris","reviewerEmail":"stella.morris@x.dummyjson.com"},{"rating":4,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Nolan Gonzalez","reviewerEmail":"nolan.gonzalez@x.dummyjson.com"},{"rating":5,"comment":"Great value for money!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Benjamin Foster","reviewerEmail":"benjamin.foster@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":5,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"9922357685013","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/iphone-6/1.webp","https://cdn.dummyjson.com/product-images/smartphones/iphone-6/2.webp","https://cdn.dummyjson.com/product-images/smartphones/iphone-6/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/iphone-6/thumbnail.webp"},{"id":123,"title":"iPhone 13 Pro","description":"The iPhone 13 Pro is a cutting-edge smartphone with a powerful camera system, high-performance chip, and stunning display. It offers advanced features for users who demand top-notch technology.","category":"smartphones","price":1099.99,"discountPercentage":9.37,"rating":4.12,"stock":56,"tags":["smartphones","apple"],"brand":"Apple","sku":"SMA-APP-IPH-123","weight":8,"dimensions":{"width":12.63,"height":5.28,"depth":14.29},"warrantyInformation":"3 year warranty","shippingInformation":"Ships in 2 weeks","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Would buy again!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Christian Perez","reviewerEmail":"christian.perez@x.dummyjson.com"},{"rating":3,"comment":"Not worth the price!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Liam Gonzalez","reviewerEmail":"liam.gonzalez@x.dummyjson.com"},{"rating":5,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Tristan Scott","reviewerEmail":"tristan.scott@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"4998438802308","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/iphone-13-pro/1.webp","https://cdn.dummyjson.com/product-images/smartphones/iphone-13-pro/2.webp","https://cdn.dummyjson.com/product-images/smartphones/iphone-13-pro/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/iphone-13-pro/thumbnail.webp"},{"id":124,"title":"iPhone X","description":"The iPhone X is a flagship smartphone featuring a bezel-less OLED display, facial recognition technology (Face ID), and impressive performance. It represents a milestone in iPhone design and innovation.","category":"smartphones","price":899.99,"discountPercentage":19.59,"rating":2.51,"stock":37,"tags":["smartphones","apple"],"brand":"Apple","sku":"SMA-APP-IPH-124","weight":1,"dimensions":{"width":21.88,"height":24.19,"depth":14.19},"warrantyInformation":"3 months warranty","shippingInformation":"Ships in 3-5 business days","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Tyler Davis","reviewerEmail":"tyler.davis@x.dummyjson.com"},{"rating":5,"comment":"Great product!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Aria Parker","reviewerEmail":"aria.parker@x.dummyjson.com"},{"rating":2,"comment":"Not as described!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Lily Torres","reviewerEmail":"lily.torres@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":2,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"3034949322264","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/iphone-x/1.webp","https://cdn.dummyjson.com/product-images/smartphones/iphone-x/2.webp","https://cdn.dummyjson.com/product-images/smartphones/iphone-x/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/iphone-x/thumbnail.webp"},{"id":125,"title":"Oppo A57","description":"The Oppo A57 is a mid-range smartphone known for its sleek design and capable features. It offers a balance of performance and affordability, making it a popular choice.","category":"smartphones","price":249.99,"discountPercentage":2.43,"rating":3.94,"stock":19,"tags":["smartphones","oppo"],"brand":"Oppo","sku":"SMA-OPP-OPP-125","weight":5,"dimensions":{"width":7.2,"height":10.74,"depth":23.68},"warrantyInformation":"Lifetime warranty","shippingInformation":"Ships in 3-5 business days","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Scarlett Wright","reviewerEmail":"scarlett.wright@x.dummyjson.com"},{"rating":5,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Jacob Cooper","reviewerEmail":"jacob.cooper@x.dummyjson.com"},{"rating":2,"comment":"Poor quality!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Zoe Nicholson","reviewerEmail":"zoe.nicholson@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":3,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"0651223722522","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/oppo-a57/1.webp","https://cdn.dummyjson.com/product-images/smartphones/oppo-a57/2.webp","https://cdn.dummyjson.com/product-images/smartphones/oppo-a57/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/oppo-a57/thumbnail.webp"},{"id":126,"title":"Oppo F19 Pro Plus","description":"The Oppo F19 Pro Plus is a feature-rich smartphone with a focus on camera capabilities. It boasts advanced photography features and a powerful performance for a premium user experience.","category":"smartphones","price":399.99,"discountPercentage":18.64,"rating":3.51,"stock":78,"tags":["smartphones","oppo"],"brand":"Oppo","sku":"SMA-OPP-OPP-126","weight":6,"dimensions":{"width":6.78,"height":25.17,"depth":8.4},"warrantyInformation":"3 year warranty","shippingInformation":"Ships in 1 week","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Very happy with my purchase!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Emily Johnson","reviewerEmail":"emily.johnson@x.dummyjson.com"},{"rating":5,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Jaxon Barnes","reviewerEmail":"jaxon.barnes@x.dummyjson.com"},{"rating":4,"comment":"Would buy again!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Nova Cooper","reviewerEmail":"nova.cooper@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"8576893968169","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/oppo-f19-pro-plus/1.webp","https://cdn.dummyjson.com/product-images/smartphones/oppo-f19-pro-plus/2.webp","https://cdn.dummyjson.com/product-images/smartphones/oppo-f19-pro-plus/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/oppo-f19-pro-plus/thumbnail.webp"},{"id":127,"title":"Oppo K1","description":"The Oppo K1 series offers a range of smartphones with various features and specifications. Known for their stylish design and reliable performance, the Oppo K1 series caters to diverse user preferences.","category":"smartphones","price":299.99,"discountPercentage":18.29,"rating":4.25,"stock":55,"tags":["smartphones","oppo"],"brand":"Oppo","sku":"SMA-OPP-OPP-127","weight":5,"dimensions":{"width":13.89,"height":10.63,"depth":16.6},"warrantyInformation":"1 month warranty","shippingInformation":"Ships in 1-2 business days","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Very pleased!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Christopher West","reviewerEmail":"christopher.west@x.dummyjson.com"},{"rating":4,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Mia Miller","reviewerEmail":"mia.miller@x.dummyjson.com"},{"rating":2,"comment":"Very dissatisfied!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Ella Adams","reviewerEmail":"ella.adams@x.dummyjson.com"}],"returnPolicy":"30 days return policy","minimumOrderQuantity":5,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"3106827888743","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/oppo-k1/1.webp","https://cdn.dummyjson.com/product-images/smartphones/oppo-k1/2.webp","https://cdn.dummyjson.com/product-images/smartphones/oppo-k1/3.webp","https://cdn.dummyjson.com/product-images/smartphones/oppo-k1/4.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/oppo-k1/thumbnail.webp"},{"id":128,"title":"Realme C35","description":"The Realme C35 is a budget-friendly smartphone with a focus on providing essential features for everyday use. It offers a reliable performance and user-friendly experience.","category":"smartphones","price":149.99,"discountPercentage":15.3,"rating":4.2,"stock":48,"tags":["smartphones","realme"],"brand":"Realme","sku":"SMA-REA-REA-128","weight":2,"dimensions":{"width":25.28,"height":8.14,"depth":29.53},"warrantyInformation":"3 year warranty","shippingInformation":"Ships overnight","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Great product!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Penelope King","reviewerEmail":"penelope.king@x.dummyjson.com"},{"rating":2,"comment":"Very unhappy with my purchase!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Asher Scott","reviewerEmail":"asher.scott@x.dummyjson.com"},{"rating":4,"comment":"Highly impressed!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Henry Adams","reviewerEmail":"henry.adams@x.dummyjson.com"}],"returnPolicy":"90 days return policy","minimumOrderQuantity":3,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"7825844344364","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/realme-c35/1.webp","https://cdn.dummyjson.com/product-images/smartphones/realme-c35/2.webp","https://cdn.dummyjson.com/product-images/smartphones/realme-c35/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/realme-c35/thumbnail.webp"},{"id":129,"title":"Realme X","description":"The Realme X is a mid-range smartphone known for its sleek design and impressive display. It offers a good balance of performance and camera capabilities for users seeking a quality device.","category":"smartphones","price":299.99,"discountPercentage":6.95,"rating":3.7,"stock":12,"tags":["smartphones","realme"],"brand":"Realme","sku":"SMA-REA-REA-129","weight":4,"dimensions":{"width":25.59,"height":21.42,"depth":12.75},"warrantyInformation":"1 month warranty","shippingInformation":"Ships in 3-5 business days","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Would buy again!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Hazel Evans","reviewerEmail":"hazel.evans@x.dummyjson.com"},{"rating":5,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Brayden Fleming","reviewerEmail":"brayden.fleming@x.dummyjson.com"},{"rating":5,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Madison Stewart","reviewerEmail":"madison.stewart@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":3,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"4948452391831","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/realme-x/1.webp","https://cdn.dummyjson.com/product-images/smartphones/realme-x/2.webp","https://cdn.dummyjson.com/product-images/smartphones/realme-x/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/realme-x/thumbnail.webp"},{"id":130,"title":"Realme XT","description":"The Realme XT is a feature-rich smartphone with a focus on camera technology. It comes equipped with advanced camera sensors, delivering high-quality photos and videos for photography enthusiasts.","category":"smartphones","price":349.99,"discountPercentage":11.51,"rating":4.58,"stock":80,"tags":["smartphones","realme"],"brand":"Realme","sku":"SMA-REA-REA-130","weight":3,"dimensions":{"width":24.98,"height":26.73,"depth":6.5},"warrantyInformation":"3 year warranty","shippingInformation":"Ships in 1 month","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Emily Brown","reviewerEmail":"emily.brown@x.dummyjson.com"},{"rating":3,"comment":"Not as described!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Ella Cook","reviewerEmail":"ella.cook@x.dummyjson.com"},{"rating":5,"comment":"Would buy again!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Layla Sullivan","reviewerEmail":"layla.sullivan@x.dummyjson.com"}],"returnPolicy":"60 days return policy","minimumOrderQuantity":3,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"6151817227632","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/realme-xt/1.webp","https://cdn.dummyjson.com/product-images/smartphones/realme-xt/2.webp","https://cdn.dummyjson.com/product-images/smartphones/realme-xt/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/realme-xt/thumbnail.webp"},{"id":131,"title":"Samsung Galaxy S7","description":"The Samsung Galaxy S7 is a flagship smartphone known for its sleek design and advanced features. It features a high-resolution display, powerful camera, and robust performance.","category":"smartphones","price":299.99,"discountPercentage":19.55,"rating":3.3,"stock":67,"tags":["smartphones","samsung galaxy"],"brand":"Samsung","sku":"SMA-SAM-SAM-131","weight":10,"dimensions":{"width":13.55,"height":24.24,"depth":5.63},"warrantyInformation":"3 months warranty","shippingInformation":"Ships in 3-5 business days","availabilityStatus":"In Stock","reviews":[{"rating":1,"comment":"Not as described!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Julian James","reviewerEmail":"julian.james@x.dummyjson.com"},{"rating":4,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Lucas Gordon","reviewerEmail":"lucas.gordon@x.dummyjson.com"},{"rating":4,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Ava Taylor","reviewerEmail":"ava.taylor@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"7557912146622","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s7/1.webp","https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s7/2.webp","https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s7/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s7/thumbnail.webp"},{"id":132,"title":"Samsung Galaxy S8","description":"The Samsung Galaxy S8 is a premium smartphone with an Infinity Display, offering a stunning visual experience. It boasts advanced camera capabilities and cutting-edge technology.","category":"smartphones","price":499.99,"discountPercentage":19.45,"rating":4.4,"stock":0,"tags":["smartphones","samsung galaxy"],"brand":"Samsung","sku":"SMA-SAM-SAM-132","weight":6,"dimensions":{"width":23.05,"height":26.88,"depth":15.73},"warrantyInformation":"2 year warranty","shippingInformation":"Ships in 1 week","availabilityStatus":"Out of Stock","reviews":[{"rating":4,"comment":"Highly impressed!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Owen Fisher","reviewerEmail":"owen.fisher@x.dummyjson.com"},{"rating":4,"comment":"Highly impressed!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Clara Berry","reviewerEmail":"clara.berry@x.dummyjson.com"},{"rating":4,"comment":"Highly recommended!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Tyler Davis","reviewerEmail":"tyler.davis@x.dummyjson.com"}],"returnPolicy":"No return policy","minimumOrderQuantity":4,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"5995499013336","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s8/1.webp","https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s8/2.webp","https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s8/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s8/thumbnail.webp"},{"id":133,"title":"Samsung Galaxy S10","description":"The Samsung Galaxy S10 is a flagship device featuring a dynamic AMOLED display, versatile camera system, and powerful performance. It represents innovation and excellence in smartphone technology.","category":"smartphones","price":699.99,"discountPercentage":5.59,"rating":3.06,"stock":19,"tags":["smartphones","samsung galaxy"],"brand":"Samsung","sku":"SMA-SAM-SAM-133","weight":9,"dimensions":{"width":27.41,"height":15.26,"depth":27.02},"warrantyInformation":"No warranty","shippingInformation":"Ships in 2 weeks","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Excellent quality!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Tristan Scott","reviewerEmail":"tristan.scott@x.dummyjson.com"},{"rating":5,"comment":"Would buy again!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Christopher West","reviewerEmail":"christopher.west@x.dummyjson.com"},{"rating":2,"comment":"Would not recommend!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Amelia Perez","reviewerEmail":"amelia.perez@x.dummyjson.com"}],"returnPolicy":"30 days return policy","minimumOrderQuantity":2,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"4676898229465","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s10/1.webp","https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s10/2.webp","https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s10/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/samsung-galaxy-s10/thumbnail.webp"},{"id":134,"title":"Vivo S1","description":"The Vivo S1 is a stylish and mid-range smartphone offering a blend of design and performance. It features a vibrant display, capable camera system, and reliable functionality.","category":"smartphones","price":249.99,"discountPercentage":10.17,"rating":3.5,"stock":50,"tags":["smartphones","vivo"],"brand":"Vivo","sku":"SMA-VIV-VIV-134","weight":4,"dimensions":{"width":14.06,"height":11.79,"depth":6.78},"warrantyInformation":"6 months warranty","shippingInformation":"Ships in 3-5 business days","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Very satisfied!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Samantha Martinez","reviewerEmail":"samantha.martinez@x.dummyjson.com"},{"rating":3,"comment":"Very disappointed!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Logan Lee","reviewerEmail":"logan.lee@x.dummyjson.com"},{"rating":4,"comment":"Would buy again!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Sophia Jones","reviewerEmail":"sophia.jones@x.dummyjson.com"}],"returnPolicy":"7 days return policy","minimumOrderQuantity":1,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"8575699153333","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/vivo-s1/1.webp","https://cdn.dummyjson.com/product-images/smartphones/vivo-s1/2.webp","https://cdn.dummyjson.com/product-images/smartphones/vivo-s1/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/vivo-s1/thumbnail.webp"},{"id":135,"title":"Vivo V9","description":"The Vivo V9 is a smartphone known for its sleek design and emphasis on capturing high-quality selfies. It features a notch display, dual-camera setup, and a modern design.","category":"smartphones","price":299.99,"discountPercentage":17.67,"rating":3.6,"stock":82,"tags":["smartphones","vivo"],"brand":"Vivo","sku":"SMA-VIV-VIV-135","weight":4,"dimensions":{"width":19.85,"height":21.83,"depth":13.04},"warrantyInformation":"2 year warranty","shippingInformation":"Ships in 1 month","availabilityStatus":"In Stock","reviews":[{"rating":2,"comment":"Very unhappy with my purchase!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Logan Lawson","reviewerEmail":"logan.lawson@x.dummyjson.com"},{"rating":5,"comment":"Awesome product!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Layla Young","reviewerEmail":"layla.young@x.dummyjson.com"},{"rating":4,"comment":"Great value for money!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Asher Scott","reviewerEmail":"asher.scott@x.dummyjson.com"}],"returnPolicy":"60 days return policy","minimumOrderQuantity":2,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"4295398764784","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/vivo-v9/1.webp","https://cdn.dummyjson.com/product-images/smartphones/vivo-v9/2.webp","https://cdn.dummyjson.com/product-images/smartphones/vivo-v9/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/vivo-v9/thumbnail.webp"},{"id":136,"title":"Vivo X21","description":"The Vivo X21 is a premium smartphone with a focus on cutting-edge technology. It features an in-display fingerprint sensor, a high-resolution display, and advanced camera capabilities.","category":"smartphones","price":499.99,"discountPercentage":17.41,"rating":4.26,"stock":7,"tags":["smartphones","vivo"],"brand":"Vivo","sku":"SMA-VIV-VIV-136","weight":10,"dimensions":{"width":22.49,"height":21.62,"depth":27.88},"warrantyInformation":"1 year warranty","shippingInformation":"Ships in 1-2 business days","availabilityStatus":"In Stock","reviews":[{"rating":4,"comment":"Very pleased!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Liam Gonzalez","reviewerEmail":"liam.gonzalez@x.dummyjson.com"},{"rating":4,"comment":"Fast shipping!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Aurora Barnes","reviewerEmail":"aurora.barnes@x.dummyjson.com"},{"rating":2,"comment":"Not as described!","date":"2025-04-30T09:41:02.054Z","reviewerName":"Evelyn Walker","reviewerEmail":"evelyn.walker@x.dummyjson.com"}],"returnPolicy":"60 days return policy","minimumOrderQuantity":3,"meta":{"createdAt":"2025-04-30T09:41:02.054Z","updatedAt":"2025-04-30T09:41:02.054Z","barcode":"9944308291810","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/smartphones/vivo-x21/1.webp","https://cdn.dummyjson.com/product-images/smartphones/vivo-x21/2.webp","https://cdn.dummyjson.com/product-images/smartphones/vivo-x21/3.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/smartphones/vivo-x21/thumbnail.webp"}],"total":16,"skip":0,"limit":16}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Creates a new product in the system with the provided product details.
## Method & Endpoint
- **Method**: `POST`
- **Endpoint**: `https://dummyjson.com/products/add`
## Authentication
- **Required**: No
- This is a public endpoint for demonstration purposes
## Parameters
### Request Body (JSON)
```json
{
"title": "Product Name",
"description": "Product description",
"price": 999,
"discountPercentage": 10,
"rating": 4.5,
"stock": 50,
"brand": "Brand Name",
"category": "Category Name",
"thumbnail": "image_url"
}
```
**Required Fields**:
- `title` - Product name
- `price` - Product price
**Optional Fields**:
- `description`, `discountPercentage`, `rating`, `stock`, `brand`, `category`, `thumbnail`
## Expected Response
- **Status Code**: `201 Created`
- **Response Structure**: Returns the created product with an assigned ID
```json
{
"id": 195,
"title": "Product Name",
"price": 999,
...
}
```
## Tests Included
- Validates response status code is 201
- Verifies product ID is assigned
- Checks all submitted fields are returned
- Confirms product creation timestamp
| Header Name | Header Value |
|---|---|
| Content-Type | application/json |
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc2OTk2NDgxNH0.uuohp2mmjoHfFSzONdqq4-X1oN1EKoS3diOfBuRRnzw |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | a216a75b-4390-4e30-84e5-fbb288123194 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 125 |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc2OTk2MzAxNH0.u-5rlixn4JRTk12Tro8TNtUk3c24CZ3602naTGMIVzc; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc3MjU1MzIxNH0.LZL0vutKADwuToKtiMUv4mQRr36Om2xhN7o_PeCKfUY |
{
"title": "BMW Pencil",
"price": 100,
"description": "High quality pencil",
"category": "stationery"
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:37 GMT |
| Content-Type | application/json; charset=utf-8 |
| Content-Length | 103 |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 92 |
| x-ratelimit-reset | 1769961223 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"67-0ZPry6/zvpQF03BJfwztu0kNXO4" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=ypki7SylVbUcOZNAsfSaOoy0WzdeGUt899FIIw7Z2UcdRb%2BSXaCm0uZdFj%2F1W%2Bemr%2BfRJHnalieTAIAkbkkEVxCGF1JwbhuIWBAf2Sk%3D"}]} |
| CF-RAY | 9c729f6adbe22891-AMM |
{"id":195,"title":"BMW Pencil","price":100,"description":"High quality pencil","category":"stationery"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 201 | 1 | 0 | 0 |
| Product created successfully | 1 | 0 | 0 |
| All required fields exist | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 4 | 0 | 0 |
| Test Name | Assertion Error |
|---|
| Header Name | Header Value |
|---|---|
| Content-Type | application/json |
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc2OTk2NDgxNH0.uuohp2mmjoHfFSzONdqq4-X1oN1EKoS3diOfBuRRnzw |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | da63d08b-c7a7-4eb8-ad27-f67976417a69 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 25 |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc2OTk2MzAxNH0.u-5rlixn4JRTk12Tro8TNtUk3c24CZ3602naTGMIVzc; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc3MjU1MzIxNH0.LZL0vutKADwuToKtiMUv4mQRr36Om2xhN7o_PeCKfUY |
{
"price": "abd"
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:38 GMT |
| Content-Type | application/json; charset=utf-8 |
| Content-Length | 24 |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 91 |
| x-ratelimit-reset | 1769961223 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"18-L9Dj49E4IFbHCZOI/ckAL4ETueo" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=HLPWV4CbqNLajhLud7z4I2A9fupoORoJmBiZmKVqWSHaCyCruz0mr%2FiJupiK0a6CQc6nCY3SSUY93PuK6xElzwKbl6%2Fetdsl9fMuJzY%3D"}]} |
| CF-RAY | 9c729f6c7da42891-AMM |
{"id":195,"price":"abd"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| API should not accept non-numeric price | 1 | 0 | 0 |
| Total | 1 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Creates a new product using randomly generated test data to validate the product creation endpoint with dynamic values.
## Method & Endpoint
- **Method**: `POST`
- **Endpoint**: `https://dummyjson.com/products/add`
## Authentication
- **Required**: No
- This is a public endpoint for demonstration purposes
## Parameters
### Request Body (JSON)
Uses dynamically generated random data:
```json
{
"title": "Unbranded Wooden Shoes",
"description": "Tasty Gloves",
"price": 21.23,
"discountPercentage": 87,
"rating": 4.5,
"stock": 210,
"brand": "Langworth, Ledner and Stanton",
"category": "{{$randomProductCategory}}",
"thumbnail": "http://placeimg.com/640/480"
}
```
## Expected Response
- **Status Code**: `201 Created`
- **Response Structure**: Returns the created product with random data and assigned ID
```json
{
"id": 195,
"title": "Random Product Name",
"price": 123,
...
}
```
## Tests Included
- Validates response status code is 201
- Verifies product ID is assigned
- Checks random data is properly saved
- Confirms API handles dynamic test data correctly
| Header Name | Header Value |
|---|---|
| Content-Type | application/json |
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc2OTk2NDgxNH0.uuohp2mmjoHfFSzONdqq4-X1oN1EKoS3diOfBuRRnzw |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 3c41e415-43e6-487a-8da3-10aeb41155b7 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 82 |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc2OTk2MzAxNH0.u-5rlixn4JRTk12Tro8TNtUk3c24CZ3602naTGMIVzc; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc3MjU1MzIxNH0.LZL0vutKADwuToKtiMUv4mQRr36Om2xhN7o_PeCKfUY |
{
"title":"Mouse",
"description": "Negative price",
"price": -10
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:38 GMT |
| Content-Type | application/json; charset=utf-8 |
| Content-Length | 69 |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 90 |
| x-ratelimit-reset | 1769961223 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"45-mYI1Wgnayc9UdN0vyD/deiCbBgM" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=GIey%2Fke0XqhPtxiJcW4BWbR%2FHF82TxXDLUUhtLfvYYSOcLbClxwERUSxVdtTWFNK3bNzzetspI8DhQKLBE509j2NP7tlS6LBJzrjJgA%3D"}]} |
| CF-RAY | 9c729f6e0fd22891-AMM |
{"id":195,"title":"Mouse","price":-10,"description":"Negative price"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is as expected | 0 | 1 | 0 |
| Total | 0 | 1 | 0 |
| Test Name | Assertion Error |
|---|---|
| Status code is as expected | |
## Purpose
Updates an existing product's information by its unique identifier.
## Method & Endpoint
- **Method**: `PUT`
- **Endpoint**: `https://dummyjson.com/products/20`
## Authentication
- **Required**: No
- This is a public endpoint for demonstration purposes
## Parameters
### Path Variables
- `productId` (required) - The unique identifier of the product to update
### Request Body (JSON)
```json
{
"title": "Updated Product Name",
"price": 1299,
"description": "Updated description",
"stock": 75
}
```
**Note**: Only include fields you want to update. Unspecified fields remain unchanged.
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**: Returns the updated product with all fields
```json
{
"id": 1,
"title": "Updated Product Name",
"price": 1299,
"description": "Updated description",
"stock": 75,
...
}
```
## Tests Included
- Validates response status code is 200
- Verifies updated fields match request
- Checks product ID remains unchanged
- Confirms other fields are preserved
| Header Name | Header Value |
|---|---|
| Content-Type | application/json |
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc2OTk2NDgxNH0.uuohp2mmjoHfFSzONdqq4-X1oN1EKoS3diOfBuRRnzw |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 26bb9975-be45-4ef3-9905-dad5db684fee |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 37 |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc2OTk2MzAxNH0.u-5rlixn4JRTk12Tro8TNtUk3c24CZ3602naTGMIVzc; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc3MjU1MzIxNH0.LZL0vutKADwuToKtiMUv4mQRr36Om2xhN7o_PeCKfUY |
{
"title": "iPhone Galaxy +1"
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:38 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 92 |
| x-ratelimit-reset | 1769961219 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"192-iTF/37dqMdcAfA3B6GoiupdWK8A" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=bLnfJaSvoYZtARZbwdd%2FO%2FGxtVT7CmcyWe6DfYLMN2UaxP6WSY0XaRYVWWVjo1RajO2EVvmGuNu6JVZhrRR%2Fe4lqJx4nCN5I4w9wwLQ%3D"}]} |
| Content-Encoding | br |
| CF-RAY | 9c729f6f99b32891-AMM |
{"id":20,"title":"iPhone Galaxy +1","price":4.99,"discountPercentage":9.33,"stock":10,"rating":4.8,"images":["https://cdn.dummyjson.com/product-images/groceries/cooking-oil/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/cooking-oil/thumbnail.webp","description":"Versatile cooking oil suitable for frying, sautéing, and various culinary applications.","category":"groceries"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
| Header Name | Header Value |
|---|---|
| Content-Type | application/json |
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc2OTk2NDgxNH0.uuohp2mmjoHfFSzONdqq4-X1oN1EKoS3diOfBuRRnzw |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 87a2b80f-0e34-4c4d-b563-9c74b73db3d1 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 37 |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc2OTk2MzAxNH0.u-5rlixn4JRTk12Tro8TNtUk3c24CZ3602naTGMIVzc; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc3MjU1MzIxNH0.LZL0vutKADwuToKtiMUv4mQRr36Om2xhN7o_PeCKfUY |
{
"title": "iPhone Galaxy +1"
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:38 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 89 |
| x-ratelimit-reset | 1769961223 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"2d-0WtrwaXzWoposFPTOmioRGKyXA8" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=Quq7q%2FYMThRYL9Vo%2Bu5m1Cwwq0SscPewMflksAdEIiP4N8qvNl4t%2BguE7PAAQt3Mk%2BuG1Gk59a5uptkJOhvh5amKHsUTPUGboIp0Iy4%3D"}]} |
| Content-Encoding | br |
| CF-RAY | 9c729f712ba72891-AMM |
{"message":"Product with id '-20' not found"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 404 | 1 | 0 | 0 |
| Response contains not found | 1 | 0 | 0 |
| Error message exists | 1 | 0 | 0 |
| Total | 3 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Deletes a specific product from the system by its unique identifier.
## Method & Endpoint
- **Method**: `DELETE`
- **Endpoint**: `https://dummyjson.com/products/20`
## Authentication
- **Required**: No
- This is a public endpoint for demonstration purposes
## Parameters
### Path Variables
- `productId` (required) - The unique identifier of the product to delete
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**: Returns the deleted product information with deletion confirmation
```json
{
"id": 1,
"title": "Product Name",
"price": 549,
"isDeleted": true,
"deletedOn": "2024-01-01T12:00:00.000Z",
...
}
```
## Tests Included
- Validates response status code is 200
- Verifies `isDeleted` flag is true
- Checks deletion timestamp is present
- Confirms deleted product details are returned
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc2OTk2NDgxNH0.uuohp2mmjoHfFSzONdqq4-X1oN1EKoS3diOfBuRRnzw |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | c1b1d1bf-8fa1-4999-80dd-8de35a804c64 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc2OTk2MzAxNH0.u-5rlixn4JRTk12Tro8TNtUk3c24CZ3602naTGMIVzc; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc3MjU1MzIxNH0.LZL0vutKADwuToKtiMUv4mQRr36Om2xhN7o_PeCKfUY |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:39 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 98 |
| x-ratelimit-reset | 1769961227 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"594-HTqbZUjw07jWGC1udAf5vK0YcvM" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=Qe%2FciZjiUAyriVWhJn0YE%2F5W4bRXrtdBcv7CfUo4%2FNCOtvGz8Ovy5yCjZjsCIwlCmp2Zkz7QV2CgyaG9dkh2ibnshFqWw5W8TTrs878%3D"}]} |
| CF-RAY | 9c729f72bd812891-AMM |
{"id":20,"title":"Cooking Oil","description":"Versatile cooking oil suitable for frying, sautéing, and various culinary applications.","category":"groceries","price":4.99,"discountPercentage":9.33,"rating":4.8,"stock":10,"tags":["cooking essentials"],"sku":"GRO-BRD-COO-020","weight":5,"dimensions":{"width":19.95,"height":27.54,"depth":24.86},"warrantyInformation":"Lifetime warranty","shippingInformation":"Ships in 1-2 business days","availabilityStatus":"In Stock","reviews":[{"rating":5,"comment":"Very happy with my purchase!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Victoria McDonald","reviewerEmail":"victoria.mcdonald@x.dummyjson.com"},{"rating":2,"comment":"Would not recommend!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Hazel Evans","reviewerEmail":"hazel.evans@x.dummyjson.com"},{"rating":5,"comment":"Would buy again!","date":"2025-04-30T09:41:02.053Z","reviewerName":"Zoe Bennett","reviewerEmail":"zoe.bennett@x.dummyjson.com"}],"returnPolicy":"30 days return policy","minimumOrderQuantity":46,"meta":{"createdAt":"2025-04-30T09:41:02.053Z","updatedAt":"2025-04-30T09:41:02.053Z","barcode":"4874727824518","qrCode":"https://cdn.dummyjson.com/public/qr-code.png"},"images":["https://cdn.dummyjson.com/product-images/groceries/cooking-oil/1.webp"],"thumbnail":"https://cdn.dummyjson.com/product-images/groceries/cooking-oil/thumbnail.webp","isDeleted":true,"deletedOn":"2026-02-01T15:53:39.074Z"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| product Deleted successfully | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 3 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Retrieves a paginated list of all shopping carts in the system.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/carts`
## Authentication
- **Required**: No
- This is a public endpoint that doesn't require authentication
## Parameters
- No required parameters
- Optional query parameters: `limit`, `skip` for pagination
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
{
"carts": [
{
"id": 1,
"products": [
{
"id": 1,
"title": "Product Name",
"price": 549,
"quantity": 2,
"total": 1098
}
],
"total": 1098,
"discountedTotal": 985,
"userId": 1,
"totalProducts": 1,
"totalQuantity": 2
}
],
"total": 20,
"skip": 0,
"limit": 30
}
```
## Tests Included
- Validates response status code is 200
- Verifies carts array structure
- Checks pagination metadata
- Confirms cart totals and product details
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc2OTk2NDgxNH0.uuohp2mmjoHfFSzONdqq4-X1oN1EKoS3diOfBuRRnzw |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 2869ada9-f791-469a-a6ec-3edf6f16f69d |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc2OTk2MzAxNH0.u-5rlixn4JRTk12Tro8TNtUk3c24CZ3602naTGMIVzc; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc3MjU1MzIxNH0.LZL0vutKADwuToKtiMUv4mQRr36Om2xhN7o_PeCKfUY |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:39 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 99 |
| x-ratelimit-reset | 1769961229 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"7d39-+rQ7kyHBCLIn9tjTeKVf4oegWkQ" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=Q35yeS%2BCIe5BEoZkVIm40Wok8RNvAcKlLOfHgbkGYMuNXIToomNnl05LJpXhzeGw9yVc59yp2jgbNItEdVRI75%2Bifjoh6B9IuhwZrnE%3D"}]} |
| CF-RAY | 9c729f745f622891-AMM |
{"carts":[{"id":1,"products":[{"id":168,"title":"Charger SXT RWD","price":32999.99,"quantity":3,"total":98999.97,"discountPercentage":13.39,"discountedTotal":85743.87,"thumbnail":"https://cdn.dummyjson.com/products/images/vehicle/Charger%20SXT%20RWD/thumbnail.png"},{"id":78,"title":"Apple MacBook Pro 14 Inch Space Grey","price":1999.99,"quantity":2,"total":3999.98,"discountPercentage":18.52,"discountedTotal":3259.18,"thumbnail":"https://cdn.dummyjson.com/products/images/laptops/Apple%20MacBook%20Pro%2014%20Inch%20Space%20Grey/thumbnail.png"},{"id":183,"title":"Green Oval Earring","price":24.99,"quantity":5,"total":124.94999999999999,"discountPercentage":6.28,"discountedTotal":117.1,"thumbnail":"https://cdn.dummyjson.com/products/images/womens-jewellery/Green%20Oval%20Earring/thumbnail.png"},{"id":100,"title":"Apple Airpods","price":129.99,"quantity":5,"total":649.95,"discountPercentage":12.84,"discountedTotal":566.5,"thumbnail":"https://cdn.dummyjson.com/products/images/mobile-accessories/Apple%20Airpods/thumbnail.png"}],"total":103774.85,"discountedTotal":89686.65,"userId":33,"totalProducts":4,"totalQuantity":15},{"id":2,"products":[{"id":144,"title":"Cricket Helmet","price":44.99,"quantity":4,"total":179.96,"discountPercentage":11.47,"discountedTotal":159.32,"thumbnail":"https://cdn.dummyjson.com/products/images/sports-accessories/Cricket%20Helmet/thumbnail.png"},{"id":124,"title":"iPhone X","price":899.99,"quantity":4,"total":3599.96,"discountPercentage":8.03,"discountedTotal":3310.88,"thumbnail":"https://cdn.dummyjson.com/products/images/smartphones/iPhone%20X/thumbnail.png"},{"id":148,"title":"Golf Ball","price":9.99,"quantity":4,"total":39.96,"discountPercentage":11.24,"discountedTotal":35.47,"thumbnail":"https://cdn.dummyjson.com/products/images/sports-accessories/Golf%20Ball/thumbnail.png"},{"id":122,"title":"iPhone 6","price":299.99,"quantity":3,"total":899.97,"discountPercentage":19.64,"discountedTotal":723.22,"thumbnail":"https://cdn.dummyjson.com/products/images/smartphones/iPhone%206/thumbnail.png"},{"id":110,"title":"Selfie Lamp with iPhone","price":14.99,"quantity":5,"total":74.95,"discountPercentage":19.87,"discountedTotal":60.06,"thumbnail":"https://cdn.dummyjson.com/products/images/mobile-accessories/Selfie%20Lamp%20with%20iPhone/thumbnail.png"}],"total":4794.8,"discountedTotal":4288.95,"userId":142,"totalProducts":5,"totalQuantity":20},{"id":3,"products":[{"id":98,"title":"Rolex Submariner Watch","price":13999.99,"quantity":1,"total":13999.99,"discountPercentage":16.35,"discountedTotal":11710.99,"thumbnail":"https://cdn.dummyjson.com/products/images/mens-watches/Rolex%20Submariner%20Watch/thumbnail.png"},{"id":125,"title":"Oppo A57","price":249.99,"quantity":5,"total":1249.95,"discountPercentage":16.54,"discountedTotal":1043.21,"thumbnail":"https://cdn.dummyjson.com/products/images/smartphones/Oppo%20A57/thumbnail.png"},{"id":55,"title":"Egg Slicer","price":6.99,"quantity":2,"total":13.98,"discountPercentage":16.04,"discountedTotal":11.74,"thumbnail":"https://cdn.dummyjson.com/products/images/kitchen-accessories/Egg%20Slicer/thumbnail.png"},{"id":62,"title":"Ice Cube Tray","price":5.99,"quantity":2,"total":11.98,"discountPercentage":8.25,"discountedTotal":10.99,"thumbnail":"https://cdn.dummyjson.com/products/images/kitchen-accessories/Ice%20Cube%20Tray/thumbnail.png"},{"id":132,"title":"Samsung Galaxy S8","price":499.99,"quantity":3,"total":1499.97,"discountPercentage":8.84,"discountedTotal":1367.37,"thumbnail":"https://cdn.dummyjson.com/products/images/smartphones/Samsung%20Galaxy%20S8/thumbnail.png"}],"total":16775.87,"discountedTotal":14144.3,"userId":108,"totalProducts":5,"totalQuantity":13},{"id":4,"products":[{"id":187,"title":"Golden Shoes Woman","price":49.99,"quantity":5,"total":249.95000000000002,"discountPercentage":1.64,"discountedTotal":245.85,"thumbnail":"https://cdn.dummyjson.com/products/images/womens-shoes/Golden%20Shoes%20Woman/thumbnail.png"},{"id":40,"title":"Strawberry","price":3.99,"quantity":5,"total":19.950000000000003,"discountPercentage":4.6,"discountedTotal":19.03,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Strawberry/thumbnail.png"},{"id":156,"title":"Green and Black Glasses","price":34.99,"quantity":5,"total":174.95000000000002,"discountPercentage":4.34,"discountedTotal":167.36,"thumbnail":"https://cdn.dummyjson.com/products/images/sunglasses/Green%20and%20Black%20Glasses/thumbnail.png"},{"id":62,"title":"Ice Cube Tray","price":5.99,"quantity":2,"total":11.98,"discountPercentage":8.25,"discountedTotal":10.99,"thumbnail":"https://cdn.dummyjson.com/products/images/kitchen-accessories/Ice%20Cube%20Tray/thumbnail.png"}],"total":456.83,"discountedTotal":443.23,"userId":87,"totalProducts":4,"totalQuantity":17},{"id":5,"products":[{"id":108,"title":"iPhone 12 Silicone Case with MagSafe Plum","price":29.99,"quantity":2,"total":59.98,"discountPercentage":14.68,"discountedTotal":51.17,"thumbnail":"https://cdn.dummyjson.com/products/images/mobile-accessories/iPhone%2012%20Silicone%20Case%20with%20MagSafe%20Plum/thumbnail.png"},{"id":138,"title":"Baseball Ball","price":8.99,"quantity":5,"total":44.95,"discountPercentage":18.49,"discountedTotal":36.64,"thumbnail":"https://cdn.dummyjson.com/products/images/sports-accessories/Baseball%20Ball/thumbnail.png"},{"id":157,"title":"Party Glasses","price":19.99,"quantity":2,"total":39.98,"discountPercentage":19.17,"discountedTotal":32.32,"thumbnail":"https://cdn.dummyjson.com/products/images/sunglasses/Party%20Glasses/thumbnail.png"},{"id":8,"title":"Dior J'adore","price":89.99,"quantity":3,"total":269.96999999999997,"discountPercentage":10.79,"discountedTotal":240.84,"thumbnail":"https://cdn.dummyjson.com/products/images/fragrances/Dior%20J'adore/thumbnail.png"},{"id":80,"title":"Huawei Matebook X Pro","price":1399.99,"quantity":5,"total":6999.95,"discountPercentage":9.99,"discountedTotal":6300.65,"thumbnail":"https://cdn.dummyjson.com/products/images/laptops/Huawei%20Matebook%20X%20Pro/thumbnail.png"},{"id":28,"title":"Ice Cream","price":5.49,"quantity":3,"total":16.47,"discountPercentage":10,"discountedTotal":14.82,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Ice%20Cream/thumbnail.png"}],"total":7431.3,"discountedTotal":6676.44,"userId":134,"totalProducts":6,"totalQuantity":20},{"id":6,"products":[{"id":172,"title":"Blue Women's Handbag","price":49.99,"quantity":5,"total":249.95000000000002,"discountPercentage":8.08,"discountedTotal":229.75,"thumbnail":"https://cdn.dummyjson.com/products/images/womens-bags/Blue%20Women's%20Handbag/thumbnail.png"},{"id":112,"title":"TV Studio Camera Pedestal","price":499.99,"quantity":3,"total":1499.97,"discountPercentage":15.69,"discountedTotal":1264.62,"thumbnail":"https://cdn.dummyjson.com/products/images/mobile-accessories/TV%20Studio%20Camera%20Pedestal/thumbnail.png"},{"id":97,"title":"Rolex Datejust","price":10999.99,"quantity":3,"total":32999.97,"discountPercentage":10.58,"discountedTotal":29508.57,"thumbnail":"https://cdn.dummyjson.com/products/images/mens-watches/Rolex%20Datejust/thumbnail.png"},{"id":128,"title":"Realme C35","price":149.99,"quantity":3,"total":449.97,"discountPercentage":3.97,"discountedTotal":432.11,"thumbnail":"https://cdn.dummyjson.com/products/images/smartphones/Realme%20C35/thumbnail.png"}],"total":35199.86,"discountedTotal":31435.05,"userId":150,"totalProducts":4,"totalQuantity":14},{"id":7,"products":[{"id":167,"title":"300 Touring","price":28999.99,"quantity":5,"total":144999.95,"discountPercentage":11.78,"discountedTotal":127918.96,"thumbnail":"https://cdn.dummyjson.com/products/images/vehicle/300%20Touring/thumbnail.png"},{"id":111,"title":"Selfie Stick Monopod","price":12.99,"quantity":4,"total":51.96,"discountPercentage":10.98,"discountedTotal":46.25,"thumbnail":"https://cdn.dummyjson.com/products/images/mobile-accessories/Selfie%20Stick%20Monopod/thumbnail.png"},{"id":129,"title":"Realme X","price":299.99,"quantity":2,"total":599.98,"discountPercentage":10.13,"discountedTotal":539.2,"thumbnail":"https://cdn.dummyjson.com/products/images/smartphones/Realme%20X/thumbnail.png"}],"total":145651.89,"discountedTotal":128504.41,"userId":86,"totalProducts":3,"totalQuantity":11},{"id":8,"products":[{"id":117,"title":"Sportbike Motorcycle","price":7499.99,"quantity":2,"total":14999.98,"discountPercentage":19.83,"discountedTotal":12025.48,"thumbnail":"https://cdn.dummyjson.com/products/images/motorcycle/Sportbike%20Motorcycle/thumbnail.png"},{"id":18,"title":"Cat Food","price":8.99,"quantity":4,"total":35.96,"discountPercentage":1.15,"discountedTotal":35.55,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Cat%20Food/thumbnail.png"},{"id":105,"title":"Apple MagSafe Battery Pack","price":99.99,"quantity":5,"total":499.95,"discountPercentage":7.14,"discountedTotal":464.25,"thumbnail":"https://cdn.dummyjson.com/products/images/mobile-accessories/Apple%20MagSafe%20Battery%20Pack/thumbnail.png"},{"id":6,"title":"Calvin Klein CK One","price":49.99,"quantity":3,"total":149.97,"discountPercentage":5.67,"discountedTotal":141.47,"thumbnail":"https://cdn.dummyjson.com/products/images/fragrances/Calvin%20Klein%20CK%20One/thumbnail.png"}],"total":15685.86,"discountedTotal":12666.75,"userId":23,"totalProducts":4,"totalQuantity":14},{"id":9,"products":[{"id":178,"title":"Corset Leather With Skirt","price":89.99,"quantity":2,"total":179.98,"discountPercentage":12.59,"discountedTotal":157.32,"thumbnail":"https://cdn.dummyjson.com/products/images/womens-dresses/Corset%20Leather%20With%20Skirt/thumbnail.png"},{"id":191,"title":"Rolex Cellini Moonphase","price":15999.99,"quantity":4,"total":63999.96,"discountPercentage":3.26,"discountedTotal":61913.56,"thumbnail":"https://cdn.dummyjson.com/products/images/womens-watches/Rolex%20Cellini%20Moonphase/thumbnail.png"},{"id":47,"title":"Table Lamp","price":49.99,"quantity":2,"total":99.98,"discountPercentage":13.74,"discountedTotal":86.24,"thumbnail":"https://cdn.dummyjson.com/products/images/home-decoration/Table%20Lamp/thumbnail.png"},{"id":134,"title":"Vivo S1","price":249.99,"quantity":5,"total":1249.95,"discountPercentage":5.64,"discountedTotal":1179.45,"thumbnail":"https://cdn.dummyjson.com/products/images/smartphones/Vivo%20S1/thumbnail.png"}],"total":65529.87,"discountedTotal":63336.57,"userId":194,"totalProducts":4,"totalQuantity":13},{"id":10,"products":[{"id":190,"title":"IWC Ingenieur Automatic Steel","price":4999.99,"quantity":5,"total":24999.949999999997,"discountPercentage":12.34,"discountedTotal":21914.96,"thumbnail":"https://cdn.dummyjson.com/products/images/womens-watches/IWC%20Ingenieur%20Automatic%20Steel/thumbnail.png"},{"id":94,"title":"Longines Master Collection","price":1499.99,"quantity":3,"total":4499.97,"discountPercentage":16.44,"discountedTotal":3760.17,"thumbnail":"https://cdn.dummyjson.com/products/images/mens-watches/Longines%20Master%20Collection/thumbnail.png"}],"total":29499.92,"discountedTotal":25675.13,"userId":160,"totalProducts":2,"totalQuantity":8},{"id":11,"products":[{"id":88,"title":"Nike Air Jordan 1 Red And Black","price":149.99,"quantity":1,"total":149.99,"discountPercentage":17.18,"discountedTotal":124.22,"thumbnail":"https://cdn.dummyjson.com/products/images/mens-shoes/Nike%20Air%20Jordan%201%20Red%20And%20Black/thumbnail.png"},{"id":32,"title":"Milk","price":3.49,"quantity":3,"total":10.47,"discountPercentage":9.36,"discountedTotal":9.49,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Milk/thumbnail.png"},{"id":74,"title":"Spoon","price":4.99,"quantity":3,"total":14.97,"discountPercentage":2.78,"discountedTotal":14.55,"thumbnail":"https://cdn.dummyjson.com/products/images/kitchen-accessories/Spoon/thumbnail.png"},{"id":145,"title":"Cricket Wicket","price":29.99,"quantity":3,"total":89.97,"discountPercentage":17.87,"discountedTotal":73.89,"thumbnail":"https://cdn.dummyjson.com/products/images/sports-accessories/Cricket%20Wicket/thumbnail.png"},{"id":26,"title":"Green Chili Pepper","price":0.99,"quantity":3,"total":2.9699999999999998,"discountPercentage":18.69,"discountedTotal":2.41,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Green%20Chili%20Pepper/thumbnail.png"},{"id":127,"title":"Oppo K1","price":299.99,"quantity":1,"total":299.99,"discountPercentage":15.93,"discountedTotal":252.2,"thumbnail":"https://cdn.dummyjson.com/products/images/smartphones/Oppo%20K1/thumbnail.png"}],"total":568.36,"discountedTotal":476.76,"userId":172,"totalProducts":6,"totalQuantity":14},{"id":12,"products":[{"id":63,"title":"Kitchen Sieve","price":7.99,"quantity":4,"total":31.96,"discountPercentage":18.8,"discountedTotal":25.95,"thumbnail":"https://cdn.dummyjson.com/products/images/kitchen-accessories/Kitchen%20Sieve/thumbnail.png"},{"id":181,"title":"Marni Red & Black Suit","price":179.99,"quantity":5,"total":899.95,"discountPercentage":14.21,"discountedTotal":772.07,"thumbnail":"https://cdn.dummyjson.com/products/images/womens-dresses/Marni%20Red%20&%20Black%20Suit/thumbnail.png"}],"total":931.91,"discountedTotal":798.02,"userId":202,"totalProducts":2,"totalQuantity":9},{"id":13,"products":[{"id":85,"title":"Man Plaid Shirt","price":34.99,"quantity":2,"total":69.98,"discountPercentage":3.7,"discountedTotal":67.39,"thumbnail":"https://cdn.dummyjson.com/products/images/mens-shirts/Man%20Plaid%20Shirt/thumbnail.png"},{"id":109,"title":"Monopod","price":19.99,"quantity":3,"total":59.97,"discountPercentage":12.95,"discountedTotal":52.2,"thumbnail":"https://cdn.dummyjson.com/products/images/mobile-accessories/Monopod/thumbnail.png"},{"id":160,"title":"Samsung Galaxy Tab S8 Plus Grey","price":599.99,"quantity":1,"total":599.99,"discountPercentage":4.31,"discountedTotal":574.13,"thumbnail":"https://cdn.dummyjson.com/products/images/tablets/Samsung%20Galaxy%20Tab%20S8%20Plus%20Grey/thumbnail.png"},{"id":163,"title":"Girl Summer Dress","price":19.99,"quantity":3,"total":59.97,"discountPercentage":9.44,"discountedTotal":54.31,"thumbnail":"https://cdn.dummyjson.com/products/images/tops/Girl%20Summer%20Dress/thumbnail.png"},{"id":31,"title":"Lemon","price":0.79,"quantity":4,"total":3.16,"discountPercentage":12.32,"discountedTotal":2.77,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Lemon/thumbnail.png"}],"total":793.07,"discountedTotal":750.8,"userId":41,"totalProducts":5,"totalQuantity":13},{"id":14,"products":[{"id":92,"title":"Sports Sneakers Off White Red","price":109.99,"quantity":3,"total":329.96999999999997,"discountPercentage":17.73,"discountedTotal":271.47,"thumbnail":"https://cdn.dummyjson.com/products/images/mens-shoes/Sports%20Sneakers%20Off%20White%20Red/thumbnail.png"},{"id":54,"title":"Citrus Squeezer Yellow","price":8.99,"quantity":5,"total":44.95,"discountPercentage":6.3,"discountedTotal":42.12,"thumbnail":"https://cdn.dummyjson.com/products/images/kitchen-accessories/Citrus%20Squeezer%20Yellow/thumbnail.png"},{"id":76,"title":"Wooden Rolling Pin","price":11.99,"quantity":1,"total":11.99,"discountPercentage":8.45,"discountedTotal":10.98,"thumbnail":"https://cdn.dummyjson.com/products/images/kitchen-accessories/Wooden%20Rolling%20Pin/thumbnail.png"},{"id":44,"title":"Family Tree Photo Frame","price":29.99,"quantity":5,"total":149.95,"discountPercentage":10.68,"discountedTotal":133.94,"thumbnail":"https://cdn.dummyjson.com/products/images/home-decoration/Family%20Tree%20Photo%20Frame/thumbnail.png"},{"id":67,"title":"Mug Tree Stand","price":15.99,"quantity":3,"total":47.97,"discountPercentage":16.65,"discountedTotal":39.98,"thumbnail":"https://cdn.dummyjson.com/products/images/kitchen-accessories/Mug%20Tree%20Stand/thumbnail.png"},{"id":16,"title":"Apple","price":1.99,"quantity":1,"total":1.99,"discountPercentage":11.74,"discountedTotal":1.76,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Apple/thumbnail.png"}],"total":586.82,"discountedTotal":500.25,"userId":94,"totalProducts":6,"totalQuantity":18},{"id":15,"products":[{"id":11,"title":"Annibale Colombo Bed","price":1899.99,"quantity":5,"total":9499.95,"discountPercentage":8.09,"discountedTotal":8731.4,"thumbnail":"https://cdn.dummyjson.com/products/images/furniture/Annibale%20Colombo%20Bed/thumbnail.png"},{"id":133,"title":"Samsung Galaxy S10","price":699.99,"quantity":3,"total":2099.9700000000003,"discountPercentage":1.12,"discountedTotal":2076.45,"thumbnail":"https://cdn.dummyjson.com/products/images/smartphones/Samsung%20Galaxy%20S10/thumbnail.png"},{"id":111,"title":"Selfie Stick Monopod","price":12.99,"quantity":3,"total":38.97,"discountPercentage":10.98,"discountedTotal":34.69,"thumbnail":"https://cdn.dummyjson.com/products/images/mobile-accessories/Selfie%20Stick%20Monopod/thumbnail.png"},{"id":162,"title":"Blue Frock","price":29.99,"quantity":3,"total":89.97,"discountPercentage":3.86,"discountedTotal":86.5,"thumbnail":"https://cdn.dummyjson.com/products/images/tops/Blue%20Frock/thumbnail.png"},{"id":30,"title":"Kiwi","price":2.49,"quantity":5,"total":12.450000000000001,"discountPercentage":4.34,"discountedTotal":11.91,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Kiwi/thumbnail.png"}],"total":11741.31,"discountedTotal":10940.95,"userId":11,"totalProducts":5,"totalQuantity":19},{"id":16,"products":[{"id":19,"title":"Chicken Meat","price":9.99,"quantity":2,"total":19.98,"discountPercentage":13.37,"discountedTotal":17.31,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Chicken%20Meat/thumbnail.png"},{"id":152,"title":"Tennis Racket","price":49.99,"quantity":3,"total":149.97,"discountPercentage":9.13,"discountedTotal":136.28,"thumbnail":"https://cdn.dummyjson.com/products/images/sports-accessories/Tennis%20Racket/thumbnail.png"},{"id":35,"title":"Potatoes","price":2.29,"quantity":1,"total":2.29,"discountPercentage":1.69,"discountedTotal":2.25,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Potatoes/thumbnail.png"}],"total":172.24,"discountedTotal":155.84,"userId":200,"totalProducts":3,"totalQuantity":6},{"id":17,"products":[{"id":1,"title":"Essence Mascara Lash Princess","price":9.99,"quantity":2,"total":19.98,"discountPercentage":0.63,"discountedTotal":19.85,"thumbnail":"https://cdn.dummyjson.com/products/images/beauty/Essence%20Mascara%20Lash%20Princess/thumbnail.png"},{"id":60,"title":"Grater Black","price":10.99,"quantity":3,"total":32.97,"discountPercentage":16.62,"discountedTotal":27.49,"thumbnail":"https://cdn.dummyjson.com/products/images/kitchen-accessories/Grater%20Black/thumbnail.png"},{"id":74,"title":"Spoon","price":4.99,"quantity":4,"total":19.96,"discountPercentage":2.78,"discountedTotal":19.41,"thumbnail":"https://cdn.dummyjson.com/products/images/kitchen-accessories/Spoon/thumbnail.png"},{"id":44,"title":"Family Tree Photo Frame","price":29.99,"quantity":4,"total":119.96,"discountPercentage":10.68,"discountedTotal":107.15,"thumbnail":"https://cdn.dummyjson.com/products/images/home-decoration/Family%20Tree%20Photo%20Frame/thumbnail.png"}],"total":192.87,"discountedTotal":173.9,"userId":141,"totalProducts":4,"totalQuantity":13},{"id":18,"products":[{"id":127,"title":"Oppo K1","price":299.99,"quantity":4,"total":1199.96,"discountPercentage":15.93,"discountedTotal":1008.81,"thumbnail":"https://cdn.dummyjson.com/products/images/smartphones/Oppo%20K1/thumbnail.png"},{"id":24,"title":"Fish Steak","price":14.99,"quantity":3,"total":44.97,"discountPercentage":7.66,"discountedTotal":41.53,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Fish%20Steak/thumbnail.png"},{"id":20,"title":"Cooking Oil","price":4.99,"quantity":5,"total":24.950000000000003,"discountPercentage":12.62,"discountedTotal":21.8,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Cooking%20Oil/thumbnail.png"},{"id":154,"title":"Black Sun Glasses","price":29.99,"quantity":3,"total":89.97,"discountPercentage":1.11,"discountedTotal":88.97,"thumbnail":"https://cdn.dummyjson.com/products/images/sunglasses/Black%20Sun%20Glasses/thumbnail.png"},{"id":44,"title":"Family Tree Photo Frame","price":29.99,"quantity":2,"total":59.98,"discountPercentage":10.68,"discountedTotal":53.57,"thumbnail":"https://cdn.dummyjson.com/products/images/home-decoration/Family%20Tree%20Photo%20Frame/thumbnail.png"},{"id":5,"title":"Red Nail Polish","price":8.99,"quantity":5,"total":44.95,"discountPercentage":3.76,"discountedTotal":43.26,"thumbnail":"https://cdn.dummyjson.com/products/images/beauty/Red%20Nail%20Polish/thumbnail.png"}],"total":1464.78,"discountedTotal":1257.94,"userId":189,"totalProducts":6,"totalQuantity":22},{"id":19,"products":[{"id":187,"title":"Golden Shoes Woman","price":49.99,"quantity":3,"total":149.97,"discountPercentage":1.64,"discountedTotal":147.51,"thumbnail":"https://cdn.dummyjson.com/products/images/womens-shoes/Golden%20Shoes%20Woman/thumbnail.png"},{"id":153,"title":"Volleyball","price":11.99,"quantity":5,"total":59.95,"discountPercentage":16.05,"discountedTotal":50.33,"thumbnail":"https://cdn.dummyjson.com/products/images/sports-accessories/Volleyball/thumbnail.png"},{"id":34,"title":"Nescafe Coffee","price":7.99,"quantity":3,"total":23.97,"discountPercentage":8.31,"discountedTotal":21.98,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Nescafe%20Coffee/thumbnail.png"},{"id":130,"title":"Realme XT","price":349.99,"quantity":2,"total":699.98,"discountPercentage":17.86,"discountedTotal":574.96,"thumbnail":"https://cdn.dummyjson.com/products/images/smartphones/Realme%20XT/thumbnail.png"}],"total":933.87,"discountedTotal":794.78,"userId":59,"totalProducts":4,"totalQuantity":13},{"id":20,"products":[{"id":107,"title":"Beats Flex Wireless Earphones","price":49.99,"quantity":1,"total":49.99,"discountPercentage":8.79,"discountedTotal":45.6,"thumbnail":"https://cdn.dummyjson.com/products/images/mobile-accessories/Beats%20Flex%20Wireless%20Earphones/thumbnail.png"},{"id":193,"title":"Watch Gold for Women","price":799.99,"quantity":3,"total":2399.9700000000003,"discountPercentage":19.53,"discountedTotal":1931.26,"thumbnail":"https://cdn.dummyjson.com/products/images/womens-watches/Watch%20Gold%20for%20Women/thumbnail.png"},{"id":100,"title":"Apple Airpods","price":129.99,"quantity":3,"total":389.97,"discountPercentage":12.84,"discountedTotal":339.9,"thumbnail":"https://cdn.dummyjson.com/products/images/mobile-accessories/Apple%20Airpods/thumbnail.png"},{"id":90,"title":"Puma Future Rider Trainers","price":89.99,"quantity":5,"total":449.95,"discountPercentage":14.7,"discountedTotal":383.81,"thumbnail":"https://cdn.dummyjson.com/products/images/mens-shoes/Puma%20Future%20Rider%20Trainers/thumbnail.png"},{"id":118,"title":"Attitude Super Leaves Hand Soap","price":8.99,"quantity":5,"total":44.95,"discountPercentage":7.23,"discountedTotal":41.7,"thumbnail":"https://cdn.dummyjson.com/products/images/skin-care/Attitude%20Super%20Leaves%20Hand%20Soap/thumbnail.png"},{"id":166,"title":"Tartan Dress","price":39.99,"quantity":5,"total":199.95000000000002,"discountPercentage":2.82,"discountedTotal":194.31,"thumbnail":"https://cdn.dummyjson.com/products/images/tops/Tartan%20Dress/thumbnail.png"}],"total":3534.78,"discountedTotal":2936.58,"userId":90,"totalProducts":6,"totalQuantity":22},{"id":21,"products":[{"id":77,"title":"Yellow Peeler","price":5.99,"quantity":2,"total":11.98,"discountPercentage":13.16,"discountedTotal":10.4,"thumbnail":"https://cdn.dummyjson.com/products/images/kitchen-accessories/Yellow%20Peeler/thumbnail.png"},{"id":91,"title":"Sports Sneakers Off White & Red","price":119.99,"quantity":2,"total":239.98,"discountPercentage":1.96,"discountedTotal":235.28,"thumbnail":"https://cdn.dummyjson.com/products/images/mens-shoes/Sports%20Sneakers%20Off%20White%20&%20Red/thumbnail.png"}],"total":251.96,"discountedTotal":245.68,"userId":42,"totalProducts":2,"totalQuantity":4},{"id":22,"products":[{"id":73,"title":"Spice Rack","price":19.99,"quantity":5,"total":99.94999999999999,"discountPercentage":8.74,"discountedTotal":91.21,"thumbnail":"https://cdn.dummyjson.com/products/images/kitchen-accessories/Spice%20Rack/thumbnail.png"},{"id":2,"title":"Eyeshadow Palette with Mirror","price":19.99,"quantity":2,"total":39.98,"discountPercentage":0.7,"discountedTotal":39.7,"thumbnail":"https://cdn.dummyjson.com/products/images/beauty/Eyeshadow%20Palette%20with%20Mirror/thumbnail.png"},{"id":69,"title":"Plate","price":3.99,"quantity":2,"total":7.98,"discountPercentage":16,"discountedTotal":6.7,"thumbnail":"https://cdn.dummyjson.com/products/images/kitchen-accessories/Plate/thumbnail.png"},{"id":155,"title":"Classic Sun Glasses","price":24.99,"quantity":3,"total":74.97,"discountPercentage":9.27,"discountedTotal":68.02,"thumbnail":"https://cdn.dummyjson.com/products/images/sunglasses/Classic%20Sun%20Glasses/thumbnail.png"}],"total":222.88,"discountedTotal":205.63,"userId":140,"totalProducts":4,"totalQuantity":12},{"id":23,"products":[{"id":82,"title":"New DELL XPS 13 9300 Laptop","price":1499.99,"quantity":5,"total":7499.95,"discountPercentage":3.9,"discountedTotal":7207.45,"thumbnail":"https://cdn.dummyjson.com/products/images/laptops/New%20DELL%20XPS%2013%209300%20Laptop/thumbnail.png"},{"id":172,"title":"Blue Women's Handbag","price":49.99,"quantity":4,"total":199.96,"discountPercentage":8.08,"discountedTotal":183.8,"thumbnail":"https://cdn.dummyjson.com/products/images/womens-bags/Blue%20Women's%20Handbag/thumbnail.png"},{"id":41,"title":"Tissue Paper Box","price":2.49,"quantity":2,"total":4.98,"discountPercentage":2.74,"discountedTotal":4.84,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Tissue%20Paper%20Box/thumbnail.png"},{"id":37,"title":"Red Onions","price":1.99,"quantity":4,"total":7.96,"discountPercentage":8.95,"discountedTotal":7.25,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Red%20Onions/thumbnail.png"},{"id":138,"title":"Baseball Ball","price":8.99,"quantity":5,"total":44.95,"discountPercentage":18.49,"discountedTotal":36.64,"thumbnail":"https://cdn.dummyjson.com/products/images/sports-accessories/Baseball%20Ball/thumbnail.png"}],"total":7757.8,"discountedTotal":7439.98,"userId":147,"totalProducts":5,"totalQuantity":20},{"id":24,"products":[{"id":108,"title":"iPhone 12 Silicone Case with MagSafe Plum","price":29.99,"quantity":5,"total":149.95,"discountPercentage":14.68,"discountedTotal":127.94,"thumbnail":"https://cdn.dummyjson.com/products/images/mobile-accessories/iPhone%2012%20Silicone%20Case%20with%20MagSafe%20Plum/thumbnail.png"},{"id":134,"title":"Vivo S1","price":249.99,"quantity":4,"total":999.96,"discountPercentage":5.64,"discountedTotal":943.56,"thumbnail":"https://cdn.dummyjson.com/products/images/smartphones/Vivo%20S1/thumbnail.png"},{"id":174,"title":"Prada Women Bag","price":599.99,"quantity":1,"total":599.99,"discountPercentage":12.86,"discountedTotal":522.83,"thumbnail":"https://cdn.dummyjson.com/products/images/womens-bags/Prada%20Women%20Bag/thumbnail.png"}],"total":1749.9,"discountedTotal":1594.33,"userId":6,"totalProducts":3,"totalQuantity":10},{"id":25,"products":[{"id":4,"title":"Red Lipstick","price":12.99,"quantity":1,"total":12.99,"discountPercentage":14.69,"discountedTotal":11.08,"thumbnail":"https://cdn.dummyjson.com/products/images/beauty/Red%20Lipstick/thumbnail.png"},{"id":126,"title":"Oppo F19 Pro+","price":399.99,"quantity":1,"total":399.99,"discountPercentage":14.38,"discountedTotal":342.47,"thumbnail":"https://cdn.dummyjson.com/products/images/smartphones/Oppo%20F19%20Pro+/thumbnail.png"}],"total":412.98,"discountedTotal":353.55,"userId":118,"totalProducts":2,"totalQuantity":2},{"id":26,"products":[{"id":37,"title":"Red Onions","price":1.99,"quantity":5,"total":9.95,"discountPercentage":8.95,"discountedTotal":9.06,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Red%20Onions/thumbnail.png"},{"id":128,"title":"Realme C35","price":149.99,"quantity":3,"total":449.97,"discountPercentage":3.97,"discountedTotal":432.11,"thumbnail":"https://cdn.dummyjson.com/products/images/smartphones/Realme%20C35/thumbnail.png"}],"total":459.92,"discountedTotal":441.17,"userId":66,"totalProducts":2,"totalQuantity":8},{"id":27,"products":[{"id":33,"title":"Mulberry","price":4.99,"quantity":1,"total":4.99,"discountPercentage":2.75,"discountedTotal":4.85,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Mulberry/thumbnail.png"},{"id":110,"title":"Selfie Lamp with iPhone","price":14.99,"quantity":2,"total":29.98,"discountPercentage":19.87,"discountedTotal":24.02,"thumbnail":"https://cdn.dummyjson.com/products/images/mobile-accessories/Selfie%20Lamp%20with%20iPhone/thumbnail.png"},{"id":16,"title":"Apple","price":1.99,"quantity":3,"total":5.97,"discountPercentage":11.74,"discountedTotal":5.27,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Apple/thumbnail.png"},{"id":83,"title":"Blue & Black Check Shirt","price":29.99,"quantity":5,"total":149.95,"discountPercentage":8.76,"discountedTotal":136.81,"thumbnail":"https://cdn.dummyjson.com/products/images/mens-shirts/Blue%20&%20Black%20Check%20Shirt/thumbnail.png"}],"total":190.89,"discountedTotal":170.95,"userId":75,"totalProducts":4,"totalQuantity":11},{"id":28,"products":[{"id":1,"title":"Essence Mascara Lash Princess","price":9.99,"quantity":5,"total":49.95,"discountPercentage":0.63,"discountedTotal":49.64,"thumbnail":"https://cdn.dummyjson.com/products/images/beauty/Essence%20Mascara%20Lash%20Princess/thumbnail.png"},{"id":141,"title":"Basketball Rim","price":39.99,"quantity":4,"total":159.96,"discountPercentage":14.7,"discountedTotal":136.45,"thumbnail":"https://cdn.dummyjson.com/products/images/sports-accessories/Basketball%20Rim/thumbnail.png"}],"total":209.91,"discountedTotal":186.09,"userId":147,"totalProducts":2,"totalQuantity":9},{"id":29,"products":[{"id":80,"title":"Huawei Matebook X Pro","price":1399.99,"quantity":2,"total":2799.98,"discountPercentage":9.99,"discountedTotal":2520.26,"thumbnail":"https://cdn.dummyjson.com/products/images/laptops/Huawei%20Matebook%20X%20Pro/thumbnail.png"},{"id":107,"title":"Beats Flex Wireless Earphones","price":49.99,"quantity":4,"total":199.96,"discountPercentage":8.79,"discountedTotal":182.38,"thumbnail":"https://cdn.dummyjson.com/products/images/mobile-accessories/Beats%20Flex%20Wireless%20Earphones/thumbnail.png"},{"id":25,"title":"Green Bell Pepper","price":1.29,"quantity":2,"total":2.58,"discountPercentage":1.2,"discountedTotal":2.55,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Green%20Bell%20Pepper/thumbnail.png"},{"id":121,"title":"iPhone 5s","price":199.99,"quantity":4,"total":799.96,"discountPercentage":8.38,"discountedTotal":732.92,"thumbnail":"https://cdn.dummyjson.com/products/images/smartphones/iPhone%205s/thumbnail.png"},{"id":153,"title":"Volleyball","price":11.99,"quantity":5,"total":59.95,"discountPercentage":16.05,"discountedTotal":50.33,"thumbnail":"https://cdn.dummyjson.com/products/images/sports-accessories/Volleyball/thumbnail.png"}],"total":3862.43,"discountedTotal":3488.44,"userId":170,"totalProducts":5,"totalQuantity":17},{"id":30,"products":[{"id":181,"title":"Marni Red & Black Suit","price":179.99,"quantity":1,"total":179.99,"discountPercentage":14.21,"discountedTotal":154.41,"thumbnail":"https://cdn.dummyjson.com/products/images/womens-dresses/Marni%20Red%20&%20Black%20Suit/thumbnail.png"},{"id":171,"title":"Pacifica Touring","price":31999.99,"quantity":4,"total":127999.96,"discountPercentage":7.4,"discountedTotal":118527.96,"thumbnail":"https://cdn.dummyjson.com/products/images/vehicle/Pacifica%20Touring/thumbnail.png"},{"id":35,"title":"Potatoes","price":2.29,"quantity":4,"total":9.16,"discountPercentage":1.69,"discountedTotal":9.01,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Potatoes/thumbnail.png"},{"id":46,"title":"Plant Pot","price":14.99,"quantity":4,"total":59.96,"discountPercentage":17.65,"discountedTotal":49.38,"thumbnail":"https://cdn.dummyjson.com/products/images/home-decoration/Plant%20Pot/thumbnail.png"}],"total":128249.07,"discountedTotal":118740.76,"userId":177,"totalProducts":4,"totalQuantity":13}],"total":50,"skip":0,"limit":30}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Required fields exist in first cart | 1 | 0 | 0 |
| Total | 3 | 0 | 0 |
| Test Name | Assertion Error |
|---|
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc2OTk2NDgxNH0.uuohp2mmjoHfFSzONdqq4-X1oN1EKoS3diOfBuRRnzw |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 8acde565-bdc1-4ba9-938f-e4a8e83f06e0 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc2OTk2MzAxNH0.u-5rlixn4JRTk12Tro8TNtUk3c24CZ3602naTGMIVzc; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc3MjU1MzIxNH0.LZL0vutKADwuToKtiMUv4mQRr36Om2xhN7o_PeCKfUY |
| Content-Length | 0 |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:39 GMT |
| Content-Type | text/html; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 88 |
| x-ratelimit-reset | 1769961223 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| content-security-policy | default-src 'none' |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=UbZRQYrsDs2T%2BZ3q04beGIAzr3iFseeJTSf4Wy0m0qt0c27Uo4PHlvf2cUJYeVLDhNMyxU%2BgLnGVMyRSBAAiM6yRqgBAyXT4v40meGU%3D"}]} |
| Content-Encoding | br |
| CF-RAY | 9c729f7609272891-AMM |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Error</title>
</head>
<body>
<pre>Cannot POST /carts</pre>
</body>
</html>
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Wrong method correctly returns 404 or 405 | 1 | 0 | 0 |
| Total | 1 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Retrieves detailed information about a specific shopping cart by its unique identifier.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/carts/11`
## Authentication
- **Required**: No
- This is a public endpoint that doesn't require authentication
## Parameters
### Path Variables
- `cartId` (required) - The unique identifier of the cart to retrieve
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
{
"id": 1,
"products": [
{
"id": 1,
"title": "Product Name",
"price": 549,
"quantity": 2,
"total": 1098,
"discountPercentage": 12.96,
"discountedTotal": 956
}
],
"total": 1098,
"discountedTotal": 956,
"userId": 1,
"totalProducts": 1,
"totalQuantity": 2
}
```
## Tests Included
- Validates response status code is 200
- Verifies cart ID matches request
- Checks products array structure
- Confirms total calculations are correct
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc2OTk2NDgxNH0.uuohp2mmjoHfFSzONdqq4-X1oN1EKoS3diOfBuRRnzw |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 7e8791e1-6e13-40d2-95a4-efb5cf182435 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc2OTk2MzAxNH0.u-5rlixn4JRTk12Tro8TNtUk3c24CZ3602naTGMIVzc; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc3MjU1MzIxNH0.LZL0vutKADwuToKtiMUv4mQRr36Om2xhN7o_PeCKfUY |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:39 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 98 |
| x-ratelimit-reset | 1769961229 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"5d1-dNDH7AwlX9F89w+TElZ1Vd5INzs" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=cAsnXYOvH5Ryb%2FIXctFT3h2ahr4XGl7naRpcTxKsD8XD881O1ED8p%2FmO1n3N5rZRyiDdivrGmbSgdfA0IdqSoydAgatAe%2B%2BwCx%2B%2FMXo%3D"}]} |
| CF-RAY | 9c729f779ad42891-AMM |
{"id":11,"products":[{"id":88,"title":"Nike Air Jordan 1 Red And Black","price":149.99,"quantity":1,"total":149.99,"discountPercentage":17.18,"discountedTotal":124.22,"thumbnail":"https://cdn.dummyjson.com/products/images/mens-shoes/Nike%20Air%20Jordan%201%20Red%20And%20Black/thumbnail.png"},{"id":32,"title":"Milk","price":3.49,"quantity":3,"total":10.47,"discountPercentage":9.36,"discountedTotal":9.49,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Milk/thumbnail.png"},{"id":74,"title":"Spoon","price":4.99,"quantity":3,"total":14.97,"discountPercentage":2.78,"discountedTotal":14.55,"thumbnail":"https://cdn.dummyjson.com/products/images/kitchen-accessories/Spoon/thumbnail.png"},{"id":145,"title":"Cricket Wicket","price":29.99,"quantity":3,"total":89.97,"discountPercentage":17.87,"discountedTotal":73.89,"thumbnail":"https://cdn.dummyjson.com/products/images/sports-accessories/Cricket%20Wicket/thumbnail.png"},{"id":26,"title":"Green Chili Pepper","price":0.99,"quantity":3,"total":2.9699999999999998,"discountPercentage":18.69,"discountedTotal":2.41,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Green%20Chili%20Pepper/thumbnail.png"},{"id":127,"title":"Oppo K1","price":299.99,"quantity":1,"total":299.99,"discountPercentage":15.93,"discountedTotal":252.2,"thumbnail":"https://cdn.dummyjson.com/products/images/smartphones/Oppo%20K1/thumbnail.png"}],"total":568.36,"discountedTotal":476.76,"userId":172,"totalProducts":6,"totalQuantity":14}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Required fields exist in cart | 1 | 0 | 0 |
| Products array is not empty | 1 | 0 | 0 |
| Total | 4 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Retrieves all shopping carts associated with a specific user.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/carts/user/20`
## Authentication
- **Required**: No
- This is a public endpoint that doesn't require authentication
## Parameters
### Path Variables
- `userId` (required) - The unique identifier of the user whose carts to retrieve
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
{
"carts": [
{
"id": 1,
"products": [
{
"id": 1,
"title": "Product Name",
"price": 549,
"quantity": 2,
"total": 1098
}
],
"total": 1098,
"discountedTotal": 985,
"userId": 20,
"totalProducts": 1,
"totalQuantity": 2
}
],
"total": 3,
"skip": 0,
"limit": 30
}
```
## Tests Included
- Validates response status code is 200
- Verifies all carts belong to specified user
- Checks carts array structure
- Confirms user ID matches in all carts
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc2OTk2NDgxNH0.uuohp2mmjoHfFSzONdqq4-X1oN1EKoS3diOfBuRRnzw |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 05ecae96-1c6c-451c-8810-ef7cd19988f8 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc2OTk2MzAxNH0.u-5rlixn4JRTk12Tro8TNtUk3c24CZ3602naTGMIVzc; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc3MjU1MzIxNH0.LZL0vutKADwuToKtiMUv4mQRr36Om2xhN7o_PeCKfUY |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:40 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 87 |
| x-ratelimit-reset | 1769961223 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"452-dejvefTk1JGhUjC9m0sxjP8K8Do" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=fMUOQG%2F5NPjZ6yeqr2bGGUhnYRR6nKlowKxgcssv66LyhqQDNmwA5ASkvYYT%2FHJMnxrYAcwcKAxoVtouwv0T9cUoETjkptyMTNW98%2BY%3D"}]} |
| CF-RAY | 9c729f793ce82891-AMM |
{"carts":[{"id":44,"products":[{"id":93,"title":"Brown Leather Belt Watch","price":89.99,"quantity":3,"total":269.96999999999997,"discountPercentage":8.72,"discountedTotal":246.43,"thumbnail":"https://cdn.dummyjson.com/products/images/mens-watches/Brown%20Leather%20Belt%20Watch/thumbnail.png"},{"id":4,"title":"Red Lipstick","price":12.99,"quantity":2,"total":25.98,"discountPercentage":14.69,"discountedTotal":22.16,"thumbnail":"https://cdn.dummyjson.com/products/images/beauty/Red%20Lipstick/thumbnail.png"},{"id":140,"title":"Basketball","price":14.99,"quantity":5,"total":74.95,"discountPercentage":15.7,"discountedTotal":63.18,"thumbnail":"https://cdn.dummyjson.com/products/images/sports-accessories/Basketball/thumbnail.png"},{"id":83,"title":"Blue & Black Check Shirt","price":29.99,"quantity":3,"total":89.97,"discountPercentage":8.76,"discountedTotal":82.09,"thumbnail":"https://cdn.dummyjson.com/products/images/mens-shirts/Blue%20&%20Black%20Check%20Shirt/thumbnail.png"}],"total":460.87,"discountedTotal":413.86,"userId":20,"totalProducts":4,"totalQuantity":13}],"total":1,"skip":0,"limit":1}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Creates a new shopping cart or adds products to an existing cart for a user.
## Method & Endpoint
- **Method**: `POST`
- **Endpoint**: `https://dummyjson.com/carts/add`
## Authentication
- **Required**: No
- This is a public endpoint for demonstration purposes
## Parameters
### Request Body (JSON)
```json
{
"userId": 1,
"products": [
{
"id": 1,
"quantity": 2
},
{
"id": 5,
"quantity": 1
}
]
}
```
**Required Fields**:
- `userId` - The user ID who owns the cart
- `products` - Array of product objects with `id` and `quantity`
## Expected Response
- **Status Code**: `201 Created`
- **Response Structure**: Returns the created cart with calculated totals
```json
{
"id": 21,
"products": [
{
"id": 1,
"title": "Product Name",
"price": 549,
"quantity": 2,
"total": 1098
}
],
"total": 1098,
"discountedTotal": 985,
"userId": 1,
"totalProducts": 2,
"totalQuantity": 3
}
```
## Tests Included
- Validates response status code is 201
- Verifies cart ID is assigned
- Checks product totals are calculated correctly
- Confirms all products are added to cart
| Header Name | Header Value |
|---|---|
| Content-Type | application/json |
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc2OTk2NDgxNH0.uuohp2mmjoHfFSzONdqq4-X1oN1EKoS3diOfBuRRnzw |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | a5a58deb-df7c-4d47-9dc1-7e842604b3b7 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 152 |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc2OTk2MzAxNH0.u-5rlixn4JRTk12Tro8TNtUk3c24CZ3602naTGMIVzc; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc3MjU1MzIxNH0.LZL0vutKADwuToKtiMUv4mQRr36Om2xhN7o_PeCKfUY |
{
"userId": 1,
"products": [
{
"id": 144,
"quantity": 4
},
{
"id": 98,
"quantity": 1
}
]
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:40 GMT |
| Content-Type | application/json; charset=utf-8 |
| Content-Length | 584 |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 99 |
| x-ratelimit-reset | 1769961230 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"248-5dWqMXWeXCBfsFmAf4sbnGOuqRg" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=N1B18UuwyCjzSLwd8IG7aFDIH7nkFFm6ho6R%2Bic012JTQUxMSDSexXkdNn3nGoLffZyKfazbb2av%2F0YlJIjEzOV9CKJ2aBpNakNj2IE%3D"}]} |
| CF-RAY | 9c729f7acedf2891-AMM |
{"id":51,"products":[{"id":98,"title":"Rolex Submariner Watch","price":13999.99,"quantity":4,"total":55999.96,"discountPercentage":5.05,"discountedPrice":53172,"thumbnail":"https://cdn.dummyjson.com/product-images/mens-watches/rolex-submariner-watch/thumbnail.webp"},{"id":144,"title":"Cricket Helmet","price":44.99,"quantity":1,"total":44.99,"discountPercentage":9.64,"discountedPrice":41,"thumbnail":"https://cdn.dummyjson.com/product-images/sports-accessories/cricket-helmet/thumbnail.webp"}],"total":56044.95,"discountedTotal":53213,"userId":1,"totalProducts":2,"totalQuantity":5}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 201 | 1 | 0 | 0 |
| Response has userId | 1 | 0 | 0 |
| Products have id and quantity | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 4 | 0 | 0 |
| Test Name | Assertion Error |
|---|
| Header Name | Header Value |
|---|---|
| Content-Type | application/json |
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc2OTk2NDgxNH0.uuohp2mmjoHfFSzONdqq4-X1oN1EKoS3diOfBuRRnzw |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | f0f178ea-e7c2-4135-88e5-a356d6ade6ef |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 113 |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc2OTk2MzAxNH0.u-5rlixn4JRTk12Tro8TNtUk3c24CZ3602naTGMIVzc; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc3MjU1MzIxNH0.LZL0vutKADwuToKtiMUv4mQRr36Om2xhN7o_PeCKfUY |
{
"userId": 1,
"products": [
{
"id": 144,
"quantity": 0
}
]
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:40 GMT |
| Content-Type | application/json; charset=utf-8 |
| Content-Length | 332 |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 97 |
| x-ratelimit-reset | 1769961229 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"14c-M42jev9/jNjkfFvEKbauQtpC+2U" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=rZZGjjrrF57pjcW%2BE3I8%2Bz1e0SLkXsrjpeOwqXe4BMIu4FKhNNQfV6sQdMMbT12wu95%2BnUPR3cyjo9764ga%2F%2FXqWYavcrQZLTdhRaaU%3D"}]} |
| CF-RAY | 9c729f7c48612891-AMM |
{"id":51,"products":[{"id":144,"title":"Cricket Helmet","price":44.99,"quantity":1,"total":44.99,"discountPercentage":9.64,"discountedPrice":41,"thumbnail":"https://cdn.dummyjson.com/product-images/sports-accessories/cricket-helmet/thumbnail.webp"}],"total":44.99,"discountedTotal":41,"userId":1,"totalProducts":1,"totalQuantity":1}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| BUGT quantity=0 automaticalle corrected to 1 | 1 | 0 | 0 |
| Total | 1 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Updates an existing shopping cart's products and quantities.
## Method & Endpoint
- **Method**: `PUT`
- **Endpoint**: `https://dummyjson.com/carts/11`
## Authentication
- **Required**: No
- This is a public endpoint for demonstration purposes
## Parameters
### Path Variables
- `cartId` (required) - The unique identifier of the cart to update
### Request Body (JSON)
```json
{
"products": [
{
"id": 1,
"quantity": 3
},
{
"id": 10,
"quantity": 1
}
]
}
```
**Note**: The products array replaces the existing cart contents.
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**: Returns the updated cart with recalculated totals
```json
{
"id": 1,
"products": [
{
"id": 1,
"title": "Product Name",
"price": 549,
"quantity": 3,
"total": 1647
}
],
"total": 1647,
"discountedTotal": 1480,
"userId": 1,
"totalProducts": 2,
"totalQuantity": 4
}
```
## Tests Included
- Validates response status code is 200
- Verifies cart ID remains unchanged
- Checks updated quantities and totals
- Confirms product list is updated correctly
| Header Name | Header Value |
|---|---|
| Content-Type | application/json |
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc2OTk2NDgxNH0.uuohp2mmjoHfFSzONdqq4-X1oN1EKoS3diOfBuRRnzw |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | c6ba599a-40fa-49ed-b2af-864022e279d9 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 78 |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc2OTk2MzAxNH0.u-5rlixn4JRTk12Tro8TNtUk3c24CZ3602naTGMIVzc; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc3MjU1MzIxNH0.LZL0vutKADwuToKtiMUv4mQRr36Om2xhN7o_PeCKfUY |
{
"merge": true,
"products": [
{ "id": 1, "quantity": 1 }
]
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:40 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 86 |
| x-ratelimit-reset | 1769961223 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"6af-U879Xr8c9nPuFdwkrSazTIBwHGc" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=kHraIwGEbngFZaWgf13PmtkwkotXaFqtx9PUhLfjoulZyA2rj8rnGVmQOvfpywtFmmiyylc3jrelJCyqlXuG6fyU92yFKRnat0qwcx4%3D"}]} |
| CF-RAY | 9c729f7de9d42891-AMM |
{"id":11,"products":[{"id":88,"title":"Nike Air Jordan 1 Red And Black","price":149.99,"quantity":1,"total":149.99,"discountPercentage":17.18,"discountedPrice":124,"thumbnail":"https://cdn.dummyjson.com/products/images/mens-shoes/Nike%20Air%20Jordan%201%20Red%20And%20Black/thumbnail.png"},{"id":32,"title":"Milk","price":3.49,"quantity":3,"total":10.47,"discountPercentage":9.36,"discountedPrice":9,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Milk/thumbnail.png"},{"id":74,"title":"Spoon","price":4.99,"quantity":3,"total":14.97,"discountPercentage":2.78,"discountedPrice":15,"thumbnail":"https://cdn.dummyjson.com/products/images/kitchen-accessories/Spoon/thumbnail.png"},{"id":145,"title":"Cricket Wicket","price":29.99,"quantity":3,"total":89.97,"discountPercentage":17.87,"discountedPrice":74,"thumbnail":"https://cdn.dummyjson.com/products/images/sports-accessories/Cricket%20Wicket/thumbnail.png"},{"id":26,"title":"Green Chili Pepper","price":0.99,"quantity":3,"total":2.9699999999999998,"discountPercentage":18.69,"discountedPrice":2,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Green%20Chili%20Pepper/thumbnail.png"},{"id":127,"title":"Oppo K1","price":299.99,"quantity":1,"total":299.99,"discountPercentage":15.93,"discountedPrice":252,"thumbnail":"https://cdn.dummyjson.com/products/images/smartphones/Oppo%20K1/thumbnail.png"},{"id":1,"title":"Essence Mascara Lash Princess","price":9.99,"quantity":1,"total":9.99,"discountPercentage":10.48,"discountedPrice":9,"thumbnail":"https://cdn.dummyjson.com/product-images/beauty/essence-mascara-lash-princess/thumbnail.webp"}],"total":578.35,"discountedTotal":485,"userId":172,"totalProducts":7,"totalQuantity":15}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Deletes a specific shopping cart from the system by its unique identifier.
## Method & Endpoint
- **Method**: `DELETE`
- **Endpoint**: `https://dummyjson.com/carts/11`
## Authentication
- **Required**: No
- This is a public endpoint for demonstration purposes
## Parameters
### Path Variables
- `cartId` (required) - The unique identifier of the cart to delete
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**: Returns the deleted cart information with deletion confirmation
```json
{
"id": 1,
"products": [
{
"id": 1,
"title": "Product Name",
"price": 549,
"quantity": 2,
"total": 1098
}
],
"total": 1098,
"discountedTotal": 985,
"userId": 1,
"totalProducts": 1,
"totalQuantity": 2,
"isDeleted": true,
"deletedOn": "2024-01-01T12:00:00.000Z"
}
```
## Tests Included
- Validates response status code is 200
- Verifies `isDeleted` flag is true
- Checks deletion timestamp is present
- Confirms deleted cart details are returned
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc2OTk2NDgxNH0.uuohp2mmjoHfFSzONdqq4-X1oN1EKoS3diOfBuRRnzw |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | a5341688-42ba-4137-b3fc-2ed0eee6d7d7 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc2OTk2MzAxNH0.u-5rlixn4JRTk12Tro8TNtUk3c24CZ3602naTGMIVzc; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc3MjU1MzIxNH0.LZL0vutKADwuToKtiMUv4mQRr36Om2xhN7o_PeCKfUY |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:41 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 98 |
| x-ratelimit-reset | 1769961230 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"609-qisMUsKaOWLi/jjpRMIVXuJOw8E" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=EwlCKtES8M5CEu353UEto1NXDJRZtYxCdv4nFfi66WLZDyn%2Bw56PV1kiRhekwfltxl3yrJDdQ8p8cnSE0fukVAeTB5mF1Aav055wvVk%3D"}]} |
| CF-RAY | 9c729f7f9bcf2891-AMM |
{"id":11,"products":[{"id":88,"title":"Nike Air Jordan 1 Red And Black","price":149.99,"quantity":1,"total":149.99,"discountPercentage":17.18,"discountedTotal":124.22,"thumbnail":"https://cdn.dummyjson.com/products/images/mens-shoes/Nike%20Air%20Jordan%201%20Red%20And%20Black/thumbnail.png"},{"id":32,"title":"Milk","price":3.49,"quantity":3,"total":10.47,"discountPercentage":9.36,"discountedTotal":9.49,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Milk/thumbnail.png"},{"id":74,"title":"Spoon","price":4.99,"quantity":3,"total":14.97,"discountPercentage":2.78,"discountedTotal":14.55,"thumbnail":"https://cdn.dummyjson.com/products/images/kitchen-accessories/Spoon/thumbnail.png"},{"id":145,"title":"Cricket Wicket","price":29.99,"quantity":3,"total":89.97,"discountPercentage":17.87,"discountedTotal":73.89,"thumbnail":"https://cdn.dummyjson.com/products/images/sports-accessories/Cricket%20Wicket/thumbnail.png"},{"id":26,"title":"Green Chili Pepper","price":0.99,"quantity":3,"total":2.9699999999999998,"discountPercentage":18.69,"discountedTotal":2.41,"thumbnail":"https://cdn.dummyjson.com/products/images/groceries/Green%20Chili%20Pepper/thumbnail.png"},{"id":127,"title":"Oppo K1","price":299.99,"quantity":1,"total":299.99,"discountPercentage":15.93,"discountedTotal":252.2,"thumbnail":"https://cdn.dummyjson.com/products/images/smartphones/Oppo%20K1/thumbnail.png"}],"total":568.36,"discountedTotal":476.76,"userId":172,"totalProducts":6,"totalQuantity":14,"isDeleted":true,"deletedOn":"2026-02-01T15:53:41.127Z"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Deleted cart has correct id | 1 | 0 | 0 |
| Response contains isDeleted flag | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 4 | 0 | 0 |
| Test Name | Assertion Error |
|---|
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc2OTk2NDgxNH0.uuohp2mmjoHfFSzONdqq4-X1oN1EKoS3diOfBuRRnzw |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 07dd3a5b-4572-43f3-9b79-31747a7d1a0d |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc2OTk2MzAxNH0.u-5rlixn4JRTk12Tro8TNtUk3c24CZ3602naTGMIVzc; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc3MjU1MzIxNH0.LZL0vutKADwuToKtiMUv4mQRr36Om2xhN7o_PeCKfUY |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:41 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 85 |
| x-ratelimit-reset | 1769961223 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"2b-JQ/fhVd+HH8flrSxW3e6Bpvtu6A" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=GSL0%2FafxWx3PNBJWfTbBjng37PRVrJogUStXZmn%2BD6sEp2zvk3hNJPZ8h6gRQSws2%2FT9K6MMNRRjA4XfOmkKUmcTcu6Vk%2BKsn7H8QR0%3D"}]} |
| Content-Encoding | br |
| CF-RAY | 9c729f813e0c2891-AMM |
{"message":"Cart with id 'abcd' not found"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Invalid cart id handled correctly | 1 | 0 | 0 |
| Response body exists | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Retrieves a paginated list of all users in the system.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/users`
## Authentication
- **Required**: No
- This is a public endpoint that doesn't require authentication
## Parameters
- No required parameters
- Optional query parameters: `limit`, `skip` for pagination
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
{
"users": [
{
"id": 1,
"firstName": "Emily",
"lastName": "Johnson",
"email": "emily.johnson@x.dummyjson.com",
"username": "emilys",
"age": 28,
"gender": "female",
"phone": "+81 965-431-3024",
"birthDate": "1996-5-30",
"image": "https://dummyjson.com/icon/emilys/128",
"address": {...},
"company": {...}
}
],
"total": 208,
"skip": 0,
"limit": 30
}
```
## Tests Included
- Validates response status code is 200
- Verifies users array structure
- Checks pagination metadata
- Confirms user object contains required fields
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc2OTk2NDgxNH0.uuohp2mmjoHfFSzONdqq4-X1oN1EKoS3diOfBuRRnzw |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | fd81e786-a3d7-4204-a7b5-04cde48c094e |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc2OTk2MzAxNH0.u-5rlixn4JRTk12Tro8TNtUk3c24CZ3602naTGMIVzc; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc3MjU1MzIxNH0.LZL0vutKADwuToKtiMUv4mQRr36Om2xhN7o_PeCKfUY |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:41 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 87 |
| x-ratelimit-reset | 1769886055 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"a3b1-Wc+qCYPJ2IxKpnt00AlusGYMzCE" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| Age | 75172 |
| Cache-Control | no-store |
| cf-cache-status | HIT |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=haDzmQSdCbxIbRH8dMQvhhf1rBNQz1PMdExyEhNxr5RCs%2Fo5YLxQwcLwAPb4nd%2BPqGU8QisnodutGWClF%2F5DZ1KJMNKoIfjzJehcRYE%3D"}]} |
| CF-RAY | 9c729f82dfe72891-AMM |
{"users":[{"id":1,"firstName":"Emily","lastName":"Johnson","maidenName":"Smith","age":29,"gender":"female","email":"emily.johnson@x.dummyjson.com","phone":"+81 965-431-3024","username":"emilys","password":"emilyspass","birthDate":"1996-5-30","image":"https://dummyjson.com/icon/emilys/128","bloodGroup":"O-","height":193.24,"weight":63.16,"eyeColor":"Green","hair":{"color":"Brown","type":"Curly"},"ip":"42.48.100.32","address":{"address":"626 Main Street","city":"Phoenix","state":"Mississippi","stateCode":"MS","postalCode":"29112","coordinates":{"lat":-77.16213,"lng":-92.084824},"country":"United States"},"macAddress":"47:fa:41:18:ec:eb","university":"University of Wisconsin--Madison","bank":{"cardExpire":"05/28","cardNumber":"3693233511855044","cardType":"Diners Club International","currency":"GBP","iban":"GB74MH2UZLR9TRPHYNU8F8"},"company":{"department":"Engineering","name":"Dooley, Kozey and Cronin","title":"Sales Manager","address":{"address":"263 Tenth Street","city":"San Francisco","state":"Wisconsin","stateCode":"WI","postalCode":"37657","coordinates":{"lat":71.814525,"lng":-161.150263},"country":"United States"}},"ein":"977-175","ssn":"900-590-289","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"admin"},{"id":2,"firstName":"Michael","lastName":"Williams","maidenName":"","age":36,"gender":"male","email":"michael.williams@x.dummyjson.com","phone":"+49 258-627-6644","username":"michaelw","password":"michaelwpass","birthDate":"1989-8-10","image":"https://dummyjson.com/icon/michaelw/128","bloodGroup":"B+","height":186.22,"weight":76.32,"eyeColor":"Red","hair":{"color":"Green","type":"Straight"},"ip":"12.13.116.142","address":{"address":"385 Fifth Street","city":"Houston","state":"Alabama","stateCode":"AL","postalCode":"38807","coordinates":{"lat":22.815468,"lng":115.608581},"country":"United States"},"macAddress":"79:15:78:99:60:aa","university":"Ohio State University","bank":{"cardExpire":"01/30","cardNumber":"3530633803003665","cardType":"JCB","currency":"USD","iban":"DE26362283149158045865"},"company":{"department":"Support","name":"Spinka - Dickinson","title":"Support Specialist","address":{"address":"395 Main Street","city":"Los Angeles","state":"New Hampshire","stateCode":"NH","postalCode":"73442","coordinates":{"lat":79.098326,"lng":-119.624845},"country":"United States"}},"ein":"912-602","ssn":"108-953-962","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Edge/97.0.1072.76 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"admin"},{"id":3,"firstName":"Sophia","lastName":"Brown","maidenName":"","age":43,"gender":"female","email":"sophia.brown@x.dummyjson.com","phone":"+81 210-652-2785","username":"sophiab","password":"sophiabpass","birthDate":"1982-11-6","image":"https://dummyjson.com/icon/sophiab/128","bloodGroup":"O-","height":177.72,"weight":52.6,"eyeColor":"Hazel","hair":{"color":"White","type":"Wavy"},"ip":"214.225.51.195","address":{"address":"1642 Ninth Street","city":"Washington","state":"Alabama","stateCode":"AL","postalCode":"32822","coordinates":{"lat":45.289366,"lng":46.832664},"country":"United States"},"macAddress":"12:a3:d3:6f:5c:5b","university":"Pepperdine University","bank":{"cardExpire":"10/27","cardNumber":"6011212053392887","cardType":"Discover","currency":"EUR","iban":"DE12191213468288004835"},"company":{"department":"Research and Development","name":"Schiller - Zieme","title":"Accountant","address":{"address":"1896 Washington Street","city":"Dallas","state":"Nevada","stateCode":"NV","postalCode":"88511","coordinates":{"lat":20.086743,"lng":-34.577107},"country":"United States"}},"ein":"963-113","ssn":"638-461-822","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"admin"},{"id":4,"firstName":"James","lastName":"Davis","maidenName":"","age":46,"gender":"male","email":"james.davis@x.dummyjson.com","phone":"+49 614-958-9364","username":"jamesd","password":"jamesdpass","birthDate":"1979-5-4","image":"https://dummyjson.com/icon/jamesd/128","bloodGroup":"AB+","height":193.31,"weight":62.1,"eyeColor":"Amber","hair":{"color":"Blonde","type":"Straight"},"ip":"101.118.131.66","address":{"address":"238 Jefferson Street","city":"Seattle","state":"Pennsylvania","stateCode":"PA","postalCode":"68354","coordinates":{"lat":16.782513,"lng":-139.34723},"country":"United States"},"macAddress":"10:7d:df:1f:97:58","university":"University of Southern California","bank":{"cardExpire":"07/30","cardNumber":"5303440212268149","cardType":"Mastercard","currency":"CAD","iban":"DE01300746880579852937"},"company":{"department":"Support","name":"Pagac and Sons","title":"Research Analyst","address":{"address":"1622 Lincoln Street","city":"Fort Worth","state":"Pennsylvania","stateCode":"PA","postalCode":"27768","coordinates":{"lat":54.91193,"lng":-79.498328},"country":"United States"}},"ein":"904-810","ssn":"116-951-314","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"admin"},{"id":5,"firstName":"Emma","lastName":"Miller","maidenName":"Johnson","age":31,"gender":"female","email":"emma.miller@x.dummyjson.com","phone":"+91 759-776-1614","username":"emmaj","password":"emmajpass","birthDate":"1994-6-13","image":"https://dummyjson.com/icon/emmaj/128","bloodGroup":"AB-","height":192.8,"weight":63.62,"eyeColor":"Green","hair":{"color":"White","type":"Straight"},"ip":"224.126.22.183","address":{"address":"607 Fourth Street","city":"Jacksonville","state":"Colorado","stateCode":"CO","postalCode":"26593","coordinates":{"lat":0.505589,"lng":-157.43281},"country":"United States"},"macAddress":"32:b9:7e:8d:f5:e8","university":"Northeastern University","bank":{"cardExpire":"07/30","cardNumber":"5237188057591130","cardType":"Mastercard","currency":"NZD","iban":"DE19182355652037133559"},"company":{"department":"Human Resources","name":"Graham - Gulgowski","title":"Quality Assurance Engineer","address":{"address":"1460 Sixth Street","city":"San Antonio","state":"Idaho","stateCode":"ID","postalCode":"21965","coordinates":{"lat":44.346545,"lng":-26.944701},"country":"United States"}},"ein":"403-505","ssn":"526-210-885","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:97.0) Gecko/20100101 Firefox/97.0","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"admin"},{"id":6,"firstName":"Olivia","lastName":"Wilson","maidenName":"","age":23,"gender":"female","email":"olivia.wilson@x.dummyjson.com","phone":"+91 607-295-6448","username":"oliviaw","password":"oliviawpass","birthDate":"2002-4-20","image":"https://dummyjson.com/icon/oliviaw/128","bloodGroup":"B+","height":182.61,"weight":58,"eyeColor":"Hazel","hair":{"color":"Gray","type":"Curly"},"ip":"249.178.112.207","address":{"address":"547 First Street","city":"Fort Worth","state":"Tennessee","stateCode":"TN","postalCode":"83843","coordinates":{"lat":75.32627,"lng":-26.15285},"country":"United States"},"macAddress":"9c:7f:ea:34:18:19","university":"University of North Carolina--Chapel Hill","bank":{"cardExpire":"06/30","cardNumber":"376320072452632","cardType":"American Express","currency":"NZD","iban":"DE21153814367894194071"},"company":{"department":"Product Management","name":"Pfannerstill Inc","title":"Research Analyst","address":{"address":"425 Sixth Street","city":"Indianapolis","state":"Oklahoma","stateCode":"OK","postalCode":"74263","coordinates":{"lat":74.986644,"lng":-132.916888},"country":"United States"}},"ein":"921-709","ssn":"836-772-168","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.3 Safari/605.1.15","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"moderator"},{"id":7,"firstName":"Alexander","lastName":"Jones","maidenName":"","age":39,"gender":"male","email":"alexander.jones@x.dummyjson.com","phone":"+61 260-824-4986","username":"alexanderj","password":"alexanderjpass","birthDate":"1986-10-20","image":"https://dummyjson.com/icon/alexanderj/128","bloodGroup":"AB-","height":153.89,"weight":77.42,"eyeColor":"Blue","hair":{"color":"White","type":"Straight"},"ip":"166.204.84.32","address":{"address":"664 Maple Street","city":"Indianapolis","state":"Delaware","stateCode":"DE","postalCode":"86684","coordinates":{"lat":35.289664,"lng":7.063255},"country":"United States"},"macAddress":"d2:64:58:2d:1c:46","university":"University of Illinois--Urbana-Champaign","bank":{"cardExpire":"12/29","cardNumber":"5189302549548693","cardType":"Mastercard","currency":"PKR","iban":"DE67517655968963441488"},"company":{"department":"Engineering","name":"Dickens - Beahan","title":"Web Developer","address":{"address":"996 Eighth Street","city":"Washington","state":"Kansas","stateCode":"KS","postalCode":"27858","coordinates":{"lat":-75.462366,"lng":-128.025697},"country":"United States"}},"ein":"638-127","ssn":"722-993-925","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"moderator"},{"id":8,"firstName":"Ava","lastName":"Taylor","maidenName":"","age":28,"gender":"female","email":"ava.taylor@x.dummyjson.com","phone":"+1 458-853-7877","username":"avat","password":"avatpass","birthDate":"1997-8-25","image":"https://dummyjson.com/icon/avat/128","bloodGroup":"AB-","height":168.47,"weight":57.08,"eyeColor":"Hazel","hair":{"color":"Red","type":"Kinky"},"ip":"150.73.197.233","address":{"address":"1197 First Street","city":"Fort Worth","state":"Rhode Island","stateCode":"RI","postalCode":"24771","coordinates":{"lat":-81.194833,"lng":-87.948158},"country":"United States"},"macAddress":"8d:2e:c2:d6:e7:a8","university":"University of Wisconsin--Madison","bank":{"cardExpire":"08/30","cardNumber":"5349974103330333","cardType":"Mastercard","currency":"EUR","iban":"FR94ZM2MMGL1EVYQE1ZLCVCFH83"},"company":{"department":"Marketing","name":"Nikolaus Inc","title":"Chief Executive Officer","address":{"address":"930 Lincoln Street","city":"Austin","state":"Colorado","stateCode":"CO","postalCode":"47592","coordinates":{"lat":87.970083,"lng":-42.769351},"country":"United States"}},"ein":"297-762","ssn":"257-419-109","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"moderator"},{"id":9,"firstName":"Ethan","lastName":"Martinez","maidenName":"","age":34,"gender":"male","email":"ethan.martinez@x.dummyjson.com","phone":"+92 933-608-5081","username":"ethanm","password":"ethanmpass","birthDate":"1991-2-12","image":"https://dummyjson.com/icon/ethanm/128","bloodGroup":"AB+","height":159.19,"weight":68.81,"eyeColor":"Hazel","hair":{"color":"Purple","type":"Curly"},"ip":"63.191.127.71","address":{"address":"466 Pine Street","city":"San Antonio","state":"Louisiana","stateCode":"LA","postalCode":"72360","coordinates":{"lat":74.074918,"lng":-25.312703},"country":"United States"},"macAddress":"59:e:9e:e3:29:da","university":"Syracuse University","bank":{"cardExpire":"10/27","cardNumber":"3598603288061479","cardType":"JCB","currency":"GBP","iban":"GB26PND7D83JTW4HL6LZ71"},"company":{"department":"Support","name":"Gorczany - Gottlieb","title":"Legal Counsel","address":{"address":"1597 Oak Street","city":"Chicago","state":"Florida","stateCode":"FL","postalCode":"28100","coordinates":{"lat":-67.45208,"lng":-23.209886},"country":"United States"}},"ein":"790-434","ssn":"569-650-348","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"moderator"},{"id":10,"firstName":"Isabella","lastName":"Anderson","maidenName":"Davis","age":32,"gender":"female","email":"isabella.anderson@x.dummyjson.com","phone":"+49 770-658-4885","username":"isabellad","password":"isabelladpass","birthDate":"1993-6-10","image":"https://dummyjson.com/icon/isabellad/128","bloodGroup":"A-","height":150.56,"weight":50.1,"eyeColor":"Brown","hair":{"color":"Blonde","type":"Curly"},"ip":"114.9.114.205","address":{"address":"1964 Oak Street","city":"New York","state":"Utah","stateCode":"UT","postalCode":"89352","coordinates":{"lat":41.331324,"lng":151.782727},"country":"United States"},"macAddress":"b1:b0:d0:a2:82:80","university":"California Institute of Technology (Caltech)","bank":{"cardExpire":"03/30","cardNumber":"3602093733952858","cardType":"Diners Club International","currency":"USD","iban":"DE12934874962442340025"},"company":{"department":"Marketing","name":"Pollich - Hilpert","title":"Chief Financial Officer","address":{"address":"1029 Adams Street","city":"San Diego","state":"Maryland","stateCode":"MD","postalCode":"63847","coordinates":{"lat":-25.843393,"lng":-62.692681},"country":"United States"}},"ein":"127-297","ssn":"902-438-728","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"moderator"},{"id":11,"firstName":"Liam","lastName":"Garcia","maidenName":"","age":30,"gender":"male","email":"liam.garcia@x.dummyjson.com","phone":"+92 870-217-6201","username":"liamg","password":"liamgpass","birthDate":"1995-6-6","image":"https://dummyjson.com/icon/liamg/128","bloodGroup":"AB-","height":162.32,"weight":93.16,"eyeColor":"Violet","hair":{"color":"Red","type":"Wavy"},"ip":"56.201.85.9","address":{"address":"576 Fifth Street","city":"Denver","state":"South Dakota","stateCode":"SD","postalCode":"57252","coordinates":{"lat":-66.218177,"lng":-145.340165},"country":"United States"},"macAddress":"31:9a:28:8b:99:6c","university":"Ohio State University","bank":{"cardExpire":"12/29","cardNumber":"3614993744940956","cardType":"Diners Club International","currency":"USD","iban":"DE65581882748067758114"},"company":{"department":"Services","name":"Considine - Torp","title":"Web Developer","address":{"address":"27 Cedar Street","city":"Philadelphia","state":"Connecticut","stateCode":"CT","postalCode":"79574","coordinates":{"lat":-81.841588,"lng":31.79423},"country":"United States"}},"ein":"326-604","ssn":"933-784-949","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"moderator"},{"id":12,"firstName":"Mia","lastName":"Rodriguez","maidenName":"","age":25,"gender":"female","email":"mia.rodriguez@x.dummyjson.com","phone":"+49 989-461-8403","username":"miar","password":"miarpass","birthDate":"2000-8-4","image":"https://dummyjson.com/icon/miar/128","bloodGroup":"O-","height":188.08,"weight":56.03,"eyeColor":"Blue","hair":{"color":"Purple","type":"Wavy"},"ip":"11.72.253.90","address":{"address":"1627 Sixth Street","city":"Jacksonville","state":"West Virginia","stateCode":"WV","postalCode":"41810","coordinates":{"lat":24.857497,"lng":-34.865429},"country":"United States"},"macAddress":"53:d7:a4:6:1e:58","university":"William & Mary","bank":{"cardExpire":"02/29","cardNumber":"343932350909214","cardType":"American Express","currency":"CAD","iban":"DE77118774979880310165"},"company":{"department":"Accounting","name":"Miller, Schowalter and Wisozk","title":"Business Analyst","address":{"address":"1039 Washington Street","city":"Philadelphia","state":"New Jersey","stateCode":"NJ","postalCode":"57518","coordinates":{"lat":85.455933,"lng":164.246103},"country":"United States"}},"ein":"754-660","ssn":"749-524-124","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"moderator"},{"id":13,"firstName":"Noah","lastName":"Hernandez","maidenName":"","age":41,"gender":"male","email":"noah.hernandez@x.dummyjson.com","phone":"+49 393-605-6968","username":"noahh","password":"noahhpass","birthDate":"1984-6-5","image":"https://dummyjson.com/icon/noahh/128","bloodGroup":"AB+","height":188.62,"weight":69.49,"eyeColor":"Brown","hair":{"color":"Red","type":"Curly"},"ip":"169.154.126.57","address":{"address":"1413 Maple Street","city":"New York","state":"North Dakota","stateCode":"ND","postalCode":"73696","coordinates":{"lat":-25.0377,"lng":-151.70469},"country":"United States"},"macAddress":"d4:fe:ae:8f:eb:a3","university":"New York University (NYU)","bank":{"cardExpire":"03/30","cardNumber":"6262462852322850","cardType":"UnionPay","currency":"PKR","iban":"DE13437032020581217601"},"company":{"department":"Engineering","name":"Botsford, Marquardt and Roberts","title":"Database Administrator","address":{"address":"62 Third Street","city":"Seattle","state":"Oregon","stateCode":"OR","postalCode":"83474","coordinates":{"lat":19.490447,"lng":-13.173207},"country":"United States"}},"ein":"877-628","ssn":"660-847-389","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"moderator"},{"id":14,"firstName":"Charlotte","lastName":"Lopez","maidenName":"Martinez","age":37,"gender":"female","email":"charlotte.lopez@x.dummyjson.com","phone":"+44 373-953-5028","username":"charlottem","password":"charlottempass","birthDate":"1988-6-8","image":"https://dummyjson.com/icon/charlottem/128","bloodGroup":"AB-","height":178.92,"weight":82.46,"eyeColor":"Brown","hair":{"color":"Gray","type":"Kinky"},"ip":"119.103.95.60","address":{"address":"208 Second Street","city":"Columbus","state":"Ohio","stateCode":"OH","postalCode":"42044","coordinates":{"lat":-44.443762,"lng":-151.420561},"country":"United States"},"macAddress":"f6:ff:37:aa:6c:f1","university":"Northeastern University","bank":{"cardExpire":"12/27","cardNumber":"3634388457177035","cardType":"Diners Club International","currency":"PKR","iban":"DE54092147842698685963"},"company":{"department":"Accounting","name":"Zulauf and Sons","title":"Chief Executive Officer","address":{"address":"569 Jefferson Street","city":"Los Angeles","state":"Montana","stateCode":"MT","postalCode":"17779","coordinates":{"lat":-18.371256,"lng":22.566258},"country":"United States"}},"ein":"364-782","ssn":"255-491-479","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"moderator"},{"id":15,"firstName":"William","lastName":"Gonzalez","maidenName":"","age":33,"gender":"male","email":"william.gonzalez@x.dummyjson.com","phone":"+81 905-252-7319","username":"williamg","password":"williamgpass","birthDate":"1992-3-27","image":"https://dummyjson.com/icon/williamg/128","bloodGroup":"B-","height":173.21,"weight":82.41,"eyeColor":"Hazel","hair":{"color":"Gray","type":"Curly"},"ip":"250.2.241.204","address":{"address":"31 Maple Street","city":"San Jose","state":"Utah","stateCode":"UT","postalCode":"78243","coordinates":{"lat":8.152876,"lng":113.29799},"country":"United States"},"macAddress":"f5:68:28:f9:ec:89","university":"Tufts University","bank":{"cardExpire":"05/30","cardNumber":"6228256225004929","cardType":"UnionPay","currency":"PKR","iban":"DE63711022986572448914"},"company":{"department":"Marketing","name":"Spinka - Dickinson","title":"Software Architect","address":{"address":"1538 Eighth Street","city":"San Jose","state":"Missouri","stateCode":"MO","postalCode":"29673","coordinates":{"lat":24.169361,"lng":-29.395167},"country":"United States"}},"ein":"830-515","ssn":"690-544-755","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"moderator"},{"id":16,"firstName":"Avery","lastName":"Perez","maidenName":"","age":26,"gender":"female","email":"avery.perez@x.dummyjson.com","phone":"+61 731-431-3457","username":"averyp","password":"averyppass","birthDate":"1999-3-10","image":"https://dummyjson.com/icon/averyp/128","bloodGroup":"O-","height":172.68,"weight":93.9,"eyeColor":"Brown","hair":{"color":"Green","type":"Curly"},"ip":"131.217.4.214","address":{"address":"1125 First Street","city":"Columbus","state":"Iowa","stateCode":"IA","postalCode":"30973","coordinates":{"lat":12.789127,"lng":85.792598},"country":"United States"},"macAddress":"b3:ff:f3:c5:37:46","university":"Harvard University","bank":{"cardExpire":"08/29","cardNumber":"378024038311910","cardType":"American Express","currency":"USD","iban":"DE42403186906981858976"},"company":{"department":"Accounting","name":"Herzog Inc","title":"Database Administrator","address":{"address":"183 Maple Street","city":"New York","state":"Rhode Island","stateCode":"RI","postalCode":"45238","coordinates":{"lat":-53.318189,"lng":105.835271},"country":"United States"}},"ein":"348-493","ssn":"679-523-686","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":17,"firstName":"Evelyn","lastName":"Sanchez","maidenName":"","age":38,"gender":"female","email":"evelyn.sanchez@x.dummyjson.com","phone":"+1 623-880-6871","username":"evelyns","password":"evelynspass","birthDate":"1987-10-13","image":"https://dummyjson.com/icon/evelyns/128","bloodGroup":"B+","height":184.08,"weight":83.15,"eyeColor":"Violet","hair":{"color":"Blue","type":"Curly"},"ip":"87.114.135.146","address":{"address":"1170 Lincoln Street","city":"San Diego","state":"Wyoming","stateCode":"WY","postalCode":"43423","coordinates":{"lat":-83.31484,"lng":11.768071},"country":"United States"},"macAddress":"f8:e5:bd:43:bc:d8","university":"Washington University in St. Louis","bank":{"cardExpire":"01/29","cardNumber":"3514443781649095","cardType":"JCB","currency":"GBP","iban":"GB74239MLVNQ0UB9ANTFRM"},"company":{"department":"Support","name":"Predovic - Johns","title":"Chief Financial Officer","address":{"address":"1802 Ninth Street","city":"San Diego","state":"Minnesota","stateCode":"MN","postalCode":"89416","coordinates":{"lat":29.034592,"lng":-78.004598},"country":"United States"}},"ein":"604-817","ssn":"689-332-644","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":18,"firstName":"Logan","lastName":"Torres","maidenName":"","age":32,"gender":"male","email":"logan.torres@x.dummyjson.com","phone":"+81 507-434-8733","username":"logant","password":"logantpass","birthDate":"1993-10-26","image":"https://dummyjson.com/icon/logant/128","bloodGroup":"A+","height":190.04,"weight":72.43,"eyeColor":"Green","hair":{"color":"Green","type":"Curly"},"ip":"155.98.15.162","address":{"address":"907 Seventh Street","city":"Columbus","state":"Arkansas","stateCode":"AR","postalCode":"78805","coordinates":{"lat":-64.846516,"lng":174.775744},"country":"United States"},"macAddress":"40:d:5c:1:7d:bf","university":"University of Illinois--Urbana-Champaign","bank":{"cardExpire":"04/30","cardNumber":"6258651210557142","cardType":"UnionPay","currency":"EUR","iban":"ES1171429445321693077621"},"company":{"department":"Training","name":"Jast - Nader","title":"Data Analyst","address":{"address":"947 Main Street","city":"Denver","state":"Minnesota","stateCode":"MN","postalCode":"71896","coordinates":{"lat":-24.654063,"lng":-147.255268},"country":"United States"}},"ein":"576-218","ssn":"806-639-934","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":19,"firstName":"Abigail","lastName":"Rivera","maidenName":"","age":29,"gender":"female","email":"abigail.rivera@x.dummyjson.com","phone":"+91 228-363-7806","username":"abigailr","password":"abigailrpass","birthDate":"1996-10-11","image":"https://dummyjson.com/icon/abigailr/128","bloodGroup":"B+","height":186.39,"weight":74.61,"eyeColor":"Violet","hair":{"color":"Blue","type":"Kinky"},"ip":"19.183.240.94","address":{"address":"996 Oak Street","city":"Chicago","state":"New Mexico","stateCode":"NM","postalCode":"11407","coordinates":{"lat":44.321308,"lng":-3.723903},"country":"United States"},"macAddress":"1d:a6:58:2a:e5:e4","university":"California Institute of Technology (Caltech)","bank":{"cardExpire":"01/27","cardNumber":"6011399019022417","cardType":"Discover","currency":"EUR","iban":"IT11QP2B5J81QM1FBX029VI5DD68O"},"company":{"department":"Human Resources","name":"Prohaska - Thiel","title":"Business Analyst","address":{"address":"1402 Adams Street","city":"Austin","state":"Wisconsin","stateCode":"WI","postalCode":"51456","coordinates":{"lat":25.672938,"lng":-76.54967},"country":"United States"}},"ein":"173-637","ssn":"655-823-929","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Edge/97.0.1072.76 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":20,"firstName":"Jackson","lastName":"Evans","maidenName":"","age":35,"gender":"male","email":"jackson.evans@x.dummyjson.com","phone":"+44 468-628-6686","username":"jacksone","password":"jacksonepass","birthDate":"1990-11-30","image":"https://dummyjson.com/icon/jacksone/128","bloodGroup":"O-","height":162.57,"weight":74.37,"eyeColor":"Green","hair":{"color":"Red","type":"Straight"},"ip":"221.127.144.198","address":{"address":"1873 Main Street","city":"New York","state":"Arkansas","stateCode":"AR","postalCode":"26600","coordinates":{"lat":34.722451,"lng":63.448927},"country":"United States"},"macAddress":"81:14:1:97:88:85","university":"Ohio State University","bank":{"cardExpire":"07/30","cardNumber":"376760688512826","cardType":"American Express","currency":"GBP","iban":"GB27CM0H0MNPXSPDGA0A1O"},"company":{"department":"Legal","name":"Kuhlman LLC","title":"Web Developer","address":{"address":"1706 First Street","city":"Chicago","state":"Hawaii","stateCode":"HI","postalCode":"34725","coordinates":{"lat":-80.416937,"lng":-83.224516},"country":"United States"}},"ein":"843-260","ssn":"248-787-886","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":21,"firstName":"Madison","lastName":"Collins","maidenName":"","age":27,"gender":"female","email":"madison.collins@x.dummyjson.com","phone":"+81 259-957-5711","username":"madisonc","password":"madisoncpass","birthDate":"1998-3-7","image":"https://dummyjson.com/icon/madisonc/128","bloodGroup":"B-","height":189.28,"weight":56.96,"eyeColor":"Red","hair":{"color":"Gray","type":"Curly"},"ip":"85.34.1.204","address":{"address":"1892 Lincoln Street","city":"Philadelphia","state":"New Jersey","stateCode":"NJ","postalCode":"62091","coordinates":{"lat":52.993694,"lng":160.486892},"country":"United States"},"macAddress":"13:b0:d0:23:4d:26","university":"University of Pennsylvania","bank":{"cardExpire":"09/27","cardNumber":"5551259848327064","cardType":"Mastercard","currency":"EUR","iban":"ES3893300143587765232049"},"company":{"department":"Engineering","name":"Mayer - Smitham","title":"Chief Technology Officer","address":{"address":"1438 Main Street","city":"San Diego","state":"Delaware","stateCode":"DE","postalCode":"63144","coordinates":{"lat":1.629613,"lng":23.232982},"country":"United States"}},"ein":"716-166","ssn":"457-258-950","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":22,"firstName":"Elijah","lastName":"Stewart","maidenName":"","age":34,"gender":"male","email":"elijah.stewart@x.dummyjson.com","phone":"+44 468-357-7872","username":"elijahs","password":"elijahspass","birthDate":"1991-10-22","image":"https://dummyjson.com/icon/elijahs/128","bloodGroup":"A-","height":195.33,"weight":81.64,"eyeColor":"Blue","hair":{"color":"Purple","type":"Straight"},"ip":"23.87.135.62","address":{"address":"1701 Eighth Street","city":"Columbus","state":"Illinois","stateCode":"IL","postalCode":"31585","coordinates":{"lat":-54.833799,"lng":-174.504027},"country":"United States"},"macAddress":"75:17:c6:35:fc:6d","university":"Georgetown University","bank":{"cardExpire":"05/28","cardNumber":"3648138556543460","cardType":"Diners Club International","currency":"EUR","iban":"DE82018985741195770313"},"company":{"department":"Legal","name":"Langworth Group","title":"Business Analyst","address":{"address":"155 Ninth Street","city":"Washington","state":"South Dakota","stateCode":"SD","postalCode":"19039","coordinates":{"lat":61.279254,"lng":-12.607767},"country":"United States"}},"ein":"520-394","ssn":"287-380-801","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":23,"firstName":"Chloe","lastName":"Morales","maidenName":"","age":40,"gender":"female","email":"chloe.morales@x.dummyjson.com","phone":"+92 468-541-7133","username":"chloem","password":"chloempass","birthDate":"1985-4-21","image":"https://dummyjson.com/icon/chloem/128","bloodGroup":"O+","height":185.07,"weight":63.97,"eyeColor":"Brown","hair":{"color":"Red","type":"Kinky"},"ip":"66.78.20.21","address":{"address":"401 Fourth Street","city":"Dallas","state":"New Jersey","stateCode":"NJ","postalCode":"54972","coordinates":{"lat":-30.190759,"lng":-58.705979},"country":"United States"},"macAddress":"fc:f:29:e1:37:b8","university":"Syracuse University","bank":{"cardExpire":"09/30","cardNumber":"347036238254235","cardType":"American Express","currency":"CNY","iban":"DE77762461851744284392"},"company":{"department":"Sales","name":"Grady LLC","title":"Database Administrator","address":{"address":"269 Third Street","city":"Houston","state":"North Carolina","stateCode":"NC","postalCode":"10385","coordinates":{"lat":40.098115,"lng":-1.762972},"country":"United States"}},"ein":"913-597","ssn":"938-883-163","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":24,"firstName":"Mateo","lastName":"Nguyen","maidenName":"","age":31,"gender":"male","email":"mateo.nguyen@x.dummyjson.com","phone":"+1 341-597-6694","username":"mateon","password":"mateonpass","birthDate":"1994-6-2","image":"https://dummyjson.com/icon/mateon/128","bloodGroup":"O+","height":174.29,"weight":59.98,"eyeColor":"Red","hair":{"color":"Purple","type":"Wavy"},"ip":"192.57.144.7","address":{"address":"1578 Fourth Street","city":"Columbus","state":"Missouri","stateCode":"MO","postalCode":"20673","coordinates":{"lat":-32.828675,"lng":-82.557354},"country":"United States"},"macAddress":"a7:26:10:7a:36:29","university":"Columbia University","bank":{"cardExpire":"12/29","cardNumber":"4021840414995098","cardType":"Visa","currency":"CAD","iban":"DE43275561962007561223"},"company":{"department":"Accounting","name":"Spinka LLC","title":"Business Analyst","address":{"address":"1967 Jefferson Street","city":"Dallas","state":"Louisiana","stateCode":"LA","postalCode":"78527","coordinates":{"lat":75.982676,"lng":164.459743},"country":"United States"}},"ein":"229-249","ssn":"416-877-230","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":25,"firstName":"Harper","lastName":"Kelly","maidenName":"Evans","age":28,"gender":"female","email":"harper.kelly@x.dummyjson.com","phone":"+92 518-863-2863","username":"harpere","password":"harperepass","birthDate":"1997-3-3","image":"https://dummyjson.com/icon/harpere/128","bloodGroup":"AB-","height":184.32,"weight":81.69,"eyeColor":"Amber","hair":{"color":"Red","type":"Curly"},"ip":"174.111.61.162","address":{"address":"1591 Adams Street","city":"Philadelphia","state":"New York","stateCode":"NY","postalCode":"69521","coordinates":{"lat":-26.832913,"lng":-75.445017},"country":"United States"},"macAddress":"b:ff:33:67:94:e4","university":"Boston College","bank":{"cardExpire":"06/27","cardNumber":"4488823564436432","cardType":"Visa","currency":"EUR","iban":"ES5874149276753342261515"},"company":{"department":"Legal","name":"Leffler, Rolfson and Becker","title":"Business Development Manager","address":{"address":"16 Maple Street","city":"Austin","state":"North Carolina","stateCode":"NC","postalCode":"68274","coordinates":{"lat":-15.423746,"lng":149.298887},"country":"United States"}},"ein":"592-557","ssn":"209-544-548","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":26,"firstName":"Evelyn","lastName":"Gonzalez","maidenName":"","age":36,"gender":"female","email":"evelyn.gonzalez@x.dummyjson.com","phone":"+61 708-508-4638","username":"evelyng","password":"evelyngpass","birthDate":"1989-2-5","image":"https://dummyjson.com/icon/evelyng/128","bloodGroup":"O+","height":168.94,"weight":58.47,"eyeColor":"Red","hair":{"color":"Black","type":"Wavy"},"ip":"42.52.74.232","address":{"address":"1065 Lincoln Street","city":"Dallas","state":"Maine","stateCode":"ME","postalCode":"84898","coordinates":{"lat":67.768359,"lng":71.268643},"country":"United States"},"macAddress":"89:5e:5a:2a:72:42","university":"Washington University in St. Louis","bank":{"cardExpire":"08/28","cardNumber":"6011735364912274","cardType":"Discover","currency":"CAD","iban":"DE27147353096476220032"},"company":{"department":"Accounting","name":"Tromp, Gaylord and Weber","title":"Project Manager","address":{"address":"584 Ninth Street","city":"Jacksonville","state":"Wisconsin","stateCode":"WI","postalCode":"45633","coordinates":{"lat":26.014021,"lng":40.572436},"country":"United States"}},"ein":"569-275","ssn":"487-680-127","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":27,"firstName":"Daniel","lastName":"Cook","maidenName":"","age":42,"gender":"male","email":"daniel.cook@x.dummyjson.com","phone":"+44 254-761-6843","username":"danielc","password":"danielcpass","birthDate":"1983-12-25","image":"https://dummyjson.com/icon/danielc/128","bloodGroup":"AB+","height":186.21,"weight":83.72,"eyeColor":"Brown","hair":{"color":"Blonde","type":"Curly"},"ip":"1.61.73.142","address":{"address":"1163 Pine Street","city":"Los Angeles","state":"Nevada","stateCode":"NV","postalCode":"58781","coordinates":{"lat":-3.456681,"lng":-134.937482},"country":"United States"},"macAddress":"6e:73:dc:3a:85:10","university":"Columbia University","bank":{"cardExpire":"05/29","cardNumber":"5485409595328150","cardType":"Mastercard","currency":"NZD","iban":"DE71341603969952506034"},"company":{"department":"Support","name":"Morissette, Baumbach and Auer","title":"Legal Counsel","address":{"address":"938 Fifth Street","city":"San Francisco","state":"South Dakota","stateCode":"SD","postalCode":"45305","coordinates":{"lat":21.323588,"lng":-83.531427},"country":"United States"}},"ein":"585-905","ssn":"645-515-583","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:97.0) Gecko/20100101 Firefox/97.0","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":28,"firstName":"Lily","lastName":"Lee","maidenName":"Brown","age":30,"gender":"female","email":"lily.lee@x.dummyjson.com","phone":"+1 808-757-9867","username":"lilyb","password":"lilybpass","birthDate":"1995-12-3","image":"https://dummyjson.com/icon/lilyb/128","bloodGroup":"AB-","height":181.42,"weight":51.49,"eyeColor":"Gray","hair":{"color":"Purple","type":"Straight"},"ip":"67.184.255.96","address":{"address":"1946 Oak Street","city":"Phoenix","state":"Massachusetts","stateCode":"MA","postalCode":"41540","coordinates":{"lat":-9.87059,"lng":-72.336845},"country":"United States"},"macAddress":"18:b6:c7:a:50:3f","university":"Johns Hopkins University","bank":{"cardExpire":"12/28","cardNumber":"5551782139834613","cardType":"Mastercard","currency":"CAD","iban":"DE49484285539189712621"},"company":{"department":"Product Management","name":"Cremin Inc","title":"Quality Assurance Engineer","address":{"address":"1735 Cedar Street","city":"Phoenix","state":"Wyoming","stateCode":"WY","postalCode":"85797","coordinates":{"lat":72.231441,"lng":-158.147245},"country":"United States"}},"ein":"229-776","ssn":"358-185-671","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Edge/97.0.1072.76 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":29,"firstName":"Henry","lastName":"Hill","maidenName":"","age":39,"gender":"male","email":"henry.hill@x.dummyjson.com","phone":"+1 240-833-4680","username":"henryh","password":"henryhpass","birthDate":"1986-8-19","image":"https://dummyjson.com/icon/henryh/128","bloodGroup":"O-","height":180.25,"weight":95.84,"eyeColor":"Gray","hair":{"color":"Black","type":"Straight"},"ip":"194.43.55.202","address":{"address":"1837 Maple Street","city":"Indianapolis","state":"Delaware","stateCode":"DE","postalCode":"81783","coordinates":{"lat":35.498256,"lng":154.088476},"country":"United States"},"macAddress":"fa:c3:1b:21:5f:44","university":"University of Illinois--Urbana-Champaign","bank":{"cardExpire":"11/29","cardNumber":"3625097026040498","cardType":"Diners Club International","currency":"EUR","iban":"DE08820336197191865470"},"company":{"department":"Services","name":"Gerlach, Funk and Schoen","title":"Sales Manager","address":{"address":"1651 Lincoln Street","city":"San Francisco","state":"West Virginia","stateCode":"WV","postalCode":"61805","coordinates":{"lat":-59.936335,"lng":-12.405368},"country":"United States"}},"ein":"118-957","ssn":"925-686-100","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":30,"firstName":"Addison","lastName":"Wright","maidenName":"","age":33,"gender":"female","email":"addison.wright@x.dummyjson.com","phone":"+1 514-384-3300","username":"addisonw","password":"addisonwpass","birthDate":"1992-1-3","image":"https://dummyjson.com/icon/addisonw/128","bloodGroup":"B+","height":179.32,"weight":76.93,"eyeColor":"Brown","hair":{"color":"Blonde","type":"Straight"},"ip":"11.35.69.81","address":{"address":"568 Tenth Street","city":"San Francisco","state":"Montana","stateCode":"MT","postalCode":"54698","coordinates":{"lat":20.946052,"lng":100.228822},"country":"United States"},"macAddress":"fb:0:94:21:16:c","university":"Syracuse University","bank":{"cardExpire":"06/28","cardNumber":"5274971895809762","cardType":"Mastercard","currency":"PKR","iban":"DE91480955939051635497"},"company":{"department":"Services","name":"Kreiger Inc","title":"Human Resources Manager","address":{"address":"1173 Eighth Street","city":"San Diego","state":"Michigan","stateCode":"MI","postalCode":"85777","coordinates":{"lat":65.324413,"lng":87.142893},"country":"United States"}},"ein":"415-286","ssn":"804-492-390","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"}],"total":208,"skip":0,"limit":30}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 2 | 0 | 0 |
| Total | 3 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Authenticates a user with username and password, returning an access token for subsequent authenticated requests.
## Method & Endpoint
- **Method**: `POST`
- **Endpoint**: `https://dummyjson.com/auth/login`
## Authentication
- **Required**: No (this endpoint provides authentication)
## Parameters
### Request Body (JSON)
```json
{
"username": "emilys",
"password": "emilyspass"
}
```
**Required Fields**:
- `username` - User's username
- `password` - User's password
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
{
"id": 1,
"username": "emilys",
"email": "emily.johnson@x.dummyjson.com",
"firstName": "Emily",
"lastName": "Johnson",
"gender": "female",
"image": "https://dummyjson.com/icon/emilys/128",
"accessToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
"refreshToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."
}
```
## Tests Included
- Validates response status code is 200
- Verifies access token is present
- Stores token in environment variable `eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc2OTk2NDgxNH0.uuohp2mmjoHfFSzONdqq4-X1oN1EKoS3diOfBuRRnzw`
- Checks user details are returned
| Header Name | Header Value |
|---|---|
| Content-Type | application/json |
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc2OTk2NDgxNH0.uuohp2mmjoHfFSzONdqq4-X1oN1EKoS3diOfBuRRnzw |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 4d5f60bd-3ffb-4415-a38d-a8b0fbed674e |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 83 |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc2OTk2MzAxNH0.u-5rlixn4JRTk12Tro8TNtUk3c24CZ3602naTGMIVzc; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc3MjU1MzIxNH0.LZL0vutKADwuToKtiMUv4mQRr36Om2xhN7o_PeCKfUY |
{
"username": "emilys",
"password": "emilyspass",
"expiresInMins": 30
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:41 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 84 |
| x-ratelimit-reset | 1769961223 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| Set-Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMjEsImV4cCI6MTc2OTk2MzAyMX0.Z9tq0agsWzHS-ybFY0Qixv7LoR7eTYp1h5xbfFR9VjM; Max-Age=1800; Path=/; Expires=Sun, 01 Feb 2026 16:23:41 GMT; HttpOnly; Secure |
| Set-Cookie | refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMjEsImV4cCI6MTc3MjU1MzIyMX0.txqIajo9cb_VoOLp46x9W6XPJqjWAYkf2I0QSVHWW5g; Max-Age=1800; Path=/; Expires=Sun, 01 Feb 2026 16:23:41 GMT; HttpOnly; Secure |
| etag | W/"3a2-wvuRlILlJ5c6oIMaG1wudnXPpjA" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=PGCD43MzR3EGpMP3xPwSebHwvxAv85EzIYxHtSGCFFpFGD5YZKogS14ctUfVfInvel%2B5wQUoq4aVyKMwa40y%2BPyORrCckD7QHevrvkQ%3D"}]} |
| Content-Encoding | br |
| CF-RAY | 9c729f8398bc2891-AMM |
{"accessToken":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMjEsImV4cCI6MTc2OTk2MzAyMX0.Z9tq0agsWzHS-ybFY0Qixv7LoR7eTYp1h5xbfFR9VjM","refreshToken":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMjEsImV4cCI6MTc3MjU1MzIyMX0.txqIajo9cb_VoOLp46x9W6XPJqjWAYkf2I0QSVHWW5g","id":1,"username":"emilys","email":"emily.johnson@x.dummyjson.com","firstName":"Emily","lastName":"Johnson","gender":"female","image":"https://dummyjson.com/icon/emilys/128"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 2 | 0 | 0 |
| Total | 3 | 0 | 0 |
| Test Name | Assertion Error |
|---|
| Header Name | Header Value |
|---|---|
| Content-Type | application/json |
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc2OTk2NDgxNH0.uuohp2mmjoHfFSzONdqq4-X1oN1EKoS3diOfBuRRnzw |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | c89bf180-b136-4c8f-b9e5-37bc01e45339 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 82 |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMjEsImV4cCI6MTc2OTk2MzAyMX0.Z9tq0agsWzHS-ybFY0Qixv7LoR7eTYp1h5xbfFR9VjM; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMjEsImV4cCI6MTc3MjU1MzIyMX0.txqIajo9cb_VoOLp46x9W6XPJqjWAYkf2I0QSVHWW5g |
{
"username": "anood",
"password": "emilyspass",
"expiresInMins": 30
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:42 GMT |
| Content-Type | application/json; charset=utf-8 |
| Content-Length | 33 |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 97 |
| x-ratelimit-reset | 1769961227 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"21-dBEoW0UmTF+EGUMaprEp9/8zNNA" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=7bXfuwrFJjOnrrAMNOtb4H4nZUDntEAEJN1at6YG%2FTyzT5XlkNEqhLGxiahDif%2BD%2FzcmRSS4rED%2FKu4%2FvKP4iW30W6X6jZUeWYLIlbo%3D"}]} |
| CF-RAY | 9c729f853a702891-AMM |
{"message":"Invalid credentials"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Invalid credentials handled | 1 | 0 | 0 |
| Error message exists | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Retrieves the profile information of the currently authenticated user based on the provided access token.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/auth/me`
## Authentication
- **Required**: Yes
- **Type**: Bearer Token
- **Header**: `Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc2OTk2NDgxNH0.uuohp2mmjoHfFSzONdqq4-X1oN1EKoS3diOfBuRRnzw`
## Parameters
- No parameters required
- Authentication token must be provided in Authorization header
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
{
"id": 1,
"firstName": "Emily",
"lastName": "Johnson",
"email": "emily.johnson@x.dummyjson.com",
"username": "emilys",
"age": 28,
"gender": "female",
"phone": "+81 965-431-3024",
"birthDate": "1996-5-30",
"image": "https://dummyjson.com/icon/emilys/128",
"address": {...},
"company": {...}
}
```
## Tests Included
- Validates response status code is 200
- Verifies authenticated user details are returned
- Checks all user profile fields are present
- Confirms token authentication is working
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc2OTk2NDgxNH0.uuohp2mmjoHfFSzONdqq4-X1oN1EKoS3diOfBuRRnzw |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 0a5c28bb-cf1f-44fa-850d-e0c6bbc8e926 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMjEsImV4cCI6MTc2OTk2MzAyMX0.Z9tq0agsWzHS-ybFY0Qixv7LoR7eTYp1h5xbfFR9VjM; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMjEsImV4cCI6MTc3MjU1MzIyMX0.txqIajo9cb_VoOLp46x9W6XPJqjWAYkf2I0QSVHWW5g |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:42 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 97 |
| x-ratelimit-reset | 1769961230 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"58f-CoL/KoXlW3x1PtqQr3wqPsXj6DE" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=wlXNH%2FBpIFVPpCFP223qpEefLYF20P5s9%2BcmATWt2bqeuJTvbzvtglVLeBDVUGHDJe8%2B22GXAqGjmFzhDAmjKCrNl2%2F6cUHIM9ow3FI%3D"}]} |
| CF-RAY | 9c729f86ebe42891-AMM |
{"id":1,"firstName":"Emily","lastName":"Johnson","maidenName":"Smith","age":29,"gender":"female","email":"emily.johnson@x.dummyjson.com","phone":"+81 965-431-3024","username":"emilys","password":"emilyspass","birthDate":"1996-5-30","image":"https://dummyjson.com/icon/emilys/128","bloodGroup":"O-","height":193.24,"weight":63.16,"eyeColor":"Green","hair":{"color":"Brown","type":"Curly"},"ip":"42.48.100.32","address":{"address":"626 Main Street","city":"Phoenix","state":"Mississippi","stateCode":"MS","postalCode":"29112","coordinates":{"lat":-77.16213,"lng":-92.084824},"country":"United States"},"macAddress":"47:fa:41:18:ec:eb","university":"University of Wisconsin--Madison","bank":{"cardExpire":"05/28","cardNumber":"3693233511855044","cardType":"Diners Club International","currency":"GBP","iban":"GB74MH2UZLR9TRPHYNU8F8"},"company":{"department":"Engineering","name":"Dooley, Kozey and Cronin","title":"Sales Manager","address":{"address":"263 Tenth Street","city":"San Francisco","state":"Wisconsin","stateCode":"WI","postalCode":"37657","coordinates":{"lat":71.814525,"lng":-161.150263},"country":"United States"}},"ein":"977-175","ssn":"900-590-289","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"admin"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 2 | 0 | 0 |
| Total | 3 | 0 | 0 |
| Test Name | Assertion Error |
|---|
| Header Name | Header Value |
|---|---|
| Authorization | Bearer 123456 |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 0ea72280-ddc7-4cdd-89b1-221111c02eb9 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Cookie | accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMjEsImV4cCI6MTc2OTk2MzAyMX0.Z9tq0agsWzHS-ybFY0Qixv7LoR7eTYp1h5xbfFR9VjM; refreshToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMjEsImV4cCI6MTc3MjU1MzIyMX0.txqIajo9cb_VoOLp46x9W6XPJqjWAYkf2I0QSVHWW5g |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:42 GMT |
| Content-Type | application/json; charset=utf-8 |
| Content-Length | 36 |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 96 |
| x-ratelimit-reset | 1769961230 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| Set-Cookie | accessToken=; Path=/; Expires=Thu, 01 Jan 1970 00:00:00 GMT |
| Set-Cookie | refreshToken=; Path=/; Expires=Thu, 01 Jan 1970 00:00:00 GMT |
| etag | W/"24-xqucZbgfFI1MEKHBW2jR/IjHNdY" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=PctH0ucWeGslhnczuklUr7vIYrsAdO6GNLkaJdMUHMJG9CvBi10auQ0FKYR%2F7rW3gAWltUELZnUPReNN2%2FBqTwl150slFC20DD9Ehrs%3D"}]} |
| CF-RAY | 9c729f888d9f2891-AMM |
{"message":"Invalid/Expired Token!"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Invalid token | 1 | 0 | 0 |
| Error message exists | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Retrieves detailed information about a specific user by their unique identifier.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/users/4`
## Authentication
- **Required**: No
- This is a public endpoint that doesn't require authentication
## Parameters
### Path Variables
- `userId` (required) - The unique identifier of the user to retrieve
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
{
"id": 1,
"firstName": "Emily",
"lastName": "Johnson",
"email": "emily.johnson@x.dummyjson.com",
"username": "emilys",
"age": 28,
"gender": "female",
"phone": "+81 965-431-3024",
"birthDate": "1996-5-30",
"image": "https://dummyjson.com/icon/emilys/128",
"address": {
"address": "626 Main Street",
"city": "Phoenix",
"state": "Mississippi",
"country": "United States",
"postalCode": "29112"
},
"company": {
"name": "Dooley and Sons",
"title": "Sales Manager"
}
}
```
## Tests Included
- Validates response status code is 200
- Verifies user ID matches request
- Checks all user profile fields are present
- Confirms address and company objects structure
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc2OTk2NDgxNH0.uuohp2mmjoHfFSzONdqq4-X1oN1EKoS3diOfBuRRnzw |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 296caf1e-2b0a-4d27-b982-72917b197bd8 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:42 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 95 |
| x-ratelimit-reset | 1769961230 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"577-Z3kifpL3J1jktd9eGnQ28K8KFtI" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=AqnTP%2F%2FJthVAIgZqHr6y2oHGuyDuwGcleBQ14%2FumQInViHE5Dca2K6WlF0uBsAl7iM6XmDnURLsVgo5hcfjF9jJOhrHQwCi0%2FzLbFCU%3D"}]} |
| CF-RAY | 9c729f8a3f402891-AMM |
{"id":4,"firstName":"James","lastName":"Davis","maidenName":"","age":46,"gender":"male","email":"james.davis@x.dummyjson.com","phone":"+49 614-958-9364","username":"jamesd","password":"jamesdpass","birthDate":"1979-5-4","image":"https://dummyjson.com/icon/jamesd/128","bloodGroup":"AB+","height":193.31,"weight":62.1,"eyeColor":"Amber","hair":{"color":"Blonde","type":"Straight"},"ip":"101.118.131.66","address":{"address":"238 Jefferson Street","city":"Seattle","state":"Pennsylvania","stateCode":"PA","postalCode":"68354","coordinates":{"lat":16.782513,"lng":-139.34723},"country":"United States"},"macAddress":"10:7d:df:1f:97:58","university":"University of Southern California","bank":{"cardExpire":"07/30","cardNumber":"5303440212268149","cardType":"Mastercard","currency":"CAD","iban":"DE01300746880579852937"},"company":{"department":"Support","name":"Pagac and Sons","title":"Research Analyst","address":{"address":"1622 Lincoln Street","city":"Fort Worth","state":"Pennsylvania","stateCode":"PA","postalCode":"27768","coordinates":{"lat":54.91193,"lng":-79.498328},"country":"United States"}},"ein":"904-810","ssn":"116-951-314","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"admin"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Required fields exist | 1 | 0 | 0 |
| Total | 3 | 0 | 0 |
| Test Name | Assertion Error |
|---|
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc2OTk2NDgxNH0.uuohp2mmjoHfFSzONdqq4-X1oN1EKoS3diOfBuRRnzw |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 6d51731b-be75-4676-b5a7-026178206b94 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:43 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 94 |
| x-ratelimit-reset | 1769961230 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"2b-ZhauGgbHQlYpTPzEWJLt9JF5uhE" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=%2ByJXjjNHjgHFHgDJ9oGv4JjZskOTjWoouc9fOQxrq%2Bo63oUs6rfjsKSXviDiVkHAwNdjnHiqGmTXScpLyNfEEK54Vs%2FqQWDlv973d00%3D"}]} |
| Content-Encoding | br |
| CF-RAY | 9c729f8bc8d72891-AMM |
{"message":"User with id '9999' not found"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Invalid User ID should not succeed | 1 | 0 | 0 |
| Error message exists | 1 | 0 | 0 |
| BUG , Returned users for Invalid ID | 1 | 0 | 0 |
| Total | 3 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Searches for users based on a query string, returning all users that match the search criteria.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/users/search?q=John`
## Authentication
- **Required**: No
- This is a public endpoint that doesn't require authentication
## Parameters
### Query Parameters
- `q` (required) - The search query string to find matching users (searches across name, username, email, etc.)
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
{
"users": [
{
"id": 1,
"firstName": "John",
"lastName": "Doe",
"email": "john.doe@x.dummyjson.com",
"username": "johnd",
"age": 30,
...
}
],
"total": 5,
"skip": 0,
"limit": 30
}
```
## Tests Included
- Validates response status code is 200
- Verifies users array exists
- Checks pagination metadata (total, skip, limit)
- Confirms search results match query criteria
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc2OTk2NDgxNH0.uuohp2mmjoHfFSzONdqq4-X1oN1EKoS3diOfBuRRnzw |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | e8940ff3-ddf6-4d15-9b69-e3c4a09ab8e7 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:43 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 99 |
| x-ratelimit-reset | 1769961233 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"1092-DffrDnJxyiPiDr/F4xPdXlAPNCM" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=nbdyesjv%2Fkd5%2FgFL71pBEDoBv68hennrWmHva0nzl%2FxJkU5uT8rU1BCEbARqhgHylpfAfR0Og8SN8OdUwfVBAX3Jx0peJVFwWj2yi5k%3D"}]} |
| CF-RAY | 9c729f8d8ac92891-AMM |
{"users":[{"id":1,"firstName":"Emily","lastName":"Johnson","maidenName":"Smith","age":29,"gender":"female","email":"emily.johnson@x.dummyjson.com","phone":"+81 965-431-3024","username":"emilys","password":"emilyspass","birthDate":"1996-5-30","image":"https://dummyjson.com/icon/emilys/128","bloodGroup":"O-","height":193.24,"weight":63.16,"eyeColor":"Green","hair":{"color":"Brown","type":"Curly"},"ip":"42.48.100.32","address":{"address":"626 Main Street","city":"Phoenix","state":"Mississippi","stateCode":"MS","postalCode":"29112","coordinates":{"lat":-77.16213,"lng":-92.084824},"country":"United States"},"macAddress":"47:fa:41:18:ec:eb","university":"University of Wisconsin--Madison","bank":{"cardExpire":"05/28","cardNumber":"3693233511855044","cardType":"Diners Club International","currency":"GBP","iban":"GB74MH2UZLR9TRPHYNU8F8"},"company":{"department":"Engineering","name":"Dooley, Kozey and Cronin","title":"Sales Manager","address":{"address":"263 Tenth Street","city":"San Francisco","state":"Wisconsin","stateCode":"WI","postalCode":"37657","coordinates":{"lat":71.814525,"lng":-161.150263},"country":"United States"}},"ein":"977-175","ssn":"900-590-289","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"admin"},{"id":102,"firstName":"John","lastName":"Doe","maidenName":"","age":36,"gender":"male","email":"john.doe@x.dummyjson.com","phone":"+44 242-757-6754","username":"johnd","password":"johndpass","birthDate":"1989-2-20","image":"https://dummyjson.com/icon/johnd/128","bloodGroup":"B-","height":179.44,"weight":93.42,"eyeColor":"Brown","hair":{"color":"Blonde","type":"Wavy"},"ip":"1.250.48.36","address":{"address":"37 Second Street","city":"Fort Worth","state":"New York","stateCode":"NY","postalCode":"33991","coordinates":{"lat":-66.043758,"lng":-59.356632},"country":"United States"},"macAddress":"6d:ab:13:25:a0:10","university":"Brown University","bank":{"cardExpire":"04/30","cardNumber":"3654883476033545","cardType":"Diners Club International","currency":"GBP","iban":"GB50FILIYPYET62B22GD66"},"company":{"department":"Accounting","name":"Aufderhar - Cormier","title":"Business Analyst","address":{"address":"1095 Adams Street","city":"Washington","state":"Missouri","stateCode":"MO","postalCode":"43273","coordinates":{"lat":63.930802,"lng":88.782366},"country":"United States"}},"ein":"861-925","ssn":"824-760-922","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":104,"firstName":"Michael","lastName":"Johnson","maidenName":"","age":25,"gender":"male","email":"michael.johnson@x.dummyjson.com","phone":"+92 290-825-4767","username":"michaelj","password":"michaeljpass","birthDate":"2000-1-6","image":"https://dummyjson.com/icon/michaelj/128","bloodGroup":"A+","height":164.38,"weight":97.18,"eyeColor":"Red","hair":{"color":"White","type":"Curly"},"ip":"115.37.119.66","address":{"address":"1252 Washington Street","city":"Phoenix","state":"Maryland","stateCode":"MD","postalCode":"64002","coordinates":{"lat":-79.040825,"lng":100.576804},"country":"United States"},"macAddress":"29:bc:a7:64:58:48","university":"University of Miami","bank":{"cardExpire":"04/30","cardNumber":"5503135276268039","cardType":"Mastercard","currency":"INR","iban":"DE80210977585310104611"},"company":{"department":"Marketing","name":"Wisozk, Schamberger and Huels","title":"Systems Analyst","address":{"address":"378 Madison Street","city":"Columbus","state":"South Dakota","stateCode":"SD","postalCode":"34297","coordinates":{"lat":-74.566078,"lng":-90.962102},"country":"United States"}},"ein":"819-102","ssn":"924-462-933","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"}],"total":3,"skip":0,"limit":3}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Users array not empty | 1 | 0 | 0 |
| First user has id | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 4 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Filters users based on a specific field key-value pair, allowing precise user data filtering.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/users/filter?key=hair.color&value=Brown`
## Authentication
- **Required**: No
- This is a public endpoint that doesn't require authentication
## Parameters
### Query Parameters
- `key` (required) - The field path to filter by (supports nested fields with dot notation, e.g., `hair.color`, `address.city`)
- `value` (required) - The value to match for the specified key
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
{
"users": [
{
"id": 1,
"firstName": "Emily",
"lastName": "Johnson",
"hair": {
"color": "Brown",
"type": "Curly"
},
...
}
],
"total": 50,
"skip": 0,
"limit": 30
}
```
## Tests Included
- Validates response status code is 200
- Verifies all users match the filter criteria
- Checks filtered field contains expected value
- Confirms pagination metadata is present
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc2OTk2NDgxNH0.uuohp2mmjoHfFSzONdqq4-X1oN1EKoS3diOfBuRRnzw |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 543d67f2-9267-439e-aeb5-17f30160b610 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:43 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 93 |
| x-ratelimit-reset | 1769961230 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"7caa-OItcDQBJ3m1BPDRUpluqCm9ogM0" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=uNGJlRZTo4JQPKjjhss9Llruq52Lr3qAX0P2KnnR1cgQjPdEYriWYP707AdtDlZOEpyJyhmFg%2FEhU5LMz8LvY8YROZBpA3apx%2Fj8oX8%3D"}]} |
| CF-RAY | 9c729f8f0c8f2891-AMM |
{"users":[{"id":1,"firstName":"Emily","lastName":"Johnson","maidenName":"Smith","age":29,"gender":"female","email":"emily.johnson@x.dummyjson.com","phone":"+81 965-431-3024","username":"emilys","password":"emilyspass","birthDate":"1996-5-30","image":"https://dummyjson.com/icon/emilys/128","bloodGroup":"O-","height":193.24,"weight":63.16,"eyeColor":"Green","hair":{"color":"Brown","type":"Curly"},"ip":"42.48.100.32","address":{"address":"626 Main Street","city":"Phoenix","state":"Mississippi","stateCode":"MS","postalCode":"29112","coordinates":{"lat":-77.16213,"lng":-92.084824},"country":"United States"},"macAddress":"47:fa:41:18:ec:eb","university":"University of Wisconsin--Madison","bank":{"cardExpire":"05/28","cardNumber":"3693233511855044","cardType":"Diners Club International","currency":"GBP","iban":"GB74MH2UZLR9TRPHYNU8F8"},"company":{"department":"Engineering","name":"Dooley, Kozey and Cronin","title":"Sales Manager","address":{"address":"263 Tenth Street","city":"San Francisco","state":"Wisconsin","stateCode":"WI","postalCode":"37657","coordinates":{"lat":71.814525,"lng":-161.150263},"country":"United States"}},"ein":"977-175","ssn":"900-590-289","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"admin"},{"id":33,"firstName":"Carter","lastName":"Baker","maidenName":"","age":32,"gender":"male","email":"carter.baker@x.dummyjson.com","phone":"+49 787-512-9117","username":"carterb","password":"carterbpass","birthDate":"1993-4-19","image":"https://dummyjson.com/icon/carterb/128","bloodGroup":"A+","height":190.96,"weight":70.78,"eyeColor":"Green","hair":{"color":"Brown","type":"Straight"},"ip":"167.111.147.45","address":{"address":"625 Third Street","city":"Denver","state":"Oregon","stateCode":"OR","postalCode":"74622","coordinates":{"lat":-63.00584,"lng":76.189171},"country":"United States"},"macAddress":"35:0:ad:91:5f:f3","university":"Washington University in St. Louis","bank":{"cardExpire":"04/30","cardNumber":"5286984910566529","cardType":"Mastercard","currency":"AUD","iban":"DE50017878346071444444"},"company":{"department":"Product Management","name":"Luettgen and Sons","title":"Software Engineer","address":{"address":"127 Cedar Street","city":"Washington","state":"South Carolina","stateCode":"SC","postalCode":"17426","coordinates":{"lat":71.127142,"lng":174.470146},"country":"United States"}},"ein":"193-203","ssn":"927-818-529","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":51,"firstName":"Eli","lastName":"Bennett","maidenName":"","age":30,"gender":"male","email":"eli.bennett@x.dummyjson.com","phone":"+1 465-379-7226","username":"elib","password":"elibpass","birthDate":"1995-9-17","image":"https://dummyjson.com/icon/elib/128","bloodGroup":"B+","height":170.61,"weight":91.22,"eyeColor":"Gray","hair":{"color":"Brown","type":"Kinky"},"ip":"144.73.131.148","address":{"address":"1423 Main Street","city":"Jacksonville","state":"Idaho","stateCode":"ID","postalCode":"34271","coordinates":{"lat":-15.022759,"lng":58.392572},"country":"United States"},"macAddress":"f6:59:76:66:c0:85","university":"Boston University","bank":{"cardExpire":"04/28","cardNumber":"3644848905447957","cardType":"Diners Club International","currency":"GBP","iban":"GB4969YU8ZX5UYTERMTE5X"},"company":{"department":"Accounting","name":"Waters, Ankunding and Green","title":"Chief Operating Officer","address":{"address":"1536 Fourth Street","city":"Indianapolis","state":"Michigan","stateCode":"MI","postalCode":"77147","coordinates":{"lat":-49.858979,"lng":-21.940443},"country":"United States"}},"ein":"222-408","ssn":"216-126-647","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":54,"firstName":"Ava","lastName":"Harrison","maidenName":"","age":29,"gender":"female","email":"ava.harrison@x.dummyjson.com","phone":"+44 926-778-4653","username":"avah","password":"avahpass","birthDate":"1996-4-22","image":"https://dummyjson.com/icon/avah/128","bloodGroup":"O-","height":155.72,"weight":93.47,"eyeColor":"Hazel","hair":{"color":"Brown","type":"Curly"},"ip":"225.40.138.177","address":{"address":"1094 Adams Street","city":"San Antonio","state":"Vermont","stateCode":"VT","postalCode":"14336","coordinates":{"lat":-84.032892,"lng":-46.255902},"country":"United States"},"macAddress":"4e:2b:e4:33:7a:f8","university":"Harvard University","bank":{"cardExpire":"01/27","cardNumber":"3694482369735209","cardType":"Diners Club International","currency":"AUD","iban":"DE64412118002973670494"},"company":{"department":"Engineering","name":"Blanda - Jacobson","title":"Legal Counsel","address":{"address":"1374 Cedar Street","city":"Philadelphia","state":"Delaware","stateCode":"DE","postalCode":"21641","coordinates":{"lat":-56.564069,"lng":-134.42879},"country":"United States"}},"ein":"145-780","ssn":"621-536-422","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":59,"firstName":"Ethan","lastName":"Fletcher","maidenName":"","age":34,"gender":"male","email":"ethan.fletcher@x.dummyjson.com","phone":"+1 251-564-2643","username":"ethanf","password":"ethanfpass","birthDate":"1991-5-1","image":"https://dummyjson.com/icon/ethanf/128","bloodGroup":"AB-","height":183.99,"weight":83.98,"eyeColor":"Violet","hair":{"color":"Brown","type":"Curly"},"ip":"21.94.6.7","address":{"address":"789 Main Street","city":"Dallas","state":"Arkansas","stateCode":"AR","postalCode":"87924","coordinates":{"lat":29.411519,"lng":23.598322},"country":"United States"},"macAddress":"b2:fd:ca:1b:3b:a5","university":"Cornell University","bank":{"cardExpire":"02/27","cardNumber":"4440217612919449","cardType":"Visa","currency":"AUD","iban":"DE42359669771256255400"},"company":{"department":"Training","name":"Halvorson LLC","title":"Data Scientist","address":{"address":"258 Tenth Street","city":"Washington","state":"Texas","stateCode":"TX","postalCode":"10371","coordinates":{"lat":45.367618,"lng":-147.524292},"country":"United States"}},"ein":"610-786","ssn":"577-991-233","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":78,"firstName":"Eleanor","lastName":"Tyler","maidenName":"","age":31,"gender":"female","email":"eleanor.tyler@x.dummyjson.com","phone":"+1 232-621-9938","username":"eleanort","password":"eleanortpass","birthDate":"1994-10-26","image":"https://dummyjson.com/icon/eleanort/128","bloodGroup":"O-","height":195.85,"weight":70.03,"eyeColor":"Green","hair":{"color":"Brown","type":"Wavy"},"ip":"54.87.239.213","address":{"address":"439 Pine Street","city":"San Antonio","state":"New Hampshire","stateCode":"NH","postalCode":"64622","coordinates":{"lat":51.5965,"lng":47.479982},"country":"United States"},"macAddress":"df:94:e1:e7:3a:7","university":"Wake Forest University","bank":{"cardExpire":"03/30","cardNumber":"6282984352125703","cardType":"UnionPay","currency":"EUR","iban":"DE60851175428733331885"},"company":{"department":"Product Management","name":"Hilpert and Sons","title":"Web Developer","address":{"address":"580 Seventh Street","city":"Jacksonville","state":"Indiana","stateCode":"IN","postalCode":"57924","coordinates":{"lat":-3.475554,"lng":-138.094068},"country":"United States"}},"ein":"668-175","ssn":"688-176-797","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":83,"firstName":"Dylan","lastName":"Wells","maidenName":"","age":35,"gender":"male","email":"dylan.wells@x.dummyjson.com","phone":"+49 659-638-1106","username":"dylanw","password":"dylanwpass","birthDate":"1990-11-7","image":"https://dummyjson.com/icon/dylanw/128","bloodGroup":"O+","height":156.56,"weight":83.29,"eyeColor":"Amber","hair":{"color":"Brown","type":"Curly"},"ip":"254.112.7.252","address":{"address":"816 Sixth Street","city":"Philadelphia","state":"West Virginia","stateCode":"WV","postalCode":"54522","coordinates":{"lat":-82.623651,"lng":33.259567},"country":"United States"},"macAddress":"b7:c7:29:ff:e0:49","university":"William & Mary","bank":{"cardExpire":"07/29","cardNumber":"3597467382729154","cardType":"JCB","currency":"AUD","iban":"DE62128867521743907285"},"company":{"department":"Services","name":"Schmidt - Hyatt","title":"Support Specialist","address":{"address":"360 Sixth Street","city":"Seattle","state":"Florida","stateCode":"FL","postalCode":"16124","coordinates":{"lat":61.755934,"lng":-149.215844},"country":"United States"}},"ein":"560-210","ssn":"572-136-332","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":103,"firstName":"Emily","lastName":"Brown","maidenName":"Taylor","age":43,"gender":"female","email":"emily.brown@x.dummyjson.com","phone":"+61 875-999-8871","username":"emilyt","password":"emilytpass","birthDate":"1982-12-5","image":"https://dummyjson.com/icon/emilyt/128","bloodGroup":"AB-","height":181.96,"weight":89.65,"eyeColor":"Blue","hair":{"color":"Brown","type":"Kinky"},"ip":"41.156.197.109","address":{"address":"1962 Fourth Street","city":"Houston","state":"Hawaii","stateCode":"HI","postalCode":"67104","coordinates":{"lat":-64.336051,"lng":135.876737},"country":"United States"},"macAddress":"3b:9b:ee:cf:1f:de","university":"Georgetown University","bank":{"cardExpire":"09/30","cardNumber":"374970244492890","cardType":"American Express","currency":"INR","iban":"DE06646067555223276327"},"company":{"department":"Research and Development","name":"Pfannerstill Inc","title":"Data Analyst","address":{"address":"1998 Main Street","city":"Indianapolis","state":"Arizona","stateCode":"AZ","postalCode":"57190","coordinates":{"lat":-83.995771,"lng":127.669213},"country":"United States"}},"ein":"844-425","ssn":"119-906-830","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":105,"firstName":"Emma","lastName":"Wilson","maidenName":"Clark","age":32,"gender":"female","email":"emma.wilson@x.dummyjson.com","phone":"+49 933-975-3236","username":"emmac","password":"emmacpass","birthDate":"1993-6-2","image":"https://dummyjson.com/icon/emmac/128","bloodGroup":"O+","height":164.59,"weight":97.44,"eyeColor":"Gray","hair":{"color":"Brown","type":"Straight"},"ip":"23.240.162.228","address":{"address":"888 Lincoln Street","city":"New York","state":"Kansas","stateCode":"KS","postalCode":"85313","coordinates":{"lat":64.320835,"lng":-25.984113},"country":"United States"},"macAddress":"64:a6:72:4d:9e:79","university":"Tufts University","bank":{"cardExpire":"03/30","cardNumber":"6011728212195820","cardType":"Discover","currency":"CNY","iban":"DE03754619165111286589"},"company":{"department":"Sales","name":"Nienow - Fritsch","title":"Software Engineer","address":{"address":"1302 Adams Street","city":"San Francisco","state":"Alaska","stateCode":"AK","postalCode":"39028","coordinates":{"lat":-78.519188,"lng":-144.614396},"country":"United States"}},"ein":"108-918","ssn":"690-817-970","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":112,"firstName":"Alexander","lastName":"Hernandez","maidenName":"","age":42,"gender":"male","email":"alexander.hernandez@x.dummyjson.com","phone":"+49 410-245-8608","username":"alexanderh","password":"alexanderhpass","birthDate":"1983-7-4","image":"https://dummyjson.com/icon/alexanderh/128","bloodGroup":"B-","height":172.2,"weight":82.3,"eyeColor":"Blue","hair":{"color":"Brown","type":"Kinky"},"ip":"145.104.53.16","address":{"address":"329 Second Street","city":"Dallas","state":"Idaho","stateCode":"ID","postalCode":"49314","coordinates":{"lat":14.101714,"lng":-148.130379},"country":"United States"},"macAddress":"4c:83:2a:82:f:c6","university":"University of Florida","bank":{"cardExpire":"11/30","cardNumber":"3511024200905426","cardType":"JCB","currency":"JPY","iban":"DE42863681794561041810"},"company":{"department":"Sales","name":"Gibson LLC","title":"Chief Technology Officer","address":{"address":"176 Main Street","city":"Seattle","state":"Pennsylvania","stateCode":"PA","postalCode":"61558","coordinates":{"lat":25.794587,"lng":101.693435},"country":"United States"}},"ein":"355-181","ssn":"583-406-155","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":117,"firstName":"Amelia","lastName":"Perez","maidenName":"Gonzalez","age":44,"gender":"female","email":"amelia.perez@x.dummyjson.com","phone":"+49 751-988-9521","username":"ameliag","password":"ameliagpass","birthDate":"1981-1-29","image":"https://dummyjson.com/icon/ameliag/128","bloodGroup":"B+","height":186.66,"weight":80.38,"eyeColor":"Brown","hair":{"color":"Brown","type":"Wavy"},"ip":"249.222.49.78","address":{"address":"25 Elm Street","city":"New York","state":"New Hampshire","stateCode":"NH","postalCode":"88314","coordinates":{"lat":-55.895738,"lng":-117.829232},"country":"United States"},"macAddress":"1:64:41:63:ca:9e","university":"University of Michigan--Ann Arbor","bank":{"cardExpire":"05/30","cardNumber":"349189566293370","cardType":"American Express","currency":"EUR","iban":"IT88GLSNDVETYALH79DUSDQWYBNMA"},"company":{"department":"Services","name":"Swift - Stamm","title":"Chief Executive Officer","address":{"address":"1390 Pine Street","city":"Philadelphia","state":"Maine","stateCode":"ME","postalCode":"21632","coordinates":{"lat":-19.615702,"lng":42.511462},"country":"United States"}},"ein":"836-867","ssn":"769-496-865","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":121,"firstName":"Ava","lastName":"Harris","maidenName":"","age":30,"gender":"female","email":"ava.harris@x.dummyjson.com","phone":"+44 422-227-6412","username":"avahx","password":"avahxpass","birthDate":"1995-8-26","image":"https://dummyjson.com/icon/avahx/128","bloodGroup":"A-","height":199.36,"weight":63.3,"eyeColor":"Blue","hair":{"color":"Brown","type":"Wavy"},"ip":"23.127.175.229","address":{"address":"518 Elm Street","city":"San Antonio","state":"Florida","stateCode":"FL","postalCode":"35171","coordinates":{"lat":74.817644,"lng":15.72801},"country":"United States"},"macAddress":"4:c3:e9:35:23:2a","university":"University of Florida","bank":{"cardExpire":"02/30","cardNumber":"3622583668551978","cardType":"Diners Club International","currency":"JPY","iban":"DE72545287965967528178"},"company":{"department":"Marketing","name":"Lebsack Inc","title":"Engineer","address":{"address":"1495 First Street","city":"Columbus","state":"Alaska","stateCode":"AK","postalCode":"64989","coordinates":{"lat":18.943383,"lng":-136.717336},"country":"United States"}},"ein":"715-161","ssn":"906-771-261","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":124,"firstName":"Noah","lastName":"Lewis","maidenName":"","age":40,"gender":"male","email":"noah.lewis@x.dummyjson.com","phone":"+61 396-867-4229","username":"noahl","password":"noahlpass","birthDate":"1985-6-9","image":"https://dummyjson.com/icon/noahl/128","bloodGroup":"AB-","height":168.71,"weight":86.15,"eyeColor":"Green","hair":{"color":"Brown","type":"Curly"},"ip":"210.106.253.177","address":{"address":"41 Fifth Street","city":"Denver","state":"Alabama","stateCode":"AL","postalCode":"42655","coordinates":{"lat":62.7964,"lng":-10.481867},"country":"United States"},"macAddress":"e3:f5:6d:86:ed:bd","university":"Yale University","bank":{"cardExpire":"01/30","cardNumber":"3553297247069104","cardType":"JCB","currency":"EUR","iban":"FR89F3HKAI2Q8MPK3JKJ43YQIT7"},"company":{"department":"Research and Development","name":"Satterfield, Shields and Littel","title":"Project Manager","address":{"address":"596 Third Street","city":"Seattle","state":"Minnesota","stateCode":"MN","postalCode":"30859","coordinates":{"lat":-9.449962,"lng":124.358321},"country":"United States"}},"ein":"898-556","ssn":"711-488-725","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":131,"firstName":"Jackson","lastName":"Morales","maidenName":"","age":34,"gender":"male","email":"jackson.morales@x.dummyjson.com","phone":"+1 685-561-9154","username":"jacksonm","password":"jacksonmpass","birthDate":"1991-9-18","image":"https://dummyjson.com/icon/jacksonm/128","bloodGroup":"AB-","height":154.3,"weight":60.62,"eyeColor":"Violet","hair":{"color":"Brown","type":"Curly"},"ip":"10.39.106.47","address":{"address":"1549 Main Street","city":"Austin","state":"Arkansas","stateCode":"AR","postalCode":"23595","coordinates":{"lat":89.624584,"lng":-107.671084},"country":"United States"},"macAddress":"e7:a2:59:b:23:32","university":"Pepperdine University","bank":{"cardExpire":"08/27","cardNumber":"4668916290124603","cardType":"Visa","currency":"AUD","iban":"DE89790012694823772619"},"company":{"department":"Human Resources","name":"Kshlerin, Mitchell and Wilderman","title":"Legal Counsel","address":{"address":"694 Second Street","city":"San Diego","state":"New Hampshire","stateCode":"NH","postalCode":"64598","coordinates":{"lat":-67.250988,"lng":158.241684},"country":"United States"}},"ein":"106-784","ssn":"439-618-286","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":135,"firstName":"Elijah","lastName":"Cruz","maidenName":"","age":30,"gender":"male","email":"elijah.cruz@x.dummyjson.com","phone":"+1 613-532-2557","username":"elijahc","password":"elijahcpass","birthDate":"1995-1-23","image":"https://dummyjson.com/icon/elijahc/128","bloodGroup":"O+","height":195.29,"weight":78.61,"eyeColor":"Gray","hair":{"color":"Brown","type":"Wavy"},"ip":"178.45.211.139","address":{"address":"583 Second Street","city":"Seattle","state":"North Dakota","stateCode":"ND","postalCode":"26483","coordinates":{"lat":19.529428,"lng":165.798169},"country":"United States"},"macAddress":"11:be:4d:5a:92:7d","university":"University of California--Berkeley","bank":{"cardExpire":"05/27","cardNumber":"5195573329944110","cardType":"Mastercard","currency":"CAD","iban":"DE67341880174568825698"},"company":{"department":"Accounting","name":"Stokes - Harber","title":"Marketing Manager","address":{"address":"1462 Jefferson Street","city":"Seattle","state":"New Jersey","stateCode":"NJ","postalCode":"81308","coordinates":{"lat":69.208929,"lng":-159.871286},"country":"United States"}},"ein":"115-488","ssn":"577-965-784","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":136,"firstName":"Madison","lastName":"Stewart","maidenName":"Kelly","age":37,"gender":"female","email":"madison.stewart@x.dummyjson.com","phone":"+61 455-829-5048","username":"madisonk","password":"madisonkpass","birthDate":"1988-5-15","image":"https://dummyjson.com/icon/madisonk/128","bloodGroup":"B-","height":199.81,"weight":76.36,"eyeColor":"Blue","hair":{"color":"Brown","type":"Kinky"},"ip":"110.144.81.89","address":{"address":"823 Sixth Street","city":"Indianapolis","state":"Arkansas","stateCode":"AR","postalCode":"66305","coordinates":{"lat":-26.509663,"lng":-127.744698},"country":"United States"},"macAddress":"4e:15:99:a0:22:33","university":"Northwestern University","bank":{"cardExpire":"06/27","cardNumber":"5362208194454054","cardType":"Mastercard","currency":"PKR","iban":"DE03605844090278785940"},"company":{"department":"Training","name":"Schowalter Group","title":"Data Scientist","address":{"address":"344 Main Street","city":"Washington","state":"Colorado","stateCode":"CO","postalCode":"64474","coordinates":{"lat":-33.940327,"lng":-144.800578},"country":"United States"}},"ein":"246-581","ssn":"223-424-188","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":147,"firstName":"Henry","lastName":"Turner","maidenName":"","age":45,"gender":"male","email":"henry.turner@x.dummyjson.com","phone":"+1 374-470-5082","username":"henryt","password":"henrytpass","birthDate":"1980-6-12","image":"https://dummyjson.com/icon/henryt/128","bloodGroup":"AB-","height":151.17,"weight":62.94,"eyeColor":"Amber","hair":{"color":"Brown","type":"Straight"},"ip":"96.193.117.130","address":{"address":"201 Sixth Street","city":"Philadelphia","state":"Ohio","stateCode":"OH","postalCode":"41914","coordinates":{"lat":-26.432988,"lng":79.850071},"country":"United States"},"macAddress":"69:dd:33:c0:84:9e","university":"University of Florida","bank":{"cardExpire":"10/30","cardNumber":"371905945311588","cardType":"American Express","currency":"GBP","iban":"GB8253KW72S9PYJOKIXEU7"},"company":{"department":"Legal","name":"Dickens - Beahan","title":"Technical Support Engineer","address":{"address":"1392 Fifth Street","city":"Chicago","state":"Wyoming","stateCode":"WY","postalCode":"76234","coordinates":{"lat":9.204767,"lng":-80.70479},"country":"United States"}},"ein":"884-620","ssn":"555-829-690","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":151,"firstName":"Nathan","lastName":"Reed","maidenName":"","age":29,"gender":"male","email":"nathan.reed@x.dummyjson.com","phone":"+1 448-642-4577","username":"nathanr","password":"nathanrpass","birthDate":"1996-12-26","image":"https://dummyjson.com/icon/nathanr/128","bloodGroup":"A+","height":186.76,"weight":52.22,"eyeColor":"Amber","hair":{"color":"Brown","type":"Curly"},"ip":"216.178.112.125","address":{"address":"82 Cedar Street","city":"Los Angeles","state":"Utah","stateCode":"UT","postalCode":"73204","coordinates":{"lat":66.874876,"lng":-47.038037},"country":"United States"},"macAddress":"1b:a1:e1:cd:a2:39","university":"University of Pennsylvania","bank":{"cardExpire":"04/27","cardNumber":"6249029371283109","cardType":"UnionPay","currency":"USD","iban":"DE15115435946113309166"},"company":{"department":"Training","name":"Stark Group","title":"Chief Operating Officer","address":{"address":"1075 Adams Street","city":"Philadelphia","state":"North Carolina","stateCode":"NC","postalCode":"28999","coordinates":{"lat":55.767346,"lng":-60.983019},"country":"United States"}},"ein":"647-669","ssn":"355-857-184","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":156,"firstName":"Mila","lastName":"Hernandez","maidenName":"Mitchell","age":34,"gender":"female","email":"mila.hernandez@x.dummyjson.com","phone":"+49 893-855-2896","username":"milam","password":"milampass","birthDate":"1991-8-18","image":"https://dummyjson.com/icon/milam/128","bloodGroup":"B-","height":174.13,"weight":80.97,"eyeColor":"Hazel","hair":{"color":"Brown","type":"Kinky"},"ip":"109.219.231.82","address":{"address":"1454 Oak Street","city":"Seattle","state":"New Mexico","stateCode":"NM","postalCode":"46438","coordinates":{"lat":89.661297,"lng":163.24939},"country":"United States"},"macAddress":"69:8b:7e:5f:44:93","university":"University of Virginia","bank":{"cardExpire":"12/29","cardNumber":"4584709028598326","cardType":"Visa","currency":"EUR","iban":"NL07YI74AY8L48Z7OE"},"company":{"department":"Marketing","name":"Wisoky - Rowe","title":"Software Architect","address":{"address":"1281 Pine Street","city":"Austin","state":"Rhode Island","stateCode":"RI","postalCode":"66784","coordinates":{"lat":53.726642,"lng":102.912699},"country":"United States"}},"ein":"708-862","ssn":"549-233-319","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":166,"firstName":"Elena","lastName":"Long","maidenName":"Mitchell","age":43,"gender":"female","email":"elena.long@x.dummyjson.com","phone":"+91 697-839-3216","username":"elenam","password":"elenampass","birthDate":"1982-4-4","image":"https://dummyjson.com/icon/elenam/128","bloodGroup":"AB+","height":179.89,"weight":56.93,"eyeColor":"Hazel","hair":{"color":"Brown","type":"Kinky"},"ip":"252.247.244.14","address":{"address":"1883 Lincoln Street","city":"San Jose","state":"New York","stateCode":"NY","postalCode":"29766","coordinates":{"lat":-59.16639,"lng":-110.237583},"country":"United States"},"macAddress":"7f:a7:45:db:ae:69","university":"Tufts University","bank":{"cardExpire":"02/29","cardNumber":"5223503782631983","cardType":"Mastercard","currency":"GBP","iban":"GB291SKJY1I21ZAJIARKW4"},"company":{"department":"Research and Development","name":"Bruen and Sons","title":"Database Administrator","address":{"address":"985 Ninth Street","city":"New York","state":"Colorado","stateCode":"CO","postalCode":"36408","coordinates":{"lat":59.040431,"lng":-134.144154},"country":"United States"}},"ein":"457-165","ssn":"619-479-503","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":188,"firstName":"Aria","lastName":"Flores","maidenName":"Martin","age":26,"gender":"female","email":"aria.flores@x.dummyjson.com","phone":"+61 415-771-8232","username":"ariamx","password":"ariamxpass","birthDate":"1999-11-8","image":"https://dummyjson.com/icon/ariamx/128","bloodGroup":"O-","height":160.06,"weight":92.02,"eyeColor":"Amber","hair":{"color":"Brown","type":"Wavy"},"ip":"86.67.36.191","address":{"address":"492 Pine Street","city":"Indianapolis","state":"Tennessee","stateCode":"TN","postalCode":"71284","coordinates":{"lat":-88.3996,"lng":22.908268},"country":"United States"},"macAddress":"9d:d1:19:e7:45:26","university":"Columbia University","bank":{"cardExpire":"07/30","cardNumber":"3568996021436297","cardType":"JCB","currency":"AUD","iban":"DE53096479676200434539"},"company":{"department":"Sales","name":"Gibson LLC","title":"Sales Manager","address":{"address":"1728 Sixth Street","city":"Fort Worth","state":"Nebraska","stateCode":"NE","postalCode":"74809","coordinates":{"lat":51.558679,"lng":-85.819219},"country":"United States"}},"ein":"784-961","ssn":"132-677-684","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":203,"firstName":"Nova","lastName":"Cooper","maidenName":"Bell","age":32,"gender":"female","email":"nova.cooper@x.dummyjson.com","phone":"+49 292-569-8252","username":"novab","password":"novabpass","birthDate":"1993-6-16","image":"https://dummyjson.com/icon/novab/128","bloodGroup":"B-","height":155.62,"weight":60.62,"eyeColor":"Hazel","hair":{"color":"Brown","type":"Curly"},"ip":"143.240.135.160","address":{"address":"1687 Pine Street","city":"Los Angeles","state":"Nebraska","stateCode":"NE","postalCode":"49131","coordinates":{"lat":64.747296,"lng":148.357671},"country":"United States"},"macAddress":"e:ea:3e:f3:2d:90","university":"Dartmouth College","bank":{"cardExpire":"01/27","cardNumber":"4281297008337127","cardType":"Visa","currency":"CAD","iban":"DE21025127888819711543"},"company":{"department":"Marketing","name":"Schmidt - Hyatt","title":"Legal Counsel","address":{"address":"1970 Maple Street","city":"New York","state":"Georgia","stateCode":"GA","postalCode":"24324","coordinates":{"lat":-84.354097,"lng":-63.193683},"country":"United States"}},"ein":"249-364","ssn":"357-926-188","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:97.0) Gecko/20100101 Firefox/97.0","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":206,"firstName":"Elena","lastName":"Baker","maidenName":"","age":35,"gender":"female","email":"elena.baker@x.dummyjson.com","phone":"+49 978-346-6960","username":"elenab","password":"elenabpass","birthDate":"1990-3-16","image":"https://dummyjson.com/icon/elenab/128","bloodGroup":"O+","height":150.62,"weight":95.55,"eyeColor":"Brown","hair":{"color":"Brown","type":"Straight"},"ip":"85.35.8.29","address":{"address":"117 Maple Street","city":"San Francisco","state":"Tennessee","stateCode":"TN","postalCode":"40535","coordinates":{"lat":30.069731,"lng":-118.879243},"country":"United States"},"macAddress":"83:75:b2:b6:ca:8b","university":"Tufts University","bank":{"cardExpire":"01/30","cardNumber":"5437614839810348","cardType":"Mastercard","currency":"INR","iban":"DE24112202737130790320"},"company":{"department":"Engineering","name":"Heller LLC","title":"Project Manager","address":{"address":"139 Jefferson Street","city":"San Antonio","state":"Idaho","stateCode":"ID","postalCode":"50546","coordinates":{"lat":1.356153,"lng":175.897893},"country":"United States"}},"ein":"509-840","ssn":"640-201-673","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"}],"total":23,"skip":0,"limit":23}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Retrieves a paginated list of users with specific fields selected, demonstrating pagination and field filtering capabilities.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/users?limit=5&skip=10&select=firstName,age`
## Authentication
- **Required**: No
- This is a public endpoint that doesn't require authentication
## Parameters
### Query Parameters
- `limit` (optional) - Number of users to return (default: 30)
- `skip` (optional) - Number of users to skip for pagination (default: 0)
- `select` (optional) - Comma-separated list of fields to include in response
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
{
"users": [
{
"id": 11,
"firstName": "John",
"age": 30
}
],
"total": 208,
"skip": 10,
"limit": 5
}
```
## Tests Included
- Validates response status code is 200
- Verifies correct number of users returned (limit)
- Checks pagination offset (skip)
- Confirms only selected fields are present in response
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc2OTk2NDgxNH0.uuohp2mmjoHfFSzONdqq4-X1oN1EKoS3diOfBuRRnzw |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 13b603d8-7ece-417c-8683-b1cc947ba548 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:43 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 98 |
| x-ratelimit-reset | 1769961233 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"f0-c9aLGWPNjhOdE9zS5MuqtOmC4iE" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=jkDqTwMUZc8Egy9oJAJj7UFs1ZMfWQ2lZiCGVGXQ3kZ1c4wd%2BkIz%2B6GfqNeKJKsj3WnEf7pkYQgJku1ADbRd%2BreRXhdGRna3QL4bHDc%3D"}]} |
| Content-Encoding | br |
| CF-RAY | 9c729f90ee9d2891-AMM |
{"users":[{"id":11,"firstName":"Liam","age":30},{"id":12,"firstName":"Mia","age":25},{"id":13,"firstName":"Noah","age":41},{"id":14,"firstName":"Charlotte","age":37},{"id":15,"firstName":"William","age":33}],"total":208,"skip":10,"limit":5}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Retrieves all users sorted by a specific field in ascending or descending order.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/users?sortBy=firstName&order=asc`
## Authentication
- **Required**: No
- This is a public endpoint that doesn't require authentication
## Parameters
### Query Parameters
- `sortBy` (optional) - Field name to sort by (e.g., firstName, lastName, age, email)
- `order` (optional) - Sort order: `asc` (ascending) or `desc` (descending)
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
{
"users": [
{
"id": 1,
"firstName": "Aaron",
"lastName": "Smith",
"age": 25,
...
}
],
"total": 208,
"skip": 0,
"limit": 30
}
```
## Tests Included
- Validates response status code is 200
- Verifies users array is sorted correctly
- Checks sort order matches requested order (asc/desc)
- Confirms all user fields are present
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc2OTk2NDgxNH0.uuohp2mmjoHfFSzONdqq4-X1oN1EKoS3diOfBuRRnzw |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 5ec07da4-8103-4ee2-946a-dddaa049b733 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:44 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 96 |
| x-ratelimit-reset | 1769961229 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"a337-zsejjB8Q1xUzsEelxEwDQWBnWxk" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=zc97ILxXWsgK7tMoOunl029zM%2B9R0VQVHbzbOQuU4gREaei5l%2BsrWvLlRFswUcB5M4ef6nDBTaBckXhTUCcnAMH3NIKJoYQea7SpoE0%3D"}]} |
| CF-RAY | 9c729f9298bb2891-AMM |
{"users":[{"id":84,"firstName":"Aaliyah","lastName":"Hanson","maidenName":"","age":29,"gender":"female","email":"aaliyah.hanson@x.dummyjson.com","phone":"+1 275-501-1119","username":"aaliyahh","password":"aaliyahhpass","birthDate":"1996-3-20","image":"https://dummyjson.com/icon/aaliyahh/128","bloodGroup":"B+","height":164.5,"weight":92.03,"eyeColor":"Blue","hair":{"color":"Gray","type":"Wavy"},"ip":"51.180.201.49","address":{"address":"790 Eighth Street","city":"Philadelphia","state":"North Dakota","stateCode":"ND","postalCode":"51438","coordinates":{"lat":15.832722,"lng":-148.237795},"country":"United States"},"macAddress":"89:50:ac:7e:d0:b6","university":"Cornell University","bank":{"cardExpire":"02/28","cardNumber":"6011926454334632","cardType":"Discover","currency":"CAD","iban":"DE02970928927762628941"},"company":{"department":"Accounting","name":"Marvin Inc","title":"Quality Assurance Engineer","address":{"address":"747 Ninth Street","city":"San Francisco","state":"North Carolina","stateCode":"NC","postalCode":"68238","coordinates":{"lat":-53.992111,"lng":-32.617357},"country":"United States"}},"ein":"709-477","ssn":"453-478-272","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":176,"firstName":"Aaliyah","lastName":"Martinez","maidenName":"Adams","age":29,"gender":"female","email":"aaliyah.martinez@x.dummyjson.com","phone":"+91 862-924-5336","username":"aaliyaha","password":"aaliyahapass","birthDate":"1996-2-2","image":"https://dummyjson.com/icon/aaliyaha/128","bloodGroup":"B+","height":177.05,"weight":68.62,"eyeColor":"Green","hair":{"color":"Blonde","type":"Curly"},"ip":"164.70.78.194","address":{"address":"935 Fifth Street","city":"New York","state":"West Virginia","stateCode":"WV","postalCode":"60165","coordinates":{"lat":2.456241,"lng":-122.373016},"country":"United States"},"macAddress":"c:a3:46:aa:98:7c","university":"Georgetown University","bank":{"cardExpire":"04/29","cardNumber":"5587285781475675","cardType":"Mastercard","currency":"CNY","iban":"DE44094986173554781705"},"company":{"department":"Support","name":"Ankunding, Little and Flatley","title":"Web Developer","address":{"address":"624 Adams Street","city":"Jacksonville","state":"Nebraska","stateCode":"NE","postalCode":"72753","coordinates":{"lat":56.509799,"lng":-4.674365},"country":"United States"}},"ein":"286-236","ssn":"195-119-185","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":157,"firstName":"Aaron","lastName":"Cook","maidenName":"","age":28,"gender":"male","email":"aaron.cook@x.dummyjson.com","phone":"+81 362-539-6973","username":"aaronc","password":"aaroncpass","birthDate":"1997-1-26","image":"https://dummyjson.com/icon/aaronc/128","bloodGroup":"AB+","height":165.6,"weight":61.17,"eyeColor":"Green","hair":{"color":"Blue","type":"Curly"},"ip":"71.248.65.203","address":{"address":"169 First Street","city":"Phoenix","state":"Wyoming","stateCode":"WY","postalCode":"52331","coordinates":{"lat":-6.538887,"lng":-58.475605},"country":"United States"},"macAddress":"9e:3f:8b:b:83:af","university":"University of Pennsylvania","bank":{"cardExpire":"03/29","cardNumber":"6011771715186854","cardType":"Discover","currency":"AUD","iban":"DE28971190963043337518"},"company":{"department":"Support","name":"Leffler, Rolfson and Becker","title":"Support Specialist","address":{"address":"380 Maple Street","city":"San Antonio","state":"Michigan","stateCode":"MI","postalCode":"44238","coordinates":{"lat":-31.851481,"lng":-63.253251},"country":"United States"}},"ein":"862-277","ssn":"270-351-584","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":19,"firstName":"Abigail","lastName":"Rivera","maidenName":"","age":29,"gender":"female","email":"abigail.rivera@x.dummyjson.com","phone":"+91 228-363-7806","username":"abigailr","password":"abigailrpass","birthDate":"1996-10-11","image":"https://dummyjson.com/icon/abigailr/128","bloodGroup":"B+","height":186.39,"weight":74.61,"eyeColor":"Violet","hair":{"color":"Blue","type":"Kinky"},"ip":"19.183.240.94","address":{"address":"996 Oak Street","city":"Chicago","state":"New Mexico","stateCode":"NM","postalCode":"11407","coordinates":{"lat":44.321308,"lng":-3.723903},"country":"United States"},"macAddress":"1d:a6:58:2a:e5:e4","university":"California Institute of Technology (Caltech)","bank":{"cardExpire":"01/27","cardNumber":"6011399019022417","cardType":"Discover","currency":"EUR","iban":"IT11QP2B5J81QM1FBX029VI5DD68O"},"company":{"department":"Human Resources","name":"Prohaska - Thiel","title":"Business Analyst","address":{"address":"1402 Adams Street","city":"Austin","state":"Wisconsin","stateCode":"WI","postalCode":"51456","coordinates":{"lat":25.672938,"lng":-76.54967},"country":"United States"}},"ein":"173-637","ssn":"655-823-929","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Edge/97.0.1072.76 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":30,"firstName":"Addison","lastName":"Wright","maidenName":"","age":33,"gender":"female","email":"addison.wright@x.dummyjson.com","phone":"+1 514-384-3300","username":"addisonw","password":"addisonwpass","birthDate":"1992-1-3","image":"https://dummyjson.com/icon/addisonw/128","bloodGroup":"B+","height":179.32,"weight":76.93,"eyeColor":"Brown","hair":{"color":"Blonde","type":"Straight"},"ip":"11.35.69.81","address":{"address":"568 Tenth Street","city":"San Francisco","state":"Montana","stateCode":"MT","postalCode":"54698","coordinates":{"lat":20.946052,"lng":100.228822},"country":"United States"},"macAddress":"fb:0:94:21:16:c","university":"Syracuse University","bank":{"cardExpire":"06/28","cardNumber":"5274971895809762","cardType":"Mastercard","currency":"PKR","iban":"DE91480955939051635497"},"company":{"department":"Services","name":"Kreiger Inc","title":"Human Resources Manager","address":{"address":"1173 Eighth Street","city":"San Diego","state":"Michigan","stateCode":"MI","postalCode":"85777","coordinates":{"lat":65.324413,"lng":87.142893},"country":"United States"}},"ein":"415-286","ssn":"804-492-390","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":164,"firstName":"Addison","lastName":"Ward","maidenName":"Foster","age":30,"gender":"female","email":"addison.ward@x.dummyjson.com","phone":"+1 248-875-1802","username":"addisonf","password":"addisonfpass","birthDate":"1995-8-23","image":"https://dummyjson.com/icon/addisonf/128","bloodGroup":"B-","height":160.22,"weight":75.72,"eyeColor":"Amber","hair":{"color":"Green","type":"Wavy"},"ip":"74.79.100.79","address":{"address":"1320 Fifth Street","city":"San Francisco","state":"South Carolina","stateCode":"SC","postalCode":"20149","coordinates":{"lat":-39.289112,"lng":46.108923},"country":"United States"},"macAddress":"e2:a5:4:ce:d7:60","university":"University of Illinois--Urbana-Champaign","bank":{"cardExpire":"12/30","cardNumber":"6011006235805000","cardType":"Discover","currency":"AUD","iban":"DE46038536418760965942"},"company":{"department":"Human Resources","name":"Kshlerin, Mitchell and Wilderman","title":"Product Manager","address":{"address":"1388 Tenth Street","city":"Charlotte","state":"New York","stateCode":"NY","postalCode":"63709","coordinates":{"lat":-5.900293,"lng":-10.987888},"country":"United States"}},"ein":"104-679","ssn":"801-271-313","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":200,"firstName":"Adrian","lastName":"Flores","maidenName":"","age":44,"gender":"male","email":"adrian.flores@x.dummyjson.com","phone":"+61 524-858-7351","username":"adrianf","password":"adrianfpass","birthDate":"1981-5-1","image":"https://dummyjson.com/icon/adrianf/128","bloodGroup":"O+","height":183.05,"weight":97.74,"eyeColor":"Green","hair":{"color":"Purple","type":"Wavy"},"ip":"86.244.141.158","address":{"address":"1395 Madison Street","city":"New York","state":"Delaware","stateCode":"DE","postalCode":"60163","coordinates":{"lat":48.779884,"lng":-84.200415},"country":"United States"},"macAddress":"e1:22:78:3f:9b:8c","university":"Stanford University","bank":{"cardExpire":"08/27","cardNumber":"347972688413683","cardType":"American Express","currency":"JPY","iban":"DE47803706973935779318"},"company":{"department":"Legal","name":"Rippin Inc","title":"Technical Support Engineer","address":{"address":"279 Madison Street","city":"San Antonio","state":"Louisiana","stateCode":"LA","postalCode":"25808","coordinates":{"lat":32.513584,"lng":-145.587193},"country":"United States"}},"ein":"965-469","ssn":"272-696-785","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":7,"firstName":"Alexander","lastName":"Jones","maidenName":"","age":39,"gender":"male","email":"alexander.jones@x.dummyjson.com","phone":"+61 260-824-4986","username":"alexanderj","password":"alexanderjpass","birthDate":"1986-10-20","image":"https://dummyjson.com/icon/alexanderj/128","bloodGroup":"AB-","height":153.89,"weight":77.42,"eyeColor":"Blue","hair":{"color":"White","type":"Straight"},"ip":"166.204.84.32","address":{"address":"664 Maple Street","city":"Indianapolis","state":"Delaware","stateCode":"DE","postalCode":"86684","coordinates":{"lat":35.289664,"lng":7.063255},"country":"United States"},"macAddress":"d2:64:58:2d:1c:46","university":"University of Illinois--Urbana-Champaign","bank":{"cardExpire":"12/29","cardNumber":"5189302549548693","cardType":"Mastercard","currency":"PKR","iban":"DE67517655968963441488"},"company":{"department":"Engineering","name":"Dickens - Beahan","title":"Web Developer","address":{"address":"996 Eighth Street","city":"Washington","state":"Kansas","stateCode":"KS","postalCode":"27858","coordinates":{"lat":-75.462366,"lng":-128.025697},"country":"United States"}},"ein":"638-127","ssn":"722-993-925","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"moderator"},{"id":112,"firstName":"Alexander","lastName":"Hernandez","maidenName":"","age":42,"gender":"male","email":"alexander.hernandez@x.dummyjson.com","phone":"+49 410-245-8608","username":"alexanderh","password":"alexanderhpass","birthDate":"1983-7-4","image":"https://dummyjson.com/icon/alexanderh/128","bloodGroup":"B-","height":172.2,"weight":82.3,"eyeColor":"Blue","hair":{"color":"Brown","type":"Kinky"},"ip":"145.104.53.16","address":{"address":"329 Second Street","city":"Dallas","state":"Idaho","stateCode":"ID","postalCode":"49314","coordinates":{"lat":14.101714,"lng":-148.130379},"country":"United States"},"macAddress":"4c:83:2a:82:f:c6","university":"University of Florida","bank":{"cardExpire":"11/30","cardNumber":"3511024200905426","cardType":"JCB","currency":"JPY","iban":"DE42863681794561041810"},"company":{"department":"Sales","name":"Gibson LLC","title":"Chief Technology Officer","address":{"address":"176 Main Street","city":"Seattle","state":"Pennsylvania","stateCode":"PA","postalCode":"61558","coordinates":{"lat":25.794587,"lng":101.693435},"country":"United States"}},"ein":"355-181","ssn":"583-406-155","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":101,"firstName":"Alice","lastName":"Smith","maidenName":"Johnson","age":29,"gender":"female","email":"alice.smith@x.dummyjson.com","phone":"+61 611-556-8989","username":"alicej","password":"alicejpass","birthDate":"1996-9-8","image":"https://dummyjson.com/icon/alicej/128","bloodGroup":"AB-","height":171.67,"weight":56.25,"eyeColor":"Red","hair":{"color":"Black","type":"Straight"},"ip":"223.157.14.11","address":{"address":"1631 Fourth Street","city":"Houston","state":"Arkansas","stateCode":"AR","postalCode":"81896","coordinates":{"lat":-16.873954,"lng":118.766256},"country":"United States"},"macAddress":"f3:c3:7b:69:2e:ab","university":"Wake Forest University","bank":{"cardExpire":"07/27","cardNumber":"5560162465503729","cardType":"Mastercard","currency":"CNY","iban":"DE11729875884000312491"},"company":{"department":"Marketing","name":"Jast - Nader","title":"Product Manager","address":{"address":"144 Eighth Street","city":"Austin","state":"Delaware","stateCode":"DE","postalCode":"55767","coordinates":{"lat":25.070859,"lng":15.203994},"country":"United States"}},"ein":"560-590","ssn":"479-900-352","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":117,"firstName":"Amelia","lastName":"Perez","maidenName":"Gonzalez","age":44,"gender":"female","email":"amelia.perez@x.dummyjson.com","phone":"+49 751-988-9521","username":"ameliag","password":"ameliagpass","birthDate":"1981-1-29","image":"https://dummyjson.com/icon/ameliag/128","bloodGroup":"B+","height":186.66,"weight":80.38,"eyeColor":"Brown","hair":{"color":"Brown","type":"Wavy"},"ip":"249.222.49.78","address":{"address":"25 Elm Street","city":"New York","state":"New Hampshire","stateCode":"NH","postalCode":"88314","coordinates":{"lat":-55.895738,"lng":-117.829232},"country":"United States"},"macAddress":"1:64:41:63:ca:9e","university":"University of Michigan--Ann Arbor","bank":{"cardExpire":"05/30","cardNumber":"349189566293370","cardType":"American Express","currency":"EUR","iban":"IT88GLSNDVETYALH79DUSDQWYBNMA"},"company":{"department":"Services","name":"Swift - Stamm","title":"Chief Executive Officer","address":{"address":"1390 Pine Street","city":"Philadelphia","state":"Maine","stateCode":"ME","postalCode":"21632","coordinates":{"lat":-19.615702,"lng":42.511462},"country":"United States"}},"ein":"836-867","ssn":"769-496-865","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":38,"firstName":"Aria","lastName":"Roberts","maidenName":"","age":27,"gender":"female","email":"aria.roberts@x.dummyjson.com","phone":"+61 411-514-5320","username":"ariar","password":"ariarpass","birthDate":"1998-3-25","image":"https://dummyjson.com/icon/ariar/128","bloodGroup":"A-","height":199.62,"weight":88.96,"eyeColor":"Gray","hair":{"color":"Blue","type":"Curly"},"ip":"208.86.10.37","address":{"address":"560 Fifth Street","city":"Seattle","state":"Rhode Island","stateCode":"RI","postalCode":"70664","coordinates":{"lat":36.157244,"lng":-29.219594},"country":"United States"},"macAddress":"7d:16:14:f8:d5:4","university":"Princeton University","bank":{"cardExpire":"10/28","cardNumber":"372071021242970","cardType":"American Express","currency":"CAD","iban":"DE33897381873184367321"},"company":{"department":"Legal","name":"Sanford and Sons","title":"Database Administrator","address":{"address":"69 Ninth Street","city":"Chicago","state":"Ohio","stateCode":"OH","postalCode":"77252","coordinates":{"lat":-1.902962,"lng":15.129767},"country":"United States"}},"ein":"329-619","ssn":"631-656-511","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":66,"firstName":"Aria","lastName":"Ferguson","maidenName":"","age":28,"gender":"female","email":"aria.ferguson@x.dummyjson.com","phone":"+44 434-406-8551","username":"ariaf","password":"ariafpass","birthDate":"1997-6-1","image":"https://dummyjson.com/icon/ariaf/128","bloodGroup":"B+","height":161.81,"weight":97.12,"eyeColor":"Blue","hair":{"color":"Blue","type":"Wavy"},"ip":"180.24.111.167","address":{"address":"1553 Sixth Street","city":"San Diego","state":"Wyoming","stateCode":"WY","postalCode":"59501","coordinates":{"lat":-66.092723,"lng":169.9952},"country":"United States"},"macAddress":"e2:71:6d:81:6:db","university":"Cornell University","bank":{"cardExpire":"02/28","cardNumber":"5222769696858258","cardType":"Mastercard","currency":"GBP","iban":"GB93YU9GTP9S3UJCULWWWL"},"company":{"department":"Legal","name":"Wisozk, Schamberger and Huels","title":"Project Manager","address":{"address":"807 Eighth Street","city":"Phoenix","state":"New Jersey","stateCode":"NJ","postalCode":"75765","coordinates":{"lat":46.824227,"lng":-51.392185},"country":"United States"}},"ein":"952-671","ssn":"705-592-753","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":142,"firstName":"Aria","lastName":"Parker","maidenName":"Miller","age":28,"gender":"female","email":"aria.parker@x.dummyjson.com","phone":"+91 762-847-6884","username":"ariam","password":"ariampass","birthDate":"1997-7-6","image":"https://dummyjson.com/icon/ariam/128","bloodGroup":"AB-","height":164.79,"weight":92.15,"eyeColor":"Blue","hair":{"color":"Green","type":"Curly"},"ip":"112.164.28.147","address":{"address":"1504 Tenth Street","city":"Phoenix","state":"Alabama","stateCode":"AL","postalCode":"16573","coordinates":{"lat":56.943768,"lng":41.212736},"country":"United States"},"macAddress":"c1:1:6a:d:86:c4","university":"Stanford University","bank":{"cardExpire":"09/27","cardNumber":"6011811630030256","cardType":"Discover","currency":"INR","iban":"DE52636264791885715598"},"company":{"department":"Human Resources","name":"Oberbrunner, Mosciski and Witting","title":"Software Architect","address":{"address":"1103 Maple Street","city":"Los Angeles","state":"Kentucky","stateCode":"KY","postalCode":"37560","coordinates":{"lat":-5.555558,"lng":-6.162671},"country":"United States"}},"ein":"385-819","ssn":"889-374-959","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":188,"firstName":"Aria","lastName":"Flores","maidenName":"Martin","age":26,"gender":"female","email":"aria.flores@x.dummyjson.com","phone":"+61 415-771-8232","username":"ariamx","password":"ariamxpass","birthDate":"1999-11-8","image":"https://dummyjson.com/icon/ariamx/128","bloodGroup":"O-","height":160.06,"weight":92.02,"eyeColor":"Amber","hair":{"color":"Brown","type":"Wavy"},"ip":"86.67.36.191","address":{"address":"492 Pine Street","city":"Indianapolis","state":"Tennessee","stateCode":"TN","postalCode":"71284","coordinates":{"lat":-88.3996,"lng":22.908268},"country":"United States"},"macAddress":"9d:d1:19:e7:45:26","university":"Columbia University","bank":{"cardExpire":"07/30","cardNumber":"3568996021436297","cardType":"JCB","currency":"AUD","iban":"DE53096479676200434539"},"company":{"department":"Sales","name":"Gibson LLC","title":"Sales Manager","address":{"address":"1728 Sixth Street","city":"Fort Worth","state":"Nebraska","stateCode":"NE","postalCode":"74809","coordinates":{"lat":51.558679,"lng":-85.819219},"country":"United States"}},"ein":"784-961","ssn":"132-677-684","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":172,"firstName":"Ariana","lastName":"Ross","maidenName":"Ward","age":37,"gender":"female","email":"ariana.ross@x.dummyjson.com","phone":"+61 393-553-7155","username":"arianaw","password":"arianawpass","birthDate":"1988-9-26","image":"https://dummyjson.com/icon/arianaw/128","bloodGroup":"O-","height":164.81,"weight":50.3,"eyeColor":"Red","hair":{"color":"White","type":"Kinky"},"ip":"47.190.165.179","address":{"address":"911 First Street","city":"Chicago","state":"West Virginia","stateCode":"WV","postalCode":"59220","coordinates":{"lat":-39.772203,"lng":-90.030002},"country":"United States"},"macAddress":"e5:32:fa:4f:da:f3","university":"University of Virginia","bank":{"cardExpire":"08/27","cardNumber":"5267990819173310","cardType":"Mastercard","currency":"JPY","iban":"DE05893634226384406776"},"company":{"department":"Accounting","name":"Stiedemann LLC","title":"Engineer","address":{"address":"429 Madison Street","city":"Denver","state":"New Mexico","stateCode":"NM","postalCode":"86999","coordinates":{"lat":33.005004,"lng":125.026624},"country":"United States"}},"ein":"873-983","ssn":"479-571-715","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":173,"firstName":"Asher","lastName":"Scott","maidenName":"","age":31,"gender":"male","email":"asher.scott@x.dummyjson.com","phone":"+81 469-421-7639","username":"ashers","password":"asherspass","birthDate":"1994-8-18","image":"https://dummyjson.com/icon/ashers/128","bloodGroup":"O+","height":169.56,"weight":54.08,"eyeColor":"Blue","hair":{"color":"Blue","type":"Curly"},"ip":"150.136.12.36","address":{"address":"666 Main Street","city":"Dallas","state":"Vermont","stateCode":"VT","postalCode":"82460","coordinates":{"lat":-80.129031,"lng":-63.515107},"country":"United States"},"macAddress":"7f:1d:2a:a2:c0:29","university":"Columbia University","bank":{"cardExpire":"01/30","cardNumber":"6011589163616085","cardType":"Discover","currency":"EUR","iban":"FR915U90IRZVO9NSF11TNJ90JOZ"},"company":{"department":"Human Resources","name":"Ullrich LLC","title":"Sales Manager","address":{"address":"1640 Oak Street","city":"Washington","state":"Oklahoma","stateCode":"OK","postalCode":"29026","coordinates":{"lat":-29.790789,"lng":-43.572763},"country":"United States"}},"ein":"172-363","ssn":"744-472-971","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.3 Safari/605.1.15","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":88,"firstName":"Aubrey","lastName":"Wagner","maidenName":"","age":31,"gender":"female","email":"aubrey.wagner@x.dummyjson.com","phone":"+81 285-568-5834","username":"aubreyw","password":"aubreywpass","birthDate":"1994-4-1","image":"https://dummyjson.com/icon/aubreyw/128","bloodGroup":"B+","height":168.73,"weight":79.86,"eyeColor":"Red","hair":{"color":"Blonde","type":"Wavy"},"ip":"203.204.53.60","address":{"address":"1147 Adams Street","city":"Phoenix","state":"North Carolina","stateCode":"NC","postalCode":"72711","coordinates":{"lat":-55.796433,"lng":-163.621876},"country":"United States"},"macAddress":"5a:18:55:d7:84:b9","university":"Vanderbilt University","bank":{"cardExpire":"10/29","cardNumber":"3692710040595549","cardType":"Diners Club International","currency":"CAD","iban":"DE48679614573470291447"},"company":{"department":"Sales","name":"Cassin Group","title":"Engineer","address":{"address":"1580 Tenth Street","city":"San Jose","state":"New Jersey","stateCode":"NJ","postalCode":"33398","coordinates":{"lat":35.508597,"lng":12.058887},"country":"United States"}},"ein":"990-866","ssn":"678-854-911","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":158,"firstName":"Aubrey","lastName":"Gutierrez","maidenName":"Baker","age":37,"gender":"female","email":"aubrey.gutierrez@x.dummyjson.com","phone":"+92 881-268-9845","username":"aubreyb","password":"aubreybpass","birthDate":"1988-2-19","image":"https://dummyjson.com/icon/aubreyb/128","bloodGroup":"AB-","height":186.45,"weight":69.83,"eyeColor":"Brown","hair":{"color":"Black","type":"Wavy"},"ip":"19.183.244.21","address":{"address":"1207 Oak Street","city":"Philadelphia","state":"Connecticut","stateCode":"CT","postalCode":"78892","coordinates":{"lat":-3.033666,"lng":-35.006014},"country":"United States"},"macAddress":"41:7:7b:23:29:e9","university":"University of Illinois--Urbana-Champaign","bank":{"cardExpire":"10/29","cardNumber":"6011134098408991","cardType":"Discover","currency":"AUD","iban":"DE95703770320430230584"},"company":{"department":"Human Resources","name":"Kreiger and Sons","title":"Developer","address":{"address":"1549 Second Street","city":"Columbus","state":"Arkansas","stateCode":"AR","postalCode":"62481","coordinates":{"lat":85.690418,"lng":-48.156251},"country":"United States"}},"ein":"821-613","ssn":"642-178-241","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":205,"firstName":"Aubrey","lastName":"Garcia","maidenName":"Gray","age":29,"gender":"female","email":"aubrey.garcia@x.dummyjson.com","phone":"+1 470-576-9130","username":"aubreyg","password":"aubreygpass","birthDate":"1996-11-5","image":"https://dummyjson.com/icon/aubreyg/128","bloodGroup":"AB+","height":192.28,"weight":85.89,"eyeColor":"Brown","hair":{"color":"Red","type":"Curly"},"ip":"0.163.108.147","address":{"address":"1221 Washington Street","city":"Los Angeles","state":"South Carolina","stateCode":"SC","postalCode":"78498","coordinates":{"lat":80.449539,"lng":-142.231527},"country":"United States"},"macAddress":"fb:ae:f9:15:24:90","university":"Pepperdine University","bank":{"cardExpire":"01/29","cardNumber":"4922036660101826","cardType":"Visa","currency":"NZD","iban":"DE91641615994664908034"},"company":{"department":"Legal","name":"Moore Inc","title":"Web Developer","address":{"address":"240 Third Street","city":"San Francisco","state":"Minnesota","stateCode":"MN","postalCode":"58649","coordinates":{"lat":3.609112,"lng":-35.397672},"country":"United States"}},"ein":"428-615","ssn":"344-154-808","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":96,"firstName":"Aurora","lastName":"Lawson","maidenName":"","age":27,"gender":"female","email":"aurora.lawson@x.dummyjson.com","phone":"+92 802-452-4192","username":"auroral","password":"auroralpass","birthDate":"1998-6-16","image":"https://dummyjson.com/icon/auroral/128","bloodGroup":"O+","height":174.28,"weight":88.18,"eyeColor":"Violet","hair":{"color":"Green","type":"Wavy"},"ip":"161.244.58.227","address":{"address":"1140 Adams Street","city":"Dallas","state":"Minnesota","stateCode":"MN","postalCode":"29004","coordinates":{"lat":83.417744,"lng":-7.933044},"country":"United States"},"macAddress":"34:95:bd:59:f4:39","university":"Boston University","bank":{"cardExpire":"07/29","cardNumber":"5480171454066942","cardType":"Mastercard","currency":"GBP","iban":"GB36C9TE2MIXX12X8IJMLG"},"company":{"department":"Product Management","name":"Hudson - Marquardt","title":"Chief Information Officer","address":{"address":"164 Fifth Street","city":"Indianapolis","state":"New York","stateCode":"NY","postalCode":"27958","coordinates":{"lat":89.270633,"lng":-72.618747},"country":"United States"}},"ein":"477-337","ssn":"191-532-292","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:97.0) Gecko/20100101 Firefox/97.0","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":148,"firstName":"Aurora","lastName":"Barnes","maidenName":"Gomez","age":30,"gender":"female","email":"aurora.barnes@x.dummyjson.com","phone":"+91 403-842-9683","username":"aurorag","password":"auroragpass","birthDate":"1995-12-15","image":"https://dummyjson.com/icon/aurorag/128","bloodGroup":"B+","height":185.79,"weight":53.66,"eyeColor":"Green","hair":{"color":"Red","type":"Curly"},"ip":"204.17.198.20","address":{"address":"1184 Adams Street","city":"New York","state":"Idaho","stateCode":"ID","postalCode":"19201","coordinates":{"lat":-20.67407,"lng":107.281052},"country":"United States"},"macAddress":"8c:49:78:e2:70:b2","university":"Georgetown University","bank":{"cardExpire":"04/28","cardNumber":"3623396287064565","cardType":"Diners Club International","currency":"GBP","iban":"GB87US86D82O10U5WQ3949"},"company":{"department":"Sales","name":"Cassin Group","title":"Chief Financial Officer","address":{"address":"478 Ninth Street","city":"Phoenix","state":"Connecticut","stateCode":"CT","postalCode":"39433","coordinates":{"lat":-19.046529,"lng":48.682257},"country":"United States"}},"ein":"470-547","ssn":"310-708-861","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Edge/97.0.1072.76 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":180,"firstName":"Aurora","lastName":"Rodriguez","maidenName":"Nelson","age":32,"gender":"female","email":"aurora.rodriguez@x.dummyjson.com","phone":"+61 393-225-2755","username":"auroran","password":"auroranpass","birthDate":"1993-11-23","image":"https://dummyjson.com/icon/auroran/128","bloodGroup":"AB+","height":164.92,"weight":65.48,"eyeColor":"Brown","hair":{"color":"Black","type":"Kinky"},"ip":"127.15.107.0","address":{"address":"1388 Madison Street","city":"Chicago","state":"Missouri","stateCode":"MO","postalCode":"60765","coordinates":{"lat":11.918088,"lng":-78.222936},"country":"United States"},"macAddress":"a0:81:60:92:50:e9","university":"University of Virginia","bank":{"cardExpire":"01/29","cardNumber":"5491854809080174","cardType":"Mastercard","currency":"NZD","iban":"DE91340258026412696778"},"company":{"department":"Research and Development","name":"Runolfsson, Kohler and Welch","title":"Software Engineer","address":{"address":"1277 Third Street","city":"Chicago","state":"North Dakota","stateCode":"ND","postalCode":"37621","coordinates":{"lat":35.160252,"lng":-141.580146},"country":"United States"}},"ein":"225-878","ssn":"879-917-944","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":81,"firstName":"Austin","lastName":"Hudson","maidenName":"","age":30,"gender":"male","email":"austin.hudson@x.dummyjson.com","phone":"+81 405-412-4250","username":"austinh","password":"austinhpass","birthDate":"1995-5-1","image":"https://dummyjson.com/icon/austinh/128","bloodGroup":"A-","height":189.77,"weight":66.83,"eyeColor":"Blue","hair":{"color":"Blue","type":"Straight"},"ip":"147.130.253.116","address":{"address":"1468 Eighth Street","city":"Los Angeles","state":"Maryland","stateCode":"MD","postalCode":"64305","coordinates":{"lat":-28.392471,"lng":-44.144328},"country":"United States"},"macAddress":"e:c0:3:62:e2:d0","university":"University of Michigan--Ann Arbor","bank":{"cardExpire":"02/30","cardNumber":"6011463292832932","cardType":"Discover","currency":"GBP","iban":"GB912RDPFF9YXGMYS7IO14"},"company":{"department":"Sales","name":"Okuneva Group","title":"Legal Counsel","address":{"address":"1323 Adams Street","city":"Jacksonville","state":"Mississippi","stateCode":"MS","postalCode":"18643","coordinates":{"lat":-47.033335,"lng":-68.205081},"country":"United States"}},"ein":"536-921","ssn":"731-202-997","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":92,"firstName":"Autumn","lastName":"Gomez","maidenName":"","age":27,"gender":"female","email":"autumn.gomez@x.dummyjson.com","phone":"+1 340-455-2897","username":"autumng","password":"autumngpass","birthDate":"1998-2-1","image":"https://dummyjson.com/icon/autumng/128","bloodGroup":"A-","height":182.61,"weight":92.77,"eyeColor":"Amber","hair":{"color":"Purple","type":"Wavy"},"ip":"104.233.56.225","address":{"address":"1585 Washington Street","city":"Dallas","state":"Illinois","stateCode":"IL","postalCode":"53203","coordinates":{"lat":27.443768,"lng":-176.861979},"country":"United States"},"macAddress":"75:e4:8e:ea:ce:9d","university":"University of Chicago","bank":{"cardExpire":"09/29","cardNumber":"3618727858757814","cardType":"Diners Club International","currency":"GBP","iban":"GB512IQ7OY0FUSMWYQ1ZY7"},"company":{"department":"Product Management","name":"Kuhlman LLC","title":"Business Analyst","address":{"address":"1818 Jefferson Street","city":"Philadelphia","state":"New York","stateCode":"NY","postalCode":"69388","coordinates":{"lat":-46.202815,"lng":163.840848},"country":"United States"}},"ein":"411-642","ssn":"165-661-612","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":8,"firstName":"Ava","lastName":"Taylor","maidenName":"","age":28,"gender":"female","email":"ava.taylor@x.dummyjson.com","phone":"+1 458-853-7877","username":"avat","password":"avatpass","birthDate":"1997-8-25","image":"https://dummyjson.com/icon/avat/128","bloodGroup":"AB-","height":168.47,"weight":57.08,"eyeColor":"Hazel","hair":{"color":"Red","type":"Kinky"},"ip":"150.73.197.233","address":{"address":"1197 First Street","city":"Fort Worth","state":"Rhode Island","stateCode":"RI","postalCode":"24771","coordinates":{"lat":-81.194833,"lng":-87.948158},"country":"United States"},"macAddress":"8d:2e:c2:d6:e7:a8","university":"University of Wisconsin--Madison","bank":{"cardExpire":"08/30","cardNumber":"5349974103330333","cardType":"Mastercard","currency":"EUR","iban":"FR94ZM2MMGL1EVYQE1ZLCVCFH83"},"company":{"department":"Marketing","name":"Nikolaus Inc","title":"Chief Executive Officer","address":{"address":"930 Lincoln Street","city":"Austin","state":"Colorado","stateCode":"CO","postalCode":"47592","coordinates":{"lat":87.970083,"lng":-42.769351},"country":"United States"}},"ein":"297-762","ssn":"257-419-109","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"moderator"},{"id":54,"firstName":"Ava","lastName":"Harrison","maidenName":"","age":29,"gender":"female","email":"ava.harrison@x.dummyjson.com","phone":"+44 926-778-4653","username":"avah","password":"avahpass","birthDate":"1996-4-22","image":"https://dummyjson.com/icon/avah/128","bloodGroup":"O-","height":155.72,"weight":93.47,"eyeColor":"Hazel","hair":{"color":"Brown","type":"Curly"},"ip":"225.40.138.177","address":{"address":"1094 Adams Street","city":"San Antonio","state":"Vermont","stateCode":"VT","postalCode":"14336","coordinates":{"lat":-84.032892,"lng":-46.255902},"country":"United States"},"macAddress":"4e:2b:e4:33:7a:f8","university":"Harvard University","bank":{"cardExpire":"01/27","cardNumber":"3694482369735209","cardType":"Diners Club International","currency":"AUD","iban":"DE64412118002973670494"},"company":{"department":"Engineering","name":"Blanda - Jacobson","title":"Legal Counsel","address":{"address":"1374 Cedar Street","city":"Philadelphia","state":"Delaware","stateCode":"DE","postalCode":"21641","coordinates":{"lat":-56.564069,"lng":-134.42879},"country":"United States"}},"ein":"145-780","ssn":"621-536-422","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":121,"firstName":"Ava","lastName":"Harris","maidenName":"","age":30,"gender":"female","email":"ava.harris@x.dummyjson.com","phone":"+44 422-227-6412","username":"avahx","password":"avahxpass","birthDate":"1995-8-26","image":"https://dummyjson.com/icon/avahx/128","bloodGroup":"A-","height":199.36,"weight":63.3,"eyeColor":"Blue","hair":{"color":"Brown","type":"Wavy"},"ip":"23.127.175.229","address":{"address":"518 Elm Street","city":"San Antonio","state":"Florida","stateCode":"FL","postalCode":"35171","coordinates":{"lat":74.817644,"lng":15.72801},"country":"United States"},"macAddress":"4:c3:e9:35:23:2a","university":"University of Florida","bank":{"cardExpire":"02/30","cardNumber":"3622583668551978","cardType":"Diners Club International","currency":"JPY","iban":"DE72545287965967528178"},"company":{"department":"Marketing","name":"Lebsack Inc","title":"Engineer","address":{"address":"1495 First Street","city":"Columbus","state":"Alaska","stateCode":"AK","postalCode":"64989","coordinates":{"lat":18.943383,"lng":-136.717336},"country":"United States"}},"ein":"715-161","ssn":"906-771-261","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":16,"firstName":"Avery","lastName":"Perez","maidenName":"","age":26,"gender":"female","email":"avery.perez@x.dummyjson.com","phone":"+61 731-431-3457","username":"averyp","password":"averyppass","birthDate":"1999-3-10","image":"https://dummyjson.com/icon/averyp/128","bloodGroup":"O-","height":172.68,"weight":93.9,"eyeColor":"Brown","hair":{"color":"Green","type":"Curly"},"ip":"131.217.4.214","address":{"address":"1125 First Street","city":"Columbus","state":"Iowa","stateCode":"IA","postalCode":"30973","coordinates":{"lat":12.789127,"lng":85.792598},"country":"United States"},"macAddress":"b3:ff:f3:c5:37:46","university":"Harvard University","bank":{"cardExpire":"08/29","cardNumber":"378024038311910","cardType":"American Express","currency":"USD","iban":"DE42403186906981858976"},"company":{"department":"Accounting","name":"Herzog Inc","title":"Database Administrator","address":{"address":"183 Maple Street","city":"New York","state":"Rhode Island","stateCode":"RI","postalCode":"45238","coordinates":{"lat":-53.318189,"lng":105.835271},"country":"United States"}},"ein":"348-493","ssn":"679-523-686","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"},{"id":42,"firstName":"Avery","lastName":"Carter","maidenName":"","age":29,"gender":"female","email":"avery.carter@x.dummyjson.com","phone":"+44 254-655-6112","username":"averyc","password":"averycpass","birthDate":"1996-8-21","image":"https://dummyjson.com/icon/averyc/128","bloodGroup":"B-","height":179.92,"weight":59.37,"eyeColor":"Blue","hair":{"color":"Blue","type":"Straight"},"ip":"187.69.252.251","address":{"address":"1999 Seventh Street","city":"San Diego","state":"West Virginia","stateCode":"WV","postalCode":"13916","coordinates":{"lat":-59.303292,"lng":-87.318538},"country":"United States"},"macAddress":"f0:9a:ba:d9:48:d5","university":"Yale University","bank":{"cardExpire":"09/30","cardNumber":"3617114029166871","cardType":"Diners Club International","currency":"AUD","iban":"DE93605312121879910330"},"company":{"department":"Support","name":"Schmidt - Hyatt","title":"Sales Manager","address":{"address":"979 Tenth Street","city":"San Jose","state":"New York","stateCode":"NY","postalCode":"59824","coordinates":{"lat":-5.788002,"lng":88.846665},"country":"United States"}},"ein":"854-428","ssn":"902-510-406","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"user"}],"total":208,"skip":0,"limit":30}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Retrieves all shopping carts associated with a specific user by their user ID.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/users/4/carts`
## Authentication
- **Required**: No
- This is a public endpoint that doesn't require authentication
## Parameters
### Path Variables
- `userId` (required) - The unique identifier of the user whose carts to retrieve
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
{
"carts": [
{
"id": 1,
"products": [
{
"id": 1,
"title": "Product Name",
"price": 549,
"quantity": 2,
"total": 1098
}
],
"total": 1098,
"discountedTotal": 985,
"userId": 1,
"totalProducts": 1,
"totalQuantity": 2
}
],
"total": 3,
"skip": 0,
"limit": 30
}
```
## Tests Included
- Validates response status code is 200
- Verifies all carts belong to specified user
- Checks carts array structure
- Confirms cart totals and product details
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc2OTk2NDgxNH0.uuohp2mmjoHfFSzONdqq4-X1oN1EKoS3diOfBuRRnzw |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | ef57c4f9-4f6e-4a90-b87b-18374c453846 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:44 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 97 |
| x-ratelimit-reset | 1769961233 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"29-eepc+18O6U8zRJowEIQsenFBqoU" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=l7nBS24W35N420w%2FP3Vz%2BR3AtEEQoEcKEJWjMUHMe0YsGCc%2BCFUesK3le25gkKKetNbF8g6KU%2FTk02HrvwilufqPZq3D9se%2BLz53f4o%3D"}]} |
| Content-Encoding | br |
| CF-RAY | 9c729f944a722891-AMM |
{"carts":[],"total":0,"skip":0,"limit":0}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Retrieves all posts created by a specific user by their user ID.
## Method & Endpoint
- **Method**: `GET`
- **Endpoint**: `https://dummyjson.com/users/4/posts`
## Authentication
- **Required**: No
- This is a public endpoint that doesn't require authentication
## Parameters
### Path Variables
- `userId` (required) - The unique identifier of the user whose posts to retrieve
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**:
```json
{
"posts": [
{
"id": 1,
"title": "Post Title",
"body": "Post content...",
"tags": ["tag1", "tag2"],
"reactions": {
"likes": 10,
"dislikes": 2
},
"views": 150,
"userId": 1
}
],
"total": 5,
"skip": 0,
"limit": 30
}
```
## Tests Included
- Validates response status code is 200
- Verifies all posts belong to specified user
- Checks posts array structure
- Confirms post fields (title, body, tags, reactions)
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc2OTk2NDgxNH0.uuohp2mmjoHfFSzONdqq4-X1oN1EKoS3diOfBuRRnzw |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 2cd2d0de-a912-4353-831e-2ed516cd7932 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:44 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 96 |
| x-ratelimit-reset | 1769961233 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"29-xwojxKfZ82dFWetrHAY/LBMOM7Y" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=Ii%2FFjMVVqrEWc%2FJTReHFkWnYo3Xkbx27bZds27PCG8LEhooBgnDcRgXg1P8EwLosRdKkSRLD1BjZ5c9D%2Byz1PAqFo%2B%2FDn57xIlRanPQ%3D"}]} |
| Content-Encoding | br |
| CF-RAY | 9c729f95dc622891-AMM |
{"posts":[],"total":0,"skip":0,"limit":0}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Creates a new user in the system with the provided user details.
## Method & Endpoint
- **Method**: `POST`
- **Endpoint**: `https://dummyjson.com/users/add`
## Authentication
- **Required**: No
- This is a public endpoint for demonstration purposes
## Parameters
### Request Body (JSON)
```json
{
"firstName": "John",
"lastName": "Doe",
"email": "john.doe@example.com",
"username": "johndoe",
"password": "password123",
"age": 30,
"gender": "male",
"phone": "+1-555-123-4567"
}
```
**Required Fields**:
- `firstName` - User's first name
- `lastName` - User's last name
- `email` - User's email address
- `username` - Unique username
- `password` - User's password
**Optional Fields**:
- `age`, `gender`, `phone`, `birthDate`, `address`, `company`
## Expected Response
- **Status Code**: `201 Created`
- **Response Structure**: Returns the created user with an assigned ID
```json
{
"id": 209,
"firstName": "John",
"lastName": "Doe",
"email": "john.doe@example.com",
"username": "johndoe",
...
}
```
## Tests Included
- Validates response status code is 201
- Verifies user ID is assigned
- Checks all submitted fields are returned
- Confirms user creation timestamp
| Header Name | Header Value |
|---|---|
| Content-Type | application/json |
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc2OTk2NDgxNH0.uuohp2mmjoHfFSzONdqq4-X1oN1EKoS3diOfBuRRnzw |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | b1b24a90-77e0-4432-972d-ddc068ea07b3 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 70 |
{
"firstName": "Muhammad",
"lastName": "Ovi",
"age": 250
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:45 GMT |
| Content-Type | application/json; charset=utf-8 |
| Content-Length | 769 |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 96 |
| x-ratelimit-reset | 1769961227 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"301-gKnmafr9l9B8nywhCgSqj6WVp/E" |
| vary | Accept-Encoding |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=RSnzWNpUM8Ms%2Fi2NbM7H2ospNKTER8sURq5Brex%2BqN%2FCdwMEIuBLFEBEBr8mBNYqo%2BeYctcVooprFLWcxaykc64DLmnaztJ4i5qY0ts%3D"}]} |
| CF-RAY | 9c729f976e582891-AMM |
{"id":209,"firstName":"Muhammad","lastName":"Ovi","maidenName":"","age":250,"gender":"","email":"","phone":"","username":"","password":"","birthDate":"","image":"","bloodGroup":"","height":null,"weight":null,"eyeColor":"","hair":{"color":"","type":""},"ip":"","address":{"address":"","city":"","state":"","stateCode":"","postalCode":"","coordinates":{"lat":null,"lng":null},"country":""},"macAddress":"","university":"","bank":{"cardExpire":"","cardNumber":"","cardType":"","currency":"","iban":""},"company":{"department":"","name":"","title":"","address":{"address":"","city":"","state":"","stateCode":"","postalCode":"","coordinates":{"lat":null,"lng":null},"country":""}},"ein":"","ssn":"","userAgent":"","crypto":{"coin":"","wallet":"","network":""},"role":"user"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 201 | 1 | 0 | 0 |
| firstName and lastName are correct | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 3 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Updates an existing user's information by their unique identifier.
## Method & Endpoint
- **Method**: `PUT`
- **Endpoint**: `https://dummyjson.com/users/4`
## Authentication
- **Required**: No
- This is a public endpoint for demonstration purposes
## Parameters
### Path Variables
- `userId` (required) - The unique identifier of the user to update
### Request Body (JSON)
```json
{
"firstName": "Jane",
"lastName": "Smith",
"email": "jane.smith@example.com",
"age": 32,
"phone": "+1-555-987-6543"
}
```
**Note**: Only include fields you want to update. Unspecified fields remain unchanged.
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**: Returns the updated user with all fields
```json
{
"id": 1,
"firstName": "Jane",
"lastName": "Smith",
"email": "jane.smith@example.com",
"age": 32,
"phone": "+1-555-987-6543",
...
}
```
## Tests Included
- Validates response status code is 200
- Verifies updated fields match request
- Checks user ID remains unchanged
- Confirms other fields are preserved
| Header Name | Header Value |
|---|---|
| Content-Type | application/json |
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc2OTk2NDgxNH0.uuohp2mmjoHfFSzONdqq4-X1oN1EKoS3diOfBuRRnzw |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | 80428604-c1dd-468f-be1b-045bf6e5bfa3 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Content-Length | 29 |
{
"lastName": "Owais"
}
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:45 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 95 |
| x-ratelimit-reset | 1769961229 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"577-AaYYXx8pEPShiBPHOWYz6WVHMB4" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=aX1Yf0C3rCltd1rl9Z4PeM0p4L3j2Tw7onNKjgN7NBbmGCo18Z5n%2BU%2F6OShjL8xemMVk%2BvxEEiaA8F4tjzuhgvt6QLV6cNhtJ55tsoI%3D"}]} |
| CF-RAY | 9c729f9908092891-AMM |
{"id":4,"firstName":"James","lastName":"Owais","maidenName":"","age":46,"gender":"male","email":"james.davis@x.dummyjson.com","phone":"+49 614-958-9364","username":"jamesd","password":"jamesdpass","birthDate":"1979-5-4","image":"https://dummyjson.com/icon/jamesd/128","bloodGroup":"AB+","height":193.31,"weight":62.1,"eyeColor":"Amber","hair":{"color":"Blonde","type":"Straight"},"ip":"101.118.131.66","address":{"address":"238 Jefferson Street","city":"Seattle","state":"Pennsylvania","stateCode":"PA","postalCode":"68354","coordinates":{"lat":16.782513,"lng":-139.34723},"country":"United States"},"macAddress":"10:7d:df:1f:97:58","university":"University of Southern California","bank":{"cardExpire":"07/30","cardNumber":"5303440212268149","cardType":"Mastercard","currency":"CAD","iban":"DE01300746880579852937"},"company":{"department":"Support","name":"Pagac and Sons","title":"Research Analyst","address":{"address":"1622 Lincoln Street","city":"Fort Worth","state":"Pennsylvania","stateCode":"PA","postalCode":"27768","coordinates":{"lat":54.91193,"lng":-79.498328},"country":"United States"}},"ein":"904-810","ssn":"116-951-314","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"admin"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|
## Purpose
Deletes a specific user from the system by their unique identifier.
## Method & Endpoint
- **Method**: `DELETE`
- **Endpoint**: `https://dummyjson.com/users/4`
## Authentication
- **Required**: No
- This is a public endpoint for demonstration purposes
## Parameters
### Path Variables
- `userId` (required) - The unique identifier of the user to delete
## Expected Response
- **Status Code**: `200 OK`
- **Response Structure**: Returns the deleted user information with deletion confirmation
```json
{
"id": 1,
"firstName": "Emily",
"lastName": "Johnson",
"email": "emily.johnson@x.dummyjson.com",
"username": "emilys",
"isDeleted": true,
"deletedOn": "2024-01-01T12:00:00.000Z",
...
}
```
## Tests Included
- Validates response status code is 200
- Verifies `isDeleted` flag is true
- Checks deletion timestamp is present
- Confirms deleted user details are returned
| Header Name | Header Value |
|---|---|
| Authorization | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJlbWlseXMiLCJlbWFpbCI6ImVtaWx5LmpvaG5zb25AeC5kdW1teWpzb24uY29tIiwiZmlyc3ROYW1lIjoiRW1pbHkiLCJsYXN0TmFtZSI6IkpvaG5zb24iLCJnZW5kZXIiOiJmZW1hbGUiLCJpbWFnZSI6Imh0dHBzOi8vZHVtbXlqc29uLmNvbS9pY29uL2VtaWx5cy8xMjgiLCJpYXQiOjE3Njk5NjEyMTQsImV4cCI6MTc2OTk2NDgxNH0.uuohp2mmjoHfFSzONdqq4-X1oN1EKoS3diOfBuRRnzw |
| User-Agent | PostmanRuntime/7.39.1 |
| Accept | */* |
| Cache-Control | no-cache |
| Postman-Token | f6af061f-01e6-46aa-a8ed-324a5783a2d7 |
| Host | dummyjson.com |
| Accept-Encoding | gzip, deflate, br |
| Connection | keep-alive |
| Header Name | Header Value |
|---|---|
| Date | Sun, 01 Feb 2026 15:53:45 GMT |
| Content-Type | application/json; charset=utf-8 |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Server | cloudflare |
| x-ratelimit-limit | 100 |
| x-ratelimit-remaining | 94 |
| x-ratelimit-reset | 1769961229 |
| x-dns-prefetch-control | off |
| x-frame-options | SAMEORIGIN |
| strict-transport-security | max-age=15552000; includeSubDomains |
| x-download-options | noopen |
| x-content-type-options | nosniff |
| x-xss-protection | 1; mode=block |
| access-control-allow-origin | * |
| etag | W/"5af-EdPx21JivA09guGxHzjqKoI5m18" |
| vary | Accept-Encoding |
| Content-Encoding | br |
| cf-cache-status | DYNAMIC |
| Nel | {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800} |
| Report-To | {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=bGz7SbwFnGeFayHAZC1wACHTX9FJvaLtbgBIORw6mQQ6zs9p8rGqLNLoIzusUBc%2FojxZGZ616BD%2BaNLmpCqKP%2FZ77KblJMHpjYM9zGM%3D"}]} |
| CF-RAY | 9c729f9aa9e52891-AMM |
{"id":4,"firstName":"James","lastName":"Davis","maidenName":"","age":46,"gender":"male","email":"james.davis@x.dummyjson.com","phone":"+49 614-958-9364","username":"jamesd","password":"jamesdpass","birthDate":"1979-5-4","image":"https://dummyjson.com/icon/jamesd/128","bloodGroup":"AB+","height":193.31,"weight":62.1,"eyeColor":"Amber","hair":{"color":"Blonde","type":"Straight"},"ip":"101.118.131.66","address":{"address":"238 Jefferson Street","city":"Seattle","state":"Pennsylvania","stateCode":"PA","postalCode":"68354","coordinates":{"lat":16.782513,"lng":-139.34723},"country":"United States"},"macAddress":"10:7d:df:1f:97:58","university":"University of Southern California","bank":{"cardExpire":"07/30","cardNumber":"5303440212268149","cardType":"Mastercard","currency":"CAD","iban":"DE01300746880579852937"},"company":{"department":"Support","name":"Pagac and Sons","title":"Research Analyst","address":{"address":"1622 Lincoln Street","city":"Fort Worth","state":"Pennsylvania","stateCode":"PA","postalCode":"27768","coordinates":{"lat":54.91193,"lng":-79.498328},"country":"United States"}},"ein":"904-810","ssn":"116-951-314","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36","crypto":{"coin":"Bitcoin","wallet":"0xb9fc2fe63b2a6c003f1c324c3bfa53259162181a","network":"Ethereum (ERC20)"},"role":"admin","isDeleted":true,"deletedOn":"2026-02-01T15:53:45.460Z"}
| Name | Passed | Failed | Skipped |
|---|---|---|---|
| Status code is 200 | 1 | 0 | 0 |
| Response time is acceptable | 1 | 0 | 0 |
| Total | 2 | 0 | 0 |
| Test Name | Assertion Error |
|---|